BinaryData.ToObjectFromJson 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
ToObjectFromJson<T>(JsonSerializerOptions) |
Converts the BinaryData to the specified type using JsonSerializer. |
ToObjectFromJson<T>(JsonTypeInfo<T>) |
Converts the BinaryData to the specified type using JsonSerializer. |
ToObjectFromJson<T>(JsonSerializerOptions)
- Source:
- BinaryData.cs
- Source:
- BinaryData.cs
- Source:
- BinaryData.cs
Converts the BinaryData to the specified type using JsonSerializer.
[System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation.")]
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed.")]
public T? ToObjectFromJson<T>(System.Text.Json.JsonSerializerOptions? options = default);
public T? ToObjectFromJson<T>(System.Text.Json.JsonSerializerOptions? options = default);
[<System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation.")>]
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed.")>]
member this.ToObjectFromJson : System.Text.Json.JsonSerializerOptions -> 'T
member this.ToObjectFromJson : System.Text.Json.JsonSerializerOptions -> 'T
Public Function ToObjectFromJson(Of T) (Optional options As JsonSerializerOptions = Nothing) As T
Type Parameters
- T
The type that the data should be converted to.
Parameters
- options
- JsonSerializerOptions
The JsonSerializerOptions to use when serializing to JSON.
Returns
The data converted to the specified type.
- Attributes
Applies to
ToObjectFromJson<T>(JsonTypeInfo<T>)
- Source:
- BinaryData.cs
- Source:
- BinaryData.cs
- Source:
- BinaryData.cs
Converts the BinaryData to the specified type using JsonSerializer.
public:
generic <typename T>
T ToObjectFromJson(System::Text::Json::Serialization::Metadata::JsonTypeInfo<T> ^ jsonTypeInfo);
public T? ToObjectFromJson<T>(System.Text.Json.Serialization.Metadata.JsonTypeInfo<T> jsonTypeInfo);
member this.ToObjectFromJson : System.Text.Json.Serialization.Metadata.JsonTypeInfo<'T> -> 'T
Public Function ToObjectFromJson(Of T) (jsonTypeInfo As JsonTypeInfo(Of T)) As T
Type Parameters
- T
The type that the data should be converted to.
Parameters
- jsonTypeInfo
- JsonTypeInfo<T>
The JsonTypeInfo to use when serializing to JSON.
Returns
The data converted to the specified type.