DekGenius.com
[ Team LiB ] Previous Section Next Section

DbEnumerator

System.Data.Common (system.data.dll) class

This type supports the .NET framework. It supports simple iteration over a data provider collection. You never need to use it directly in your code.

public class DbEnumerator : IEnumerator {
// Public Constructors
   public DbEnumerator( System.Data.IDataReader reader);  
   public DbEnumerator(System.Data.IDataReader reader, bool closeReader);
// Public Instance Properties
   public object Current{get; }                    // implements IEnumerator
// Public Instance Methods
   public bool MoveNext(  );                         // implements IEnumerator
   public void Reset(  );                           // implements IEnumerator
}
    [ Team LiB ] Previous Section Next Section