C# Class AccessProviderSample.AccessDBContentReader

Content reader used to retrieve data from this provider.
Inheritance: IContentReader
Mostrar archivo Open project: Huddle/Puddle

Public Methods

Method Description
Close ( ) : void

Closes the content reader, so all members are reset

Dispose ( ) : void

Dispose any resources being used

Read ( long readCount ) : IList

Read the specified number of rows from the source.

Seek ( long offset, System origin ) : void

Moves the content reader specified number of rows from the origin

Private Methods

Method Description
AccessDBContentReader ( string path, AccessDBProvider provider ) : System

Method Details

Close() public method

Closes the content reader, so all members are reset
public Close ( ) : void
return void

Dispose() public method

Dispose any resources being used
public Dispose ( ) : void
return void

Read() public method

Read the specified number of rows from the source.
public Read ( long readCount ) : IList
readCount long The number of items to /// return.
return IList

Seek() public method

Moves the content reader specified number of rows from the origin
public Seek ( long offset, System origin ) : void
offset long Number of rows to offset
origin System Starting row from which to offset
return void