Chili.Opf3 Send comments on this topic.
FinishedReading Property
See Also 
Chili.Opf3 Namespace > Generic ObjectReader Class : FinishedReading Property




Returns if the ObjectReader has finished reading. Is true after Read returned false.

Syntax

Visual Basic (Declaration) 
Public Overridable MustOverride ReadOnly Property FinishedReading As Boolean
Visual Basic (Usage)Copy Code
Dim instance As ObjectReader(Of T)
Dim value As Boolean
 
value = instance.FinishedReading
C# 
public virtual abstract bool FinishedReading {get;}
Managed Extensions for C++ 
public: __property virtual abstract bool get_FinishedReading();
C++/CLI 
public:
virtual abstract property bool FinishedReading {
   bool get();
}

Return Value

Returns true if the ObjectReader has finished reading.

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also