Class KVPairConverter
Namespace: Consul
Assembly: Consul.dll
public class KVPairConverter : JsonConverter
Inheritance
object ← JsonConverter ← KVPairConverter
Inherited Members
JsonConverter.WriteJson(JsonWriter, object?, JsonSerializer), JsonConverter.ReadJson(JsonReader, Type, object?, JsonSerializer), JsonConverter.CanConvert(Type), JsonConverter.CanRead, JsonConverter.CanWrite, object.Equals(object) , object.Equals(object, object) , object.GetHashCode() , object.GetType() , object.MemberwiseClone() , object.ReferenceEquals(object, object) , object.ToString()
Properties
CanWrite
Gets a value indicating whether this
public override bool CanWrite { get; }
Property Value
Methods
CanConvert(Type)
Determines whether this instance can convert the specified object type.
public override bool CanConvert(Type objectType)
Parameters
objectType Type
Type of the object.
Returns
true if this instance can convert the specified object type; otherwise, false.ReadJson(JsonReader, Type, object, JsonSerializer)
Reads the JSON representation of the object.
public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
Parameters
reader JsonReader
The
objectType Type
Type of the object.
existingValue object
The existing value of object being read.
serializer JsonSerializer
The calling serializer.
Returns
The object value.
WriteJson(JsonWriter, object, JsonSerializer)
Writes the JSON representation of the object.
public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
Parameters
writer JsonWriter
The
value object
The value.
serializer JsonSerializer
The calling serializer.