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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? ipagelocationcollection.cs

?? 基于.Net環境下c#實現的國人自己的Blog平臺,基于.Text的核心技術,但做了漢化以及改寫了一部分的核心代碼,值得研究學習
?? CS
字號:


#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 IPageLocationCollection

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

		#region Count

		/// <summary>
		/// Gets the number of elements contained in the 
		/// <see cref="IPageLocationCollection"/>.
		/// </summary>
		/// <value>The number of elements contained in the 
		/// <see cref="IPageLocationCollection"/>.</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="IPageLocationCollection"/> is synchronized (thread-safe).
		/// </summary>
		/// <value><c>true</c> if access to the <see cref="IPageLocationCollection"/> 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="IPageLocationCollection"/>.
		/// </summary>
		/// <value>An object that can be used to synchronize access 
		/// to the <see cref="IPageLocationCollection"/>.</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="IPageLocationCollection"/> to a one-dimensional <see cref="Array"/>
		/// of <see cref="PageLocation"/> 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="PageLocation"/> elements copied from the <see cref="IPageLocationCollection"/>. 
		/// 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="IPageLocationCollection"/> 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(PageLocation[] array, int arrayIndex);

		#endregion

		#region GetEnumerator

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

		#endregion

		#endregion
	}

	#endregion

	#region Interface IPageLocationList

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

		#region IsFixedSize

		/// <summary>
		/// Gets a value indicating whether the <see cref="IPageLocationList"/> has a fixed size.
		/// </summary>
		/// <value><c>true</c> if the <see cref="IPageLocationList"/> 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="IPageLocationList"/> is read-only.
		/// </summary>
		/// <value><c>true</c> if the <see cref="IPageLocationList"/> 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="PageLocation"/> element at the specified index.
		/// </summary>
		/// <param name="index">The zero-based index of the 
		/// <see cref="PageLocation"/> element to get or set.</param>
		/// <value>
		/// The <see cref="PageLocation"/> 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="IPageLocationCollection.Count"/>.</para>
		/// </exception>
		/// <exception cref="NotSupportedException">
		/// The property is set and the <see cref="IPageLocationList"/> is read-only.</exception>
		/// <remarks>Please refer to <see cref="IList.this"/> for details.</remarks>
		PageLocation this[int index] { get; set; }

		#endregion

		#endregion

		#region Methods

		#region Add

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

		#endregion

		#region Clear

		/// <summary>
		/// Removes all elements from the <see cref="IPageLocationList"/>.
		/// </summary>
		/// <exception cref="NotSupportedException">
		/// <para>The <see cref="IPageLocationList"/> is read-only.</para>
		/// <para>-or-</para>
		/// <para>The <b>IPageLocationList</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="IPageLocationList"/>
		/// contains the specified <see cref="PageLocation"/> element.
		/// </summary>
		/// <param name="value">The <see cref="PageLocation"/> object
		/// to locate in the <see cref="IPageLocationList"/>.
		/// This argument can be a null reference.
		/// </param>    
		/// <returns><c>true</c> if <paramref name="value"/> is found in the 
		/// <see cref="IPageLocationList"/>; otherwise, <c>false</c>.</returns>
		/// <remarks>Please refer to <see cref="IList.Contains"/> for details.</remarks>
		bool Contains(PageLocation value);

		#endregion

		#region IndexOf

		/// <summary>
		/// Returns the zero-based index of the first occurrence of the specified 
		/// <see cref="PageLocation"/> in the <see cref="IPageLocationList"/>.
		/// </summary>
		/// <param name="value">The <see cref="PageLocation"/> object 
		/// to locate in the <see cref="IPageLocationList"/>.
		/// 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="IPageLocationList"/>, if found; otherwise, -1.
		/// </returns>
		/// <remarks>Please refer to <see cref="IList.IndexOf"/> for details.</remarks>
		int IndexOf(PageLocation value);

		#endregion

		#region Insert

		/// <summary>
		/// Inserts a <see cref="PageLocation"/> element into the 
		/// <see cref="IPageLocationList"/> 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="PageLocation"/> object
		/// to insert into the <see cref="IPageLocationList"/>.
		/// 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="IPageLocationCollection.Count"/>.</para>
		/// </exception>
		/// <exception cref="NotSupportedException">
		/// <para>The <see cref="IPageLocationList"/> is read-only.</para>
		/// <para>-or-</para>
		/// <para>The <b>IPageLocationList</b> has a fixed size.</para></exception>    
		/// <remarks>Please refer to <see cref="IList.Insert"/> for details.</remarks>
		void Insert(int index, PageLocation value);

		#endregion

		#region Remove

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

		#endregion

		#region RemoveAt

		/// <summary>
		/// Removes the element at the specified index of the 
		/// <see cref="IPageLocationList"/>.
		/// </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="IPageLocationCollection.Count"/>.</para>
		/// </exception>
		/// <exception cref="NotSupportedException">
		/// <para>The <see cref="IPageLocationList"/> is read-only.</para>
		/// <para>-or-</para>
		/// <para>The <b>IPageLocationList</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 IPageLocationEnumerator

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

		#region Current

		/// <summary>
		/// Gets the current <see cref="PageLocation"/> element in the collection.
		/// </summary>
		/// <value>The current <see cref="PageLocation"/> 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>    
		PageLocation 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
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
粉嫩av亚洲一区二区图片| 色噜噜狠狠色综合欧洲selulu| 欧洲另类一二三四区| 蜜臀久久99精品久久久画质超高清| 蜜臀av性久久久久蜜臀aⅴ| 欧美美女黄视频| 亚洲一区欧美一区| 欧美偷拍一区二区| 五月婷婷久久丁香| 欧美精品日韩一本| 天天综合日日夜夜精品| 五月婷婷激情综合网| 欧美日韩免费电影| 亚洲成va人在线观看| 欧美二区三区91| 蜜臀av性久久久久蜜臀av麻豆 | 捆绑变态av一区二区三区| 在线成人小视频| 免费精品视频最新在线| 欧美电影免费观看高清完整版在 | 日本不卡一区二区三区| 欧美精品第1页| 蜜臀av性久久久久蜜臀av麻豆 | 欧美高清性hdvideosex| 日本视频在线一区| 精品日韩av一区二区| 国产成人一区二区精品非洲| 国产精品天天摸av网| 99re热这里只有精品视频| 一区二区三区精品| 91麻豆精品国产91久久久更新时间| 久久国产欧美日韩精品| 久久久久久久性| 99国产精品久| 亚洲高清视频的网址| 日韩一区二区电影| 国产成人午夜精品5599| 亚洲少妇最新在线视频| 5月丁香婷婷综合| 国产米奇在线777精品观看| 国产精品福利一区| 欧美国产综合色视频| 一本色道久久加勒比精品| 亚洲观看高清完整版在线观看| 日韩欧美精品三级| 不卡的av网站| 亚洲成人黄色影院| 久久亚洲一区二区三区明星换脸| 不卡av在线网| 日韩av电影免费观看高清完整版 | 欧美婷婷六月丁香综合色| 蜜臀va亚洲va欧美va天堂| 亚洲国产高清在线| 欧美日韩中字一区| 国产精品66部| 亚洲一区视频在线| 久久久久9999亚洲精品| 色噜噜狠狠一区二区三区果冻| 青青草原综合久久大伊人精品 | 午夜一区二区三区在线观看| 精品久久久久久久人人人人传媒| av成人老司机| 久久国内精品自在自线400部| 国产精品久久久久精k8| 欧美一级片在线看| 成人av在线网| 蜜桃精品在线观看| 亚洲欧美乱综合| 亚洲精品一区二区三区99| 在线观看免费一区| 亚洲精品一线二线三线| 欧美吞精做爰啪啪高潮| 国产aⅴ综合色| 日韩精品电影一区亚洲| 亚洲欧洲精品一区二区精品久久久 | 99re热这里只有精品免费视频| 日本一不卡视频| 亚洲男人的天堂网| 久久久99精品免费观看不卡| 欧美日韩在线电影| 成人高清视频在线观看| 久久国产免费看| 亚洲大片在线观看| 国产精品久久久久影院老司 | 日韩毛片精品高清免费| 精品国精品自拍自在线| 欧美日韩一级大片网址| 91亚洲精品一区二区乱码| 精品一区二区三区av| 午夜亚洲国产au精品一区二区| 国产精品第四页| 精品88久久久久88久久久| 欧美日韩综合不卡| 色综合激情五月| 高清成人免费视频| 国产在线精品免费| 免费欧美高清视频| 五月激情丁香一区二区三区| 国产精品第一页第二页第三页| 精品久久久久久久人人人人传媒| 欧美日韩国产大片| 日韩欧美国产高清| 欧美日韩国产大片| 在线亚洲精品福利网址导航| 成人亚洲精品久久久久软件| 久久电影国产免费久久电影| 午夜精品久久久久久久久久| 一区二区三区日韩精品视频| 自拍视频在线观看一区二区| 中文一区二区完整视频在线观看| 久久只精品国产| 久久中文字幕电影| 精品福利一区二区三区免费视频| 日韩欧美一二三| 日韩午夜精品电影| 日韩一级黄色大片| 91精品国产一区二区人妖| 欧美日韩国产高清一区二区 | 99久久精品久久久久久清纯| 老司机精品视频一区二区三区| 亚洲免费在线看| 最近中文字幕一区二区三区| 国产欧美一区二区精品秋霞影院| 精品免费一区二区三区| 精品国产1区2区3区| 久久中文字幕电影| 国产亚洲一区二区三区在线观看| 久久综合色播五月| 久久久五月婷婷| 久久综合九色综合欧美亚洲| 精品久久人人做人人爱| 久久先锋资源网| 久久久久久99精品| 日本一区二区三区视频视频| 国产精品拍天天在线| 国产精品家庭影院| 亚洲欧美日韩国产一区二区三区| 最新久久zyz资源站| 91在线观看地址| 91浏览器打开| 欧美亚男人的天堂| 欧美日韩国产美| 日韩一区二区三区在线| 日韩色视频在线观看| 精品黑人一区二区三区久久| 久久综合色8888| 中文字幕欧美国产| 亚洲另类中文字| 亚洲成av人综合在线观看| 日本欧美在线看| 精品一区二区三区影院在线午夜| 国产美女av一区二区三区| 成人综合在线观看| 91麻豆国产福利精品| 欧美日韩在线播放一区| 欧美一区二区女人| 久久综合久久99| 最新不卡av在线| 午夜精品免费在线观看| 狠狠色丁香婷婷综合| 丁香六月综合激情| 欧美性三三影院| 精品久久五月天| 成人免费在线播放视频| 亚洲成人动漫av| 国模大尺度一区二区三区| 成人精品视频.| 欧美日韩国产大片| 国产亚洲欧美激情| 亚洲免费观看高清完整版在线| 丝袜美腿亚洲综合| 国产激情一区二区三区桃花岛亚洲| aa级大片欧美| 欧美一区二区三区在线观看 | 国产欧美一区二区精品秋霞影院| 亚洲蜜臀av乱码久久精品蜜桃| 天天综合天天做天天综合| 黑人巨大精品欧美黑白配亚洲| 91在线观看视频| 日韩女优视频免费观看| 青娱乐精品在线视频| 国产99久久久国产精品| 欧美性生活一区| 久久久精品tv| 亚洲国产成人av网| 国产a视频精品免费观看| 欧美日韩午夜在线| 中文字幕国产一区二区| 日韩激情在线观看| 99热精品一区二区| 日韩一区二区在线观看视频| 亚洲欧洲日韩在线| 狠狠网亚洲精品| 在线观看国产日韩| 久久精品在线免费观看| 亚洲.国产.中文慕字在线| 国产精华液一区二区三区| 在线不卡中文字幕播放| 中文字幕中文乱码欧美一区二区| 人人精品人人爱|