AzureCoreExtensions.ToDynamicFromJson 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
ToDynamicFromJson(BinaryData) |
Return the content of the BinaryData as a dynamic type. Please see https://aka.ms/azsdk/net/dynamiccontent for details. |
ToDynamicFromJson(BinaryData, JsonPropertyNames, String) |
Return the content of the BinaryData as a dynamic type. Please see https://aka.ms/azsdk/net/dynamiccontent for details.
|
ToDynamicFromJson(BinaryData)
- Source:
- AzureCoreExtensions.cs
Return the content of the BinaryData as a dynamic type. Please see https://aka.ms/azsdk/net/dynamiccontent for details.
public static dynamic ToDynamicFromJson (this BinaryData utf8Json);
static member ToDynamicFromJson : BinaryData -> obj
<Extension()>
Public Function ToDynamicFromJson (utf8Json As BinaryData) As Object
Parameters
- utf8Json
- BinaryData
Returns
Applies to
ToDynamicFromJson(BinaryData, JsonPropertyNames, String)
- Source:
- AzureCoreExtensions.cs
Return the content of the BinaryData as a dynamic type. Please see https://aka.ms/azsdk/net/dynamiccontent for details.
propertyNameFormat
dateTimeFormat
public static dynamic ToDynamicFromJson (this BinaryData utf8Json, Azure.Core.Serialization.JsonPropertyNames propertyNameFormat, string dateTimeFormat = "o");
static member ToDynamicFromJson : BinaryData * Azure.Core.Serialization.JsonPropertyNames * string -> obj
<Extension()>
Public Function ToDynamicFromJson (utf8Json As BinaryData, propertyNameFormat As JsonPropertyNames, Optional dateTimeFormat As String = "o") As Object
Parameters
- utf8Json
- BinaryData
- propertyNameFormat
- JsonPropertyNames
- dateTimeFormat
- String
Returns
Applies to
Azure SDK for .NET