Class G2BytesConverter
- Namespace
- Aptos
- Assembly
- Aptos.dll
public class G2BytesConverter : JsonConverter<G2Bytes>
- Inheritance
-
JsonConverterJsonConverter<G2Bytes>G2BytesConverter
- Inherited Members
-
JsonConverter.CanRead
Properties
CanWrite
Gets a value indicating whether this Newtonsoft.Json.JsonConverter can write JSON.
public override bool CanWrite { get; }
Property Value
- bool
true
if this Newtonsoft.Json.JsonConverter can write JSON; otherwise,false
.
Methods
ReadJson(JsonReader, Type, G2Bytes?, bool, JsonSerializer)
Reads the JSON representation of the object.
public override G2Bytes? ReadJson(JsonReader reader, Type objectType, G2Bytes? existingValue, bool hasExistingValue, JsonSerializer serializer)
Parameters
reader
JsonReaderThe Newtonsoft.Json.JsonReader to read from.
objectType
TypeType of the object.
existingValue
G2BytesThe existing value of object being read. If there is no existing value then
null
will be used.hasExistingValue
boolThe existing value has a value.
serializer
JsonSerializerThe calling serializer.
Returns
- G2Bytes
The object value.
WriteJson(JsonWriter, G2Bytes?, JsonSerializer)
Writes the JSON representation of the object.
public override void WriteJson(JsonWriter writer, G2Bytes? value, JsonSerializer serializer)
Parameters
writer
JsonWriterThe Newtonsoft.Json.JsonWriter to write to.
value
G2BytesThe value.
serializer
JsonSerializerThe calling serializer.