Class ObjectDictionaryConverter<TKey, TValue>
Json converter converting Json object into dictionary value, and using one of it's properties as the key.
Inherited Members
Newtonsoft.Json.JsonConverter.CanRead
Newtonsoft.Json.JsonConverter.CanWrite
Namespace: TehGM.Wolfringo.Messages.Serialization.Internal
Assembly: Wolfringo.Core.dll
Syntax
public class ObjectDictionaryConverter<TKey, TValue> : JsonConverter
Type Parameters
Name | Description |
---|---|
TKey | Type of the key. |
TValue | Type of the value. |
Constructors
| Improve this Doc View SourceObjectDictionaryConverter()
Declaration
public ObjectDictionaryConverter()
ObjectDictionaryConverter(String)
Declaration
public ObjectDictionaryConverter(string keyPropertyPath)
Parameters
Type | Name | Description |
---|---|---|
String | keyPropertyPath | Path of the property to use as a key. |
Methods
| Improve this Doc View SourceCanConvert(Type)
Declaration
public override bool CanConvert(Type objectType)
Parameters
Type | Name | Description |
---|---|---|
Type | objectType |
Returns
Type | Description |
---|---|
Boolean |
Overrides
Newtonsoft.Json.JsonConverter.CanConvert(System.Type)
|
Improve this Doc
View Source
ReadJson(JsonReader, Type, Object, JsonSerializer)
Declaration
public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
Parameters
Type | Name | Description |
---|---|---|
Newtonsoft.Json.JsonReader | reader | |
Type | objectType | |
Object | existingValue | |
Newtonsoft.Json.JsonSerializer | serializer |
Returns
Type | Description |
---|---|
Object |
Overrides
Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader, System.Type, System.Object, Newtonsoft.Json.JsonSerializer)
|
Improve this Doc
View Source
WriteJson(JsonWriter, Object, JsonSerializer)
Declaration
public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
Parameters
Type | Name | Description |
---|---|---|
Newtonsoft.Json.JsonWriter | writer | |
Object | value | |
Newtonsoft.Json.JsonSerializer | serializer |
Overrides
Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter, System.Object, Newtonsoft.Json.JsonSerializer)