CompositeDataStream<TObject>.ReadObject Method

Definition

Namespace: Extreme.Data
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0

Overload List

ReadObject() Reads an object from the data stream.
ReadObject(String) Reads the object with the specified name from the data stream.

CompositeDataStream<TObject>.ReadObject

Reads an object from the data stream.
C#
public override TObject ReadObject()

Return Value

TObject
The object that was read from the data stream.

CompositeDataStream<TObject>.ReadObject(String)

Reads the object with the specified name from the data stream.
C#
public virtual TObject ReadObject(
	string name
)

Parameters

name  String
The name of the object.

Return Value

TObject
The object that was read from the data stream.

See Also