ObjectSerializer.SerializeAsync 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
SerializeAsync(Object, Type, CancellationToken) |
Convert the provided value to it's binary representation and return it as a BinaryData instance. |
SerializeAsync(Stream, Object, Type, CancellationToken) |
Convert the provided value to it's binary representation and write it to Stream. |
SerializeAsync(Object, Type, CancellationToken)
- Source:
- ObjectSerializer.cs
Convert the provided value to it's binary representation and return it as a BinaryData instance.
public virtual System.Threading.Tasks.ValueTask<BinaryData> SerializeAsync (object? value, Type? inputType = default, System.Threading.CancellationToken cancellationToken = default);
abstract member SerializeAsync : obj * Type * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<BinaryData>
override this.SerializeAsync : obj * Type * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<BinaryData>
Public Overridable Function SerializeAsync (value As Object, Optional inputType As Type = Nothing, Optional cancellationToken As CancellationToken = Nothing) As ValueTask(Of BinaryData)
Parameters
- value
- Object
The value to convert.
- inputType
- Type
The type to use when serializing value
. If omitted, the type will be determined using GetType()().
- cancellationToken
- CancellationToken
The CancellationToken to use during serialization.
Returns
The object's binary representation as BinaryData.
Applies to
SerializeAsync(Stream, Object, Type, CancellationToken)
- Source:
- ObjectSerializer.cs
Convert the provided value to it's binary representation and write it to Stream.
public abstract System.Threading.Tasks.ValueTask SerializeAsync (System.IO.Stream stream, object? value, Type inputType, System.Threading.CancellationToken cancellationToken);
abstract member SerializeAsync : System.IO.Stream * obj * Type * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask
Public MustOverride Function SerializeAsync (stream As Stream, value As Object, inputType As Type, cancellationToken As CancellationToken) As ValueTask
Parameters
- value
- Object
The value to convert.
- inputType
- Type
The type of the value
to convert.
- cancellationToken
- CancellationToken
The CancellationToken to use during serialization.
Returns
Applies to
Azure SDK for .NET