Class ValueDeltaBytesConverterJson
Inherited Members
JsonConverter.CanRead
JsonConverter.CanWrite
Namespace: Algorand.Algod.Model.Converters.Json
Assembly: Algorand.dll
Syntax
public class ValueDeltaBytesConverterJson : JsonConverter<string?>
Methods
| Edit this page View SourceReadJson(JsonReader, Type, string?, bool, JsonSerializer)
Reads the JSON representation of the object.
Declaration
public override string? ReadJson(JsonReader reader, Type objectType, string? existingValue, bool hasExistingValue, JsonSerializer serializer)
Parameters
| Type | Name | Description |
|---|---|---|
| JsonReader | reader | The Newtonsoft.Json.JsonReader to read from. |
| Type | objectType | Type of the object. |
| string | existingValue | The existing value of object being read. If there is no existing value then |
| bool | hasExistingValue | The existing value has a value. |
| JsonSerializer | serializer | The calling serializer. |
Returns
| Type | Description |
|---|---|
| string | The object value. |
Overrides
| Edit this page View SourceWriteJson(JsonWriter, string?, JsonSerializer)
Writes the JSON representation of the object.
Declaration
public override void WriteJson(JsonWriter writer, string? value, JsonSerializer serializer)
Parameters
| Type | Name | Description |
|---|---|---|
| JsonWriter | writer | The Newtonsoft.Json.JsonWriter to write to. |
| string | value | The value. |
| JsonSerializer | serializer | The calling serializer. |