Interface IRawValue
- Namespace
- Temporalio.Converters
- Assembly
- Temporalio.dll
Representation of a raw value that is already decoded but not converted.
public interface IRawValue
Properties
Payload
Gets the raw payload value.
Payload Payload { get; }
Property Value
Methods
ToValue(Type)
Convert the raw value to the given type.
object? ToValue(Type type)
Parameters
type
TypeType to convert to.
Returns
- object
Converted value.
ToValue<T>()
Convert the raw value to the given type.
T ToValue<T>()
Returns
- T
Converted value.
Type Parameters
T
Type to convert to.