다음을 통해 공유


ObjectSerializer.Serialize Method

Definition

Overloads

Serialize(Object, Type, CancellationToken)

Convert the provided value to it's binary representation and return it as a BinaryData instance.

Serialize(Stream, Object, Type, CancellationToken)

Convert the provided value to it's binary representation and write it to Stream.

Serialize(Object, Type, CancellationToken)

Source:
ObjectSerializer.cs

Convert the provided value to it's binary representation and return it as a BinaryData instance.

public virtual BinaryData Serialize (object? value, Type? inputType = default, System.Threading.CancellationToken cancellationToken = default);
abstract member Serialize : obj * Type * System.Threading.CancellationToken -> BinaryData
override this.Serialize : obj * Type * System.Threading.CancellationToken -> BinaryData
Public Overridable Function Serialize (value As Object, Optional inputType As Type = Nothing, Optional cancellationToken As CancellationToken = Nothing) As 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

Serialize(Stream, Object, Type, CancellationToken)

Source:
ObjectSerializer.cs

Convert the provided value to it's binary representation and write it to Stream.

public abstract void Serialize (System.IO.Stream stream, object? value, Type inputType, System.Threading.CancellationToken cancellationToken);
abstract member Serialize : System.IO.Stream * obj * Type * System.Threading.CancellationToken -> unit
Public MustOverride Sub Serialize (stream As Stream, value As Object, inputType As Type, cancellationToken As CancellationToken)

Parameters

stream
Stream

The Stream to write to.

value
Object

The value to convert.

inputType
Type

The type of the value to convert.

cancellationToken
CancellationToken

The CancellationToken to use during serialization.

Applies to