Chili.Opf3 Send comments on this topic.
Generic ObjectReader Class Members
See Also  Properties  Methods  Events
Chili.Opf3 Namespace : Generic ObjectReader Class


The following tables list the members exposed by Generic ObjectReader.

Public Properties

 NameDescription
Public PropertyCurrent Returns the current object. Before accessing this property call at least one time the Read method.  
Public PropertyFinishedReading Returns if the ObjectReader has finished reading. Is true after Read returned false.  
Public PropertyHasObjects Returns whether the ObjectReader contains one or more rows.  
Public PropertyIsClosed Indicates whether the ObjectReader has been closed.  
Top

Protected Properties

 NameDescription
Protected PropertyContext Returns the associated instance of the ObjectContext class.  
Top

Public Methods

 NameDescription
Public MethodClose Closes the ObjectReader object.  
Public Methodstatic (Shared in Visual Basic)CreateOverloaded.   
Public MethodCreateObjRef (Inherited from System.MarshalByRefObject)
Public MethodDispose Disposes the ObjectReader.  
Public MethodGetEnumerator Returns an enumerator that iterates through this ObjectReader.  
Public MethodGetLifetimeService (Inherited from System.MarshalByRefObject)
Public MethodInitializeLifetimeService (Inherited from System.MarshalByRefObject)
Public MethodMoveNext Moves the ObjectReader to the next item.  
Public MethodReadOverloaded.   
Public MethodReset Resets the ObjectReader. This method is not supported, since the ObjectReader is forward-only.  
Top

Protected Methods

 NameDescription
Protected MethodGetCurrentObject Returns the current object managed by the ObjectReader.  
Protected MethodInternalRead Advances the ObjectReader to one of the next records.  
Protected MethodMemberwiseCloneOverloaded.  (Inherited from System.MarshalByRefObject)
Protected MethodNotifyConcurrencyManager Notifies the IConcurrencyManager that the object has been loaded.  
Protected MethodOnFetchingStorageRecord Invokes the FetchingStorageRecord event if somebody subscribed.  
Protected MethodOnLoaded Invokes the event that is fired after an object has been loaded from the storage.  
Protected MethodOnLoading Invokes the event that is fired before an object has been loaded from the storage.  
Top

Public Events

 NameDescription
Public EventFetchingStorageRecord Event is fired before the data from the storage is used to populate an object.  
Public EventLoaded Event is fired after an object has been loaded from the storage.  
Public EventLoading Event is fired before an object has been loaded from the storage.  
Top

See Also