ApiClientSerializationDeserializeFromStreamT Method |
Deserializes the data structure contained by the specified stream
into an instance of the specified type.
Namespace:
ArangoDBNetStandard.Serialization
Assembly:
ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax public abstract T DeserializeFromStream<T>(
Stream stream
)
Public MustOverride Function DeserializeFromStream(Of T) (
stream As Stream
) As T
public:
generic<typename T>
virtual T DeserializeFromStream(
Stream^ stream
) abstract
abstract DeserializeFromStream :
stream : Stream -> 'T
Parameters
- stream
- Type: System.IOStream
The stream containing the JSON structure to deserialize.
Type Parameters
- T
- The type of the object to deserialize to.
Return Value
Type:
TImplements
IApiClientSerializationDeserializeFromStreamT(Stream)See Also