Advances the
ObjectReader to one of the next records.
Syntax
| Visual Basic (Declaration) | |
|---|
Protected Overridable MustOverride Function InternalRead( _
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.InternalRead(step)
|
| C# | |
|---|
protected virtual abstract bool InternalRead(
int step
) |
| Managed Extensions for C++ | |
|---|
protected: virtual abstract bool InternalRead(
int step
) |
| C++/CLI | |
|---|
protected:
virtual abstract bool InternalRead(
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.
Requirements
Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family
See Also