コード例 #1
0
 /// <summary>
 ///     Returns an enumerator that iterates through the BasePagedList&lt;T&gt;.
 /// </summary>
 /// <returns>A BasePagedList&lt;T&gt;.Enumerator for the BasePagedList&lt;T&gt;.</returns>
 public IEnumerator <T> GetEnumerator()
 {
     TryReloadPagedData();
     return(_pagedList.GetEnumerator());
 }
コード例 #2
0
 /// <summary>
 /// Returns an enumerator that iterates through the collection.
 /// </summary>
 /// <returns>
 /// A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
 /// </returns>
 /// <filterpriority>1</filterpriority>
 public IEnumerator <Member> GetEnumerator()
 {
     return(pagedMemberList.GetEnumerator());
 }