AzureCoreExtensions.ToObjectAsync<T> 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.
Converts the BinaryData to the specified type using the provided ObjectSerializer.
public static System.Threading.Tasks.ValueTask<T?> ToObjectAsync<T> (this BinaryData data, Azure.Core.Serialization.ObjectSerializer serializer, System.Threading.CancellationToken cancellationToken = default);
static member ToObjectAsync : BinaryData * Azure.Core.Serialization.ObjectSerializer * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<'T>
<Extension()>
Public Function ToObjectAsync(Of T) (data As BinaryData, serializer As ObjectSerializer, Optional cancellationToken As CancellationToken = Nothing) As ValueTask(Of T)
Type Parameters
- T
The type that the data should be converted to.
Parameters
- data
- BinaryData
The BinaryData instance to convert.
- serializer
- ObjectSerializer
The serializer to use when deserializing the data.
- cancellationToken
- CancellationToken
The CancellationToken to use during deserialization.
Returns
ValueTask<T>
The data converted to the specified type.
Applies to
Współpracuj z nami w serwisie GitHub
Źródło tej zawartości można znaleźć w witrynie GitHub, gdzie można również tworzyć i przeglądać problemy i żądania ściągnięcia. Więcej informacji znajdziesz w naszym przewodniku dla współtwórców.
Azure SDK for .NET