Interface IReader
Provides a forward-only, read-only iterator for reading data. You must call ReadNext() before you can access any data
Inherited Members
System.IDisposable.Dispose()
Namespace: OSGeo.MapGuide.MaestroAPI.Feature
Assembly: OSGeo.MapGuide.MaestroAPI.dll
Syntax
public interface IReader : IDisposable, IRecord
Remarks
- You must call ReadNext before you can access the data
- For each property, determine the property type and then call the appropriate Get<type>() method to get the value of the property.
- The exception for this is if you are access the value via the indexer. In this case you only need determine the property type when casting from the System.Object that is returned by the indexer
Methods
| Improve this Doc View SourceClose()
Closes the object, freeing any resources it may be holding.
Declaration
void Close()
ReadNext()
Advances the reader to the next item and determines whether there is another object to read.
Declaration
bool ReadNext()
Returns
Type | Description |
---|---|
System.Boolean |