IObjectSerializer.Deserialize 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
Deserialize<T>(Object) |
Deserialize a primitive or string into an object of the given type. |
Deserialize<T>(String) |
Deserialize a string into an object. |
Deserialize<T>(Object)
Deserialize a primitive or string into an object of the given type.
public T Deserialize<T>(object value);
abstract member Deserialize : obj -> 'T
Public Function Deserialize(Of T) (value As Object) As T
Type Parameters
- T
The type of the deserialized object.
Parameters
- value
- Object
The string to deserialize.
Returns
The deserialized object.
Applies to
Deserialize<T>(String)
Deserialize a string into an object.
public T Deserialize<T>(string value);
abstract member Deserialize : string -> 'T
Public Function Deserialize(Of T) (value As String) As T
Type Parameters
- T
The type of the deserialized object.
Parameters
- value
- String
The string to deserialize.
Returns
The deserialized object.