Class LdJsonConverters.BigSegmentsStatusConverter
Inheritance
LdJsonConverters.BigSegmentsStatusConverter
Inherited Members
Namespace: LaunchDarkly.Sdk.Json
Assembly: LaunchDarkly.CommonSdk.dll
Syntax
public sealed class LdJsonConverters.BigSegmentsStatusConverter : JsonConverter<BigSegmentsStatus>
Constructors
BigSegmentsStatusConverter()
Declaration
public BigSegmentsStatusConverter()
Methods
Read(ref Utf8JsonReader, Type, JsonSerializerOptions)
Read and convert the JSON to T.
Declaration
public override BigSegmentsStatus 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 |
|---|---|
| BigSegmentsStatus | The value that was converted. |
Overrides
Remarks
A converter may throw any Exception, but should throw
ReadJsonValue(ref Utf8JsonReader)
Declaration
public static BigSegmentsStatus ReadJsonValue(ref Utf8JsonReader reader)
Parameters
| Type | Name | Description |
|---|---|---|
| Utf8JsonReader | reader |
Returns
| Type | Description |
|---|---|
| BigSegmentsStatus |
Write(Utf8JsonWriter, BigSegmentsStatus, JsonSerializerOptions)
Write the value as JSON.
Declaration
public override void Write(Utf8JsonWriter writer, BigSegmentsStatus value, JsonSerializerOptions options)
Parameters
| Type | Name | Description |
|---|---|---|
| Utf8JsonWriter | writer | The Utf8JsonWriter to write to. |
| BigSegmentsStatus | 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(BigSegmentsStatus, Utf8JsonWriter)
Declaration
public static void WriteJsonValue(BigSegmentsStatus instance, Utf8JsonWriter writer)
Parameters
| Type | Name | Description |
|---|---|---|
| BigSegmentsStatus | instance | |
| Utf8JsonWriter | writer |