亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? iopmlitemcollection.cs

?? 基于.Net環(huán)境下c#實(shí)現(xiàn)的國人自己的Blog平臺(tái),基于.Text的核心技術(shù),但做了漢化以及改寫了一部分的核心代碼,值得研究學(xué)習(xí)
?? CS
字號(hào):


#region Disclaimer/Info

///////////////////////////////////////////////////////////////////////////////////////////////////
// .Text WebLog
// 
// .Text is an open source weblog system started by Scott Watermasysk. 
// Blog: http://ScottWater.com/blog 
// RSS: http://scottwater.com/blog/rss.aspx
// Email: Dottext@ScottWater.com
//
// For updated news and information please visit http://scottwater.com/dottext and subscribe to 
// the Rss feed @ http://scottwater.com/dottext/rss.aspx
//
// On its release (on or about August 1, 2003) this application is licensed under the BSD. However, I reserve the 
// right to change or modify this at any time. The most recent and up to date license can always be fount at:
// http://ScottWater.com/License.txt
// 
// Please direct all code related questions to:
// GotDotNet Workspace: http://www.gotdotnet.com/Community/Workspaces/workspace.aspx?id=e99fccb3-1a8c-42b5-90ee-348f6b77c407
// Yahoo Group http://groups.yahoo.com/group/DotText/
// 
///////////////////////////////////////////////////////////////////////////////////////////////////

#endregion
namespace Dottext.Web.Admin
{

	#region Interface IOpmlItemCollection

	/// <summary>
	/// Defines size, enumerators, and synchronization methods for strongly
	/// typed collections of <see cref="OpmlItem"/> elements.
	/// </summary>
	/// <remarks>
	/// <b>IOpmlItemCollection</b> provides an <see cref="ICollection"/> 
	/// that is strongly typed for <see cref="OpmlItem"/> elements.
	/// </remarks>    
	public interface IOpmlItemCollection
	{
		#region Properties

		#region Count

		/// <summary>
		/// Gets the number of elements contained in the 
		/// <see cref="IOpmlItemCollection"/>.
		/// </summary>
		/// <value>The number of elements contained in the 
		/// <see cref="IOpmlItemCollection"/>.</value>
		/// <remarks>Please refer to <see cref="ICollection.Count"/> for details.</remarks>
		int Count { get; }

		#endregion

		#region IsSynchronized

		/// <summary>
		/// Gets a value indicating whether access to the 
		/// <see cref="IOpmlItemCollection"/> is synchronized (thread-safe).
		/// </summary>
		/// <value><c>true</c> if access to the <see cref="IOpmlItemCollection"/> is 
		/// synchronized (thread-safe); otherwise, <c>false</c>. The default is <c>false</c>.</value>
		/// <remarks>Please refer to <see cref="ICollection.IsSynchronized"/> for details.</remarks>
		bool IsSynchronized { get; }

		#endregion

		#region SyncRoot

		/// <summary>
		/// Gets an object that can be used to synchronize access 
		/// to the <see cref="IOpmlItemCollection"/>.
		/// </summary>
		/// <value>An object that can be used to synchronize access 
		/// to the <see cref="IOpmlItemCollection"/>.</value>
		/// <remarks>Please refer to <see cref="ICollection.SyncRoot"/> for details.</remarks>
		object SyncRoot { get; }

		#endregion

		#endregion

		#region Methods

		#region CopyTo

		/// <summary>
		/// Copies the entire <see cref="IOpmlItemCollection"/> to a one-dimensional <see cref="Array"/>
		/// of <see cref="OpmlItem"/> elements, starting at the specified index of the target array.
		/// </summary>
		/// <param name="array">The one-dimensional <see cref="Array"/> that is the destination of the
		/// <see cref="OpmlItem"/> elements copied from the <see cref="IOpmlItemCollection"/>. 
		/// The <b>Array</b> must have zero-based indexing.</param>
		/// <param name="arrayIndex">The zero-based index in <paramref name="array"/> 
		/// at which copying begins.</param>
		/// <exception cref="ArgumentNullException">
		/// <paramref name="array"/> is a null reference.</exception>    
		/// <exception cref="ArgumentOutOfRangeException">
		/// <paramref name="arrayIndex"/> is less than zero.</exception>    
		/// <exception cref="ArgumentException"><para>
		/// <paramref name="arrayIndex"/> is equal to or greater than the length of <paramref name="array"/>.
		/// </para><para>-or-</para><para>
		/// The number of elements in the source <see cref="IOpmlItemCollection"/> is greater 
		/// than the available space from <paramref name="arrayIndex"/> to the end of the destination 
		/// <paramref name="array"/>.</para></exception>
		/// <remarks>Please refer to <see cref="ICollection.CopyTo"/> for details.</remarks>
		void CopyTo(OpmlItem[] array, int arrayIndex);

		#endregion

		#region GetEnumerator

		/// <summary>
		/// Returns an <see cref="IOpmlItemEnumerator"/> that can
		/// iterate through the <see cref="IOpmlItemCollection"/>.
		/// </summary>
		/// <returns>An <see cref="IOpmlItemEnumerator"/> 
		/// for the entire <see cref="IOpmlItemCollection"/>.</returns>
		/// <remarks>Please refer to <see cref="IEnumerable.GetEnumerator"/> for details.</remarks>
		IOpmlItemEnumerator GetEnumerator();

		#endregion

		#endregion
	}

	#endregion

	#region Interface IOpmlItemList

	/// <summary>
	/// Represents a strongly typed collection of <see cref="OpmlItem"/> 
	/// objects that can be individually accessed by index.
	/// </summary>
	/// <remarks>
	/// <b>IOpmlItemList</b> provides an <see cref="IList"/>
	/// that is strongly typed for <see cref="OpmlItem"/> elements.
	/// </remarks>    
	public interface IOpmlItemList : IOpmlItemCollection
	{
		#region Properties

		#region IsFixedSize

		/// <summary>
		/// Gets a value indicating whether the <see cref="IOpmlItemList"/> has a fixed size.
		/// </summary>
		/// <value><c>true</c> if the <see cref="IOpmlItemList"/> has a fixed size;
		/// otherwise, <c>false</c>. The default is <c>false</c>.</value>
		/// <remarks>Please refer to <see cref="IList.IsFixedSize"/> for details.</remarks>
		bool IsFixedSize { get; }

		#endregion

		#region IsReadOnly

		/// <summary>
		/// Gets a value indicating whether the <see cref="IOpmlItemList"/> is read-only.
		/// </summary>
		/// <value><c>true</c> if the <see cref="IOpmlItemList"/> is read-only;
		/// otherwise, <c>false</c>. The default is <c>false</c>.</value>
		/// <remarks>Please refer to <see cref="IList.IsReadOnly"/> for details.</remarks>
		bool IsReadOnly { get; }

		#endregion

		#region Item

		/// <summary>
		/// Gets or sets the <see cref="OpmlItem"/> element at the specified index.
		/// </summary>
		/// <param name="index">The zero-based index of the 
		/// <see cref="OpmlItem"/> element to get or set.</param>
		/// <value>
		/// The <see cref="OpmlItem"/> element at the specified <paramref name="index"/>.
		/// </value>    
		/// <exception cref="ArgumentOutOfRangeException">
		/// <para><paramref name="index"/> is less than zero.</para>
		/// <para>-or-</para>
		/// <para><paramref name="index"/> is equal to or greater than 
		/// <see cref="IOpmlItemCollection.Count"/>.</para>
		/// </exception>
		/// <exception cref="NotSupportedException">
		/// The property is set and the <see cref="IOpmlItemList"/> is read-only.</exception>
		/// <remarks>Please refer to <see cref="IList.this"/> for details.</remarks>
		OpmlItem this[int index] { get; set; }

		#endregion

		#endregion

		#region Methods

		#region Add

		/// <summary>
		/// Adds a <see cref="OpmlItem"/> to the end 
		/// of the <see cref="IOpmlItemList"/>.
		/// </summary>
		/// <param name="value">The <see cref="OpmlItem"/> object 
		/// to be added to the end of the <see cref="IOpmlItemList"/>.
		/// This argument can be a null reference.
		/// </param>    
		/// <returns>The <see cref="IOpmlItemList"/> index at which
		/// the <paramref name="value"/> has been added.</returns>
		/// <exception cref="NotSupportedException">
		/// <para>The <see cref="IOpmlItemList"/> is read-only.</para>
		/// <para>-or-</para>
		/// <para>The <b>IOpmlItemList</b> has a fixed size.</para></exception>    
		/// <remarks>Please refer to <see cref="IList.Add"/> for details.</remarks>
		int Add(OpmlItem value);

		#endregion

		#region Clear

		/// <summary>
		/// Removes all elements from the <see cref="IOpmlItemList"/>.
		/// </summary>
		/// <exception cref="NotSupportedException">
		/// <para>The <see cref="IOpmlItemList"/> is read-only.</para>
		/// <para>-or-</para>
		/// <para>The <b>IOpmlItemList</b> has a fixed size.</para></exception>    
		/// <remarks>Please refer to <see cref="IList.Clear"/> for details.</remarks>
		void Clear();

		#endregion

		#region Contains

		/// <summary>
		/// Determines whether the <see cref="IOpmlItemList"/>
		/// contains the specified <see cref="OpmlItem"/> element.
		/// </summary>
		/// <param name="value">The <see cref="OpmlItem"/> object
		/// to locate in the <see cref="IOpmlItemList"/>.
		/// This argument can be a null reference.
		/// </param>    
		/// <returns><c>true</c> if <paramref name="value"/> is found in the 
		/// <see cref="IOpmlItemList"/>; otherwise, <c>false</c>.</returns>
		/// <remarks>Please refer to <see cref="IList.Contains"/> for details.</remarks>
		bool Contains(OpmlItem value);

		#endregion

		#region IndexOf

		/// <summary>
		/// Returns the zero-based index of the first occurrence of the specified 
		/// <see cref="OpmlItem"/> in the <see cref="IOpmlItemList"/>.
		/// </summary>
		/// <param name="value">The <see cref="OpmlItem"/> object 
		/// to locate in the <see cref="IOpmlItemList"/>.
		/// This argument can be a null reference.
		/// </param>    
		/// <returns>
		/// The zero-based index of the first occurrence of <paramref name="value"/> 
		/// in the <see cref="IOpmlItemList"/>, if found; otherwise, -1.
		/// </returns>
		/// <remarks>Please refer to <see cref="IList.IndexOf"/> for details.</remarks>
		int IndexOf(OpmlItem value);

		#endregion

		#region Insert

		/// <summary>
		/// Inserts a <see cref="OpmlItem"/> element into the 
		/// <see cref="IOpmlItemList"/> at the specified index.
		/// </summary>
		/// <param name="index">The zero-based index at which 
		/// <paramref name="value"/> should be inserted.</param>
		/// <param name="value">The <see cref="OpmlItem"/> object
		/// to insert into the <see cref="IOpmlItemList"/>.
		/// This argument can be a null reference.
		/// </param>    
		/// <exception cref="ArgumentOutOfRangeException">
		/// <para><paramref name="index"/> is less than zero.</para>
		/// <para>-or-</para>
		/// <para><paramref name="index"/> is greater than 
		/// <see cref="IOpmlItemCollection.Count"/>.</para>
		/// </exception>
		/// <exception cref="NotSupportedException">
		/// <para>The <see cref="IOpmlItemList"/> is read-only.</para>
		/// <para>-or-</para>
		/// <para>The <b>IOpmlItemList</b> has a fixed size.</para></exception>    
		/// <remarks>Please refer to <see cref="IList.Insert"/> for details.</remarks>
		void Insert(int index, OpmlItem value);

		#endregion

		#region Remove

		/// <summary>
		/// Removes the first occurrence of the specified <see cref="OpmlItem"/>
		/// from the <see cref="IOpmlItemList"/>.
		/// </summary>
		/// <param name="value">The <see cref="OpmlItem"/> object
		/// to remove from the <see cref="IOpmlItemList"/>.
		/// This argument can be a null reference.
		/// </param>    
		/// <exception cref="NotSupportedException">
		/// <para>The <see cref="IOpmlItemList"/> is read-only.</para>
		/// <para>-or-</para>
		/// <para>The <b>IOpmlItemList</b> has a fixed size.</para></exception>    
		/// <remarks>Please refer to <see cref="IList.Remove"/> for details.</remarks>
		void Remove(OpmlItem value);

		#endregion

		#region RemoveAt

		/// <summary>
		/// Removes the element at the specified index of the 
		/// <see cref="IOpmlItemList"/>.
		/// </summary>
		/// <param name="index">The zero-based index of the element to remove.</param>
		/// <exception cref="ArgumentOutOfRangeException">
		/// <para><paramref name="index"/> is less than zero.</para>
		/// <para>-or-</para>
		/// <para><paramref name="index"/> is equal to or greater than 
		/// <see cref="IOpmlItemCollection.Count"/>.</para>
		/// </exception>
		/// <exception cref="NotSupportedException">
		/// <para>The <see cref="IOpmlItemList"/> is read-only.</para>
		/// <para>-or-</para>
		/// <para>The <b>IOpmlItemList</b> has a fixed size.</para></exception>    
		/// <remarks>Please refer to <see cref="IList.RemoveAt"/> for details.</remarks>
		void RemoveAt(int index);

		#endregion

		#endregion
	}

	#endregion

	#region Interface IOpmlItemEnumerator

	/// <summary>
	/// Supports type-safe iteration over a collection that 
	/// contains <see cref="OpmlItem"/> elements.
	/// </summary>
	/// <remarks>
	/// <b>IOpmlItemEnumerator</b> provides an <see cref="IEnumerator"/> 
	/// that is strongly typed for <see cref="OpmlItem"/> elements.
	/// </remarks>    
	public interface IOpmlItemEnumerator
	{
		#region Properties

		#region Current

		/// <summary>
		/// Gets the current <see cref="OpmlItem"/> element in the collection.
		/// </summary>
		/// <value>The current <see cref="OpmlItem"/> element in the collection.</value>
		/// <exception cref="InvalidOperationException">The enumerator is positioned 
		/// before the first element of the collection or after the last element.</exception>    
		/// <remarks>Please refer to <see cref="IEnumerator.Current"/> for details.</remarks>    
		OpmlItem Current { get; }

		#endregion

		#endregion

		#region Methods

		#region MoveNext

		/// <summary>
		/// Advances the enumerator to the next element of the collection.
		/// </summary>
		/// <returns><c>true</c> if the enumerator was successfully advanced to the next element; 
		/// <c>false</c> if the enumerator has passed the end of the collection.</returns>
		/// <exception cref="InvalidOperationException">
		/// The collection was modified after the enumerator was created.</exception>
		/// <remarks>Please refer to <see cref="IEnumerator.MoveNext"/> for details.</remarks>    
		bool MoveNext();

		#endregion

		#region Reset

		/// <summary>
		/// Sets the enumerator to its initial position, 
		/// which is before the first element in the collection.
		/// </summary>
		/// <exception cref="InvalidOperationException">
		/// The collection was modified after the enumerator was created.</exception>
		/// <remarks>Please refer to <see cref="IEnumerator.Reset"/> for details.</remarks>    
		void Reset();

		#endregion

		#endregion
	}

	#endregion
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色av综合在线| 欧美老肥妇做.爰bbww视频| 一区二区三区电影在线播| 69久久99精品久久久久婷婷 | 91精品国产91久久久久久一区二区 | 精品剧情v国产在线观看在线| 91蜜桃免费观看视频| 久久国产精品无码网站| 亚洲综合激情另类小说区| 国产亚洲欧美激情| 91精品国产福利在线观看| 日本高清不卡aⅴ免费网站| 岛国精品一区二区| 精品在线一区二区| 日韩精品国产欧美| 亚洲一区精品在线| 亚洲乱码国产乱码精品精可以看| www一区二区| 欧美成人猛片aaaaaaa| 欧美日韩一区小说| 91一区二区三区在线观看| 顶级嫩模精品视频在线看| 久久精品久久精品| 日本欧美加勒比视频| 午夜视频在线观看一区| 亚洲精品videosex极品| 国产精品久久777777| 国产区在线观看成人精品| 欧美成人一级视频| 日韩一区二区三区观看| 91精品国产福利| 欧美一区二区日韩一区二区| 亚洲欧洲制服丝袜| 久久久久久久久久久久久久久99| 制服丝袜成人动漫| 8x8x8国产精品| 91精品国产91热久久久做人人 | 国产日韩欧美制服另类| 久久综合网色—综合色88| 欧美大片免费久久精品三p| 欧美一区日韩一区| 日韩欧美成人一区二区| 欧美不卡一二三| 欧美va天堂va视频va在线| 欧美成人三级电影在线| 精品久久久久久久久久久久久久久| 日韩一区二区在线观看| 精品国产一区二区三区四区四 | 国产亚洲制服色| 久久久精品蜜桃| 欧美高清在线视频| 亚洲伦理在线精品| 亚洲成人av一区| 日本欧美在线观看| 国产精品中文字幕一区二区三区| 国产高清久久久久| 成人毛片视频在线观看| 色婷婷国产精品| 欧美日产在线观看| 精品少妇一区二区三区| 国产欧美日韩在线看| 亚洲欧美日韩综合aⅴ视频| 亚洲国产成人av好男人在线观看| 日韩av中文在线观看| 国产一区在线精品| 99精品国产视频| 欧美久久一二区| ww久久中文字幕| 亚洲精品日韩一| 免费在线观看一区| 风间由美一区二区av101| 色综合色综合色综合色综合色综合| 欧美三电影在线| 亚洲精品在线免费播放| 中文一区二区在线观看| 亚洲国产美国国产综合一区二区| 秋霞电影网一区二区| 成人免费视频caoporn| 欧美日韩1234| 国产欧美日韩综合| 三级不卡在线观看| 床上的激情91.| 91精品国产欧美日韩| 中文字幕av一区二区三区免费看 | 日韩一区二区影院| 最新国产の精品合集bt伙计| 亚洲va欧美va天堂v国产综合| 久久国产麻豆精品| 欧美亚洲一区三区| 久久女同精品一区二区| 亚洲综合图片区| 国产精品一区一区三区| 欧美日韩国产影片| 中文字幕亚洲一区二区va在线| 天堂在线亚洲视频| 972aa.com艺术欧美| 日韩免费看网站| 欧美在线免费观看亚洲| 日韩欧美不卡一区| 一区二区三区在线免费| 国产精品亚洲а∨天堂免在线| 欧美精品免费视频| 亚洲欧美日韩小说| 国产.精品.日韩.另类.中文.在线.播放| 欧美综合一区二区三区| 国产欧美日韩三级| 国产一区二区三区免费播放| 欧美日韩一区成人| 亚洲精品欧美激情| 波多野结衣亚洲一区| 精品福利一区二区三区| 奇米777欧美一区二区| 欧美视频自拍偷拍| 一区二区三区日韩欧美| 99视频精品在线| 国产精品久久久久7777按摩| 国产精一区二区三区| 日韩欧美一区二区免费| 丝袜亚洲另类丝袜在线| 91成人在线精品| 亚洲猫色日本管| 99re这里只有精品首页| 中文字幕精品在线不卡| 国产精品888| 久久久91精品国产一区二区精品| 久久精品国产一区二区三 | 久久亚洲一级片| 精品亚洲成a人在线观看| 日韩一区二区三区av| 日韩制服丝袜先锋影音| 欧美视频三区在线播放| 一区二区三区91| 欧美曰成人黄网| 一区二区视频在线| 日本黄色一区二区| 亚洲一区二区欧美激情| 欧美日韩亚洲不卡| 婷婷六月综合网| 欧美一区二区三区四区五区| 午夜久久久久久久久久一区二区| 欧美日韩国产乱码电影| 婷婷综合在线观看| 日韩无一区二区| 国产一区二区三区黄视频| 久久综合九色综合欧美98| 国内精品第一页| 国产精品久线在线观看| 99精品国产视频| 亚洲国产精品视频| 91精品国产乱码| 国产激情精品久久久第一区二区 | 无码av免费一区二区三区试看 | 日本人妖一区二区| 久久综合久久综合九色| 成人美女视频在线观看18| 亚洲丝袜另类动漫二区| 欧美日韩成人激情| 激情欧美一区二区| 中文文精品字幕一区二区| 91小宝寻花一区二区三区| 亚洲第一福利一区| 精品国产1区2区3区| www.亚洲激情.com| 亚洲国产日韩在线一区模特| 日韩免费观看高清完整版在线观看| 国产在线精品一区二区三区不卡 | 久久精品国产免费看久久精品| 精品免费日韩av| 成人av免费观看| 91极品美女在线| 日韩成人一区二区三区在线观看| 26uuu国产在线精品一区二区| 99精品国产一区二区三区不卡| 天堂av在线一区| 国产精品女主播av| 欧美日韩一级二级三级| 国内精品视频一区二区三区八戒| 国产精品视频一二| 欧美一区二区三区男人的天堂| 国产超碰在线一区| 偷偷要91色婷婷| 国产精品久久久久影院色老大| 在线免费亚洲电影| 国产美女一区二区| 亚洲小说春色综合另类电影| 久久午夜老司机| 欧美日韩高清不卡| 成人精品小蝌蚪| 久久精品国内一区二区三区| 亚洲免费观看高清| 久久久久久久久久久久久久久99| 欧美日韩免费电影| 顶级嫩模精品视频在线看| 免费观看在线综合| 亚洲精品欧美激情| 国产精品人人做人人爽人人添| 日韩欧美国产wwwww| 欧美影视一区在线| 9久草视频在线视频精品| 美女视频一区在线观看|