Advances the
ObjectReader to one of the next records.
Syntax
| Visual Basic (Declaration) | |
|---|
Overloads Public Function Read( _
ByVal step As Integer _
) As Boolean |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As ObjectReader(Of T)
Dim step As Integer
Dim value As Boolean
value = instance.Read(step)
|
| C# | |
|---|
public bool Read(
int step
) |
| Managed Extensions for C++ | |
|---|
public: bool Read(
int step
) |
| C++/CLI | |
|---|
public:
bool Read(
int step
) |
Parameters
- step
- The step that is performed while reading.
Return Value
Returns true if the
ObjectReader could be
advanced to the next object.
Exceptions
| Exception | Description |
| ArgumentException | Step is lower then zero. |
Requirements
Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family
See Also