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
Methods
ToValueAsync(Type)
Decode and convert the raw value to the given type.
Task<object?> ToValueAsync(Type type)
Parameters
type
TypeType to convert to.
Returns
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.