Class LdJsonConverters.EvaluationReasonKindConverter
The JSON converter for EvaluationReasonKind.
Inheritance
LdJsonConverters.EvaluationReasonKindConverter
Inherited Members
Namespace: LaunchDarkly.Sdk.Json
Assembly: LaunchDarkly.CommonSdk.dll
Syntax
public sealed class LdJsonConverters.EvaluationReasonKindConverter : JsonConverter<EvaluationReasonKind>
Constructors
EvaluationReasonKindConverter()
Declaration
public EvaluationReasonKindConverter()
Methods
Read(ref Utf8JsonReader, Type, JsonSerializerOptions)
Read and convert the JSON to T.
Declaration
public override EvaluationReasonKind Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
Parameters
| Type | Name | Description |
|---|---|---|
| Utf8JsonReader | reader | The Utf8JsonReader to read from. |
| Type | typeToConvert | The Type being converted. |
| JsonSerializerOptions | options | The JsonSerializerOptions being used. |
Returns
| Type | Description |
|---|---|
| EvaluationReasonKind | The value that was converted. |
Overrides
Remarks
A converter may throw any Exception, but should throw
ReadJsonValue(ref Utf8JsonReader)
Declaration
public EvaluationReasonKind ReadJsonValue(ref Utf8JsonReader reader)
Parameters
| Type | Name | Description |
|---|---|---|
| Utf8JsonReader | reader |
Returns
| Type | Description |
|---|---|
| EvaluationReasonKind |
Write(Utf8JsonWriter, EvaluationReasonKind, JsonSerializerOptions)
Write the value as JSON.
Declaration
public override void Write(Utf8JsonWriter writer, EvaluationReasonKind value, JsonSerializerOptions options)
Parameters
| Type | Name | Description |
|---|---|---|
| Utf8JsonWriter | writer | The Utf8JsonWriter to write to. |
| EvaluationReasonKind | value | The value to convert. Note that the value of HandleNull determines if the converter handles null values. |
| JsonSerializerOptions | options | The JsonSerializerOptions being used. |
Overrides
Remarks
A converter may throw any Exception, but should throw
WriteJsonValue(EvaluationReasonKind, Utf8JsonWriter)
Declaration
public void WriteJsonValue(EvaluationReasonKind instance, Utf8JsonWriter writer)
Parameters
| Type | Name | Description |
|---|---|---|
| EvaluationReasonKind | instance | |
| Utf8JsonWriter | writer |