SerializationManager.DeserializeInner Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
DeserializeInner(Type, IDeserializationContext) |
Deserialize the next object from the input binary stream. |
DeserializeInner<T>(IDeserializationContext) |
Deserialize the next object from the input binary stream. |
DeserializeInner(Type, IDeserializationContext)
- Source:
- SerializationManager.cs
Deserialize the next object from the input binary stream.
public static object DeserializeInner (Type expected, Orleans.Serialization.IDeserializationContext context);
static member DeserializeInner : Type * Orleans.Serialization.IDeserializationContext -> obj
Public Shared Function DeserializeInner (expected As Type, context As IDeserializationContext) As Object
Parameters
- expected
- Type
Type to return.
- context
- IDeserializationContext
The deserialization context.
Returns
Object of the required Type, rehydrated from the input stream.
Applies to
DeserializeInner<T>(IDeserializationContext)
- Source:
- SerializationManager.cs
Deserialize the next object from the input binary stream.
public static T DeserializeInner<T> (Orleans.Serialization.IDeserializationContext context);
static member DeserializeInner : Orleans.Serialization.IDeserializationContext -> 'T
Public Shared Function DeserializeInner(Of T) (context As IDeserializationContext) As T
Type Parameters
- T
Type to return.
Parameters
- context
- IDeserializationContext
Deserialization context.
Returns
Object of the required Type, rehydrated from the input stream.