-
-
Notifications
You must be signed in to change notification settings - Fork 0
localizationsharedjson LStringJsonConverter
Denis Akopyan edited this page Jul 10, 2025
·
1 revision
JSON converter for LString instances
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph Localization.Shared.JSON
Localization.Shared.JSON.LStringJsonConverter[[LStringJsonConverter]]
end
subgraph System.Text.Json.Serialization
System.Text.Json.Serialization.JsonConverter_1[[JsonConverter]]
end
System.Text.Json.Serialization.JsonConverter_1 --> Localization.Shared.JSON.LStringJsonConverter
| Returns | Name |
|---|---|
LString |
Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) |
void |
Write(Utf8JsonWriter writer, LString value, JsonSerializerOptions options) |
JSON converter for LString instances
-
JsonConverter<LString>
public LStringJsonConverter()public override LString Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)| Type | Name | Description |
|---|---|---|
ref Utf8JsonReader
|
reader | |
Type |
typeToConvert | |
JsonSerializerOptions |
options |
public override void Write(Utf8JsonWriter writer, LString value, JsonSerializerOptions options)| Type | Name | Description |
|---|---|---|
Utf8JsonWriter |
writer | |
LString |
value | |
JsonSerializerOptions |
options |
Generated with ModularDoc