C# Class RiotNet.Converters.TolerantIntEnumConverter

Converts an enum to and from JSON. If the JSON string value does not exist in the enum, the value is still converted instead of throwing an exception. Values are serialized as numbers.
Inheritance: Newtonsoft.Json.JsonConverter
Mostrar archivo Open project: aj-r/RiotNet

Public Methods

Method Description
CanConvert ( Type objectType ) : bool

Determines whether this instance can convert the specified object type.

ReadJson ( JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer ) : object

Reads the JSON representation of the enum.

WriteJson ( JsonWriter writer, object value, JsonSerializer serializer ) : void

Writes the JSON representation of the enum.

Private Methods

Method Description
IsNullableType ( Type t ) : bool

Method Details

CanConvert() public method

Determines whether this instance can convert the specified object type.
public CanConvert ( Type objectType ) : bool
objectType System.Type The type to convert.
return bool

ReadJson() public method

Reads the JSON representation of the enum.
public ReadJson ( JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer ) : object
reader Newtonsoft.Json.JsonReader The to read from.
objectType System.Type Type of the object.
existingValue object The existing value of object being read.
serializer Newtonsoft.Json.JsonSerializer The calling serializer.
return object

WriteJson() public method

Writes the JSON representation of the enum.
public WriteJson ( JsonWriter writer, object value, JsonSerializer serializer ) : void
writer Newtonsoft.Json.JsonWriter The to write to.
value object The date to write.
serializer Newtonsoft.Json.JsonSerializer The calling serializer.
return void