JsonSerializable.LoadFromWithConstructor 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
LoadFromWithConstructor<T>(Stream, Func<T>) |
Deserializes the specified stream using the given constructor in the Azure Cosmos DB service. |
LoadFromWithConstructor<T>(Stream, Func<T>, JsonSerializerSettings) |
Deserializes the specified stream using the given constructor in the Azure Cosmos DB service. |
LoadFromWithConstructor<T>(Stream, Func<T>)
Deserializes the specified stream using the given constructor in the Azure Cosmos DB service.
public static T LoadFromWithConstructor<T> (System.IO.Stream stream, Func<T> constructorFunction);
static member LoadFromWithConstructor : System.IO.Stream * Func<'T> -> 'T
Public Shared Function LoadFromWithConstructor(Of T) (stream As Stream, constructorFunction As Func(Of T)) As T
Type Parameters
- T
The type of the object.
Parameters
- stream
- Stream
The stream to load from.
- constructorFunction
- Func<T>
The constructor used for the returning object.
Returns
The object loaded from the specified stream.
Applies to
LoadFromWithConstructor<T>(Stream, Func<T>, JsonSerializerSettings)
Deserializes the specified stream using the given constructor in the Azure Cosmos DB service.
public static T LoadFromWithConstructor<T> (System.IO.Stream stream, Func<T> constructorFunction, Newtonsoft.Json.JsonSerializerSettings settings);
static member LoadFromWithConstructor : System.IO.Stream * Func<'T> * Newtonsoft.Json.JsonSerializerSettings -> 'T
Public Shared Function LoadFromWithConstructor(Of T) (stream As Stream, constructorFunction As Func(Of T), settings As JsonSerializerSettings) As T
Type Parameters
- T
The type of the object.
Parameters
- stream
- Stream
The stream to load from.
- constructorFunction
- Func<T>
The constructor used for the returning object.
- settings
- Newtonsoft.Json.JsonSerializerSettings
The JsonSerializerSettings to be used.
Returns
The object loaded from the specified stream.
Applies to
Azure SDK for .NET