Düzenle

Aracılığıyla paylaş


SerializationManager.Deserialize Method

Definition

Overloads

Deserialize(BinaryTokenStreamReader)

Deserialize the next object from the input binary stream.

Deserialize(IBinaryTokenStreamReader)

Deserialize the next object from the input binary stream.

Deserialize(Type, BinaryTokenStreamReader)

Deserialize the next object from the input binary stream.

Deserialize(Type, IBinaryTokenStreamReader)

Deserialize the next object from the input binary stream.

Deserialize<T>(BinaryTokenStreamReader)

Deserialize the next object from the input binary stream.

Deserialize<T>(IBinaryTokenStreamReader)

Deserialize the next object from the input binary stream.

Deserialize(BinaryTokenStreamReader)

Deserialize the next object from the input binary stream.

public object Deserialize (Orleans.Serialization.BinaryTokenStreamReader stream);
member this.Deserialize : Orleans.Serialization.BinaryTokenStreamReader -> obj
Public Function Deserialize (stream As BinaryTokenStreamReader) As Object

Parameters

stream
BinaryTokenStreamReader

Input stream.

Returns

Object of the required Type, rehydrated from the input stream.

Applies to

Deserialize(IBinaryTokenStreamReader)

Source:
SerializationManager.cs

Deserialize the next object from the input binary stream.

public object Deserialize (Orleans.Serialization.IBinaryTokenStreamReader stream);
member this.Deserialize : Orleans.Serialization.IBinaryTokenStreamReader -> obj
Public Function Deserialize (stream As IBinaryTokenStreamReader) As Object

Parameters

stream
IBinaryTokenStreamReader

Input stream.

Returns

Object of the required Type, rehydrated from the input stream.

Applies to

Deserialize(Type, BinaryTokenStreamReader)

Deserialize the next object from the input binary stream.

public object Deserialize (Type t, Orleans.Serialization.BinaryTokenStreamReader stream);
member this.Deserialize : Type * Orleans.Serialization.BinaryTokenStreamReader -> obj
Public Function Deserialize (t As Type, stream As BinaryTokenStreamReader) As Object

Parameters

t
Type

Type to return.

stream
BinaryTokenStreamReader

Input stream.

Returns

Object of the required Type, rehydrated from the input stream.

Applies to

Deserialize(Type, IBinaryTokenStreamReader)

Source:
SerializationManager.cs

Deserialize the next object from the input binary stream.

public object Deserialize (Type t, Orleans.Serialization.IBinaryTokenStreamReader stream);
member this.Deserialize : Type * Orleans.Serialization.IBinaryTokenStreamReader -> obj
Public Function Deserialize (t As Type, stream As IBinaryTokenStreamReader) As Object

Parameters

t
Type

Type to return.

stream
IBinaryTokenStreamReader

Input stream.

Returns

Object of the required Type, rehydrated from the input stream.

Applies to

Deserialize<T>(BinaryTokenStreamReader)

Deserialize the next object from the input binary stream.

public T Deserialize<T> (Orleans.Serialization.BinaryTokenStreamReader stream);
member this.Deserialize : Orleans.Serialization.BinaryTokenStreamReader -> 'T
Public Function Deserialize(Of T) (stream As BinaryTokenStreamReader) As T

Type Parameters

T

Type to return.

Parameters

stream
BinaryTokenStreamReader

Input stream.

Returns

T

Object of the required Type, rehydrated from the input stream.

Applies to

Deserialize<T>(IBinaryTokenStreamReader)

Source:
SerializationManager.cs

Deserialize the next object from the input binary stream.

public T Deserialize<T> (Orleans.Serialization.IBinaryTokenStreamReader stream);
member this.Deserialize : Orleans.Serialization.IBinaryTokenStreamReader -> 'T
Public Function Deserialize(Of T) (stream As IBinaryTokenStreamReader) As T

Type Parameters

T

Type to return.

Parameters

stream
IBinaryTokenStreamReader

Input stream.

Returns

T

Object of the required Type, rehydrated from the input stream.

Applies to