Table of Contents

Interface IEncodedRawValue

Namespace
Temporalio.Converters
Assembly
Temporalio.dll

Representation of a raw value that is still encoded and not converted.

public interface IEncodedRawValue

Properties

Payload

Gets the raw payload value.

Payload Payload { get; }

Property Value

Payload

Methods

ToValueAsync(Type)

Decode and convert the raw value to the given type.

Task<object?> ToValueAsync(Type type)

Parameters

type Type

Type to convert to.

Returns

Task<object>

Decoded and converted value.

ToValueAsync<T>()

Decode and convert the raw value to the given type.

Task<T> ToValueAsync<T>()

Returns

Task<T>

Decoded and converted value.

Type Parameters

T

Type to convert to.