Newtonsoft.Json.JsonSerializer.GetMatchingConverter C# (CSharp) Method

GetMatchingConverter() private method

private GetMatchingConverter ( Type type ) : JsonConverter
type Type
return JsonConverter
    internal JsonConverter GetMatchingConverter(Type type)
    {
      return GetMatchingConverter(_converters, type);
    }

Same methods

JsonSerializer::GetMatchingConverter ( IList converters, Type objectType ) : JsonConverter

Usage Example

Exemplo n.º 1
0
 internal JsonConverter GetMatchingConverter(Type type)
 {
     return(JsonSerializer.GetMatchingConverter(this._converters, type));
 }