Class JsonPlainConverter
- Namespace
- Temporalio.Converters
- Assembly
- Temporalio.dll
Encoding converter for all objects via JSON.
public class JsonPlainConverter : IEncodingConverter
- Inheritance
-
JsonPlainConverter
- Implements
- Inherited Members
Constructors
JsonPlainConverter(JsonSerializerOptions)
Initializes a new instance of the JsonPlainConverter class.
public JsonPlainConverter(JsonSerializerOptions serializerOptions)
Parameters
serializerOptions
JsonSerializerOptionsSerializer options.
Properties
Encoding
Gets the encoding name this converter represents.
public string Encoding { get; }
Property Value
Remarks
Implementers must put this value on the "encoding" metadata of created payloads.
SerializerOptions
Gets the serializer options used during conversion.
protected JsonSerializerOptions SerializerOptions { get; }
Property Value
Methods
ToValue(Payload, Type)
Convert the given payload to the given type or error.
public object? ToValue(Payload payload, Type type)
Parameters
Returns
- object
The converted value.
Remarks
This call is guaranteed to only be called for payloads whose metadata match Encoding. This should error if it cannot convert to the given type.
TryToPayload(object?, out Payload?)
Try to convert the given value to the given payload or return false if this converter cannot handle it and the next should be tried.
public bool TryToPayload(object? value, out Payload? payload)
Parameters
Returns
- bool
True if this converter can and has converted the value.
Remarks
Implementers must put the Encoding value on the "encoding" metadata of created payloads.