1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-09-20 06:05:46 +02:00
MLEM/Docs/api/MLEM.Data.Json.StaticJsonConverter-1.yml

1471 lines
56 KiB
YAML
Raw Normal View History

### YamlMime:ManagedReference
items:
- uid: MLEM.Data.Json.StaticJsonConverter`1
commentId: T:MLEM.Data.Json.StaticJsonConverter`1
id: StaticJsonConverter`1
parent: MLEM.Data.Json
children:
- MLEM.Data.Json.StaticJsonConverter`1.#ctor(System.Collections.Generic.Dictionary{System.String,`0},System.Boolean)
- MLEM.Data.Json.StaticJsonConverter`1.#ctor(System.Type,System.String)
- MLEM.Data.Json.StaticJsonConverter`1.#ctor(System.Type,System.String,System.Boolean)
- MLEM.Data.Json.StaticJsonConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,`0,System.Boolean,Newtonsoft.Json.JsonSerializer)
- MLEM.Data.Json.StaticJsonConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,`0,Newtonsoft.Json.JsonSerializer)
langs:
- csharp
- vb
name: StaticJsonConverter<T>
nameWithType: StaticJsonConverter<T>
fullName: MLEM.Data.Json.StaticJsonConverter<T>
type: Class
source:
remote:
path: MLEM.Data/Json/StaticJsonConverter.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: StaticJsonConverter
path: ../MLEM.Data/Json/StaticJsonConverter.cs
startLine: 15
assemblies:
- MLEM.Data
namespace: MLEM.Data.Json
summary: >-
A <xref href="Newtonsoft.Json.JsonConverter%601" data-throw-if-not-resolved="false"></xref> that doesn't actually serialize the object, but instead serializes the name given to it by the underlying <xref href="System.Collections.Generic.Dictionary%602" data-throw-if-not-resolved="false"></xref>.
Optionally, the name of a <xref href="System.Collections.Generic.Dictionary%602" data-throw-if-not-resolved="false"></xref> can be passed to this converter when used in the <xref href="Newtonsoft.Json.JsonConverterAttribute" data-throw-if-not-resolved="false"></xref> by passing the arguments for the <xref href="MLEM.Data.Json.StaticJsonConverter%601.%23ctor(System.Type%2cSystem.String)" data-throw-if-not-resolved="false"></xref> constructor as <xref href="Newtonsoft.Json.JsonConverterAttribute.ConverterParameters" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: 'public class StaticJsonConverter<T> : JsonConverter<T>'
typeParameters:
- id: T
description: The type of the object to convert
content.vb: Public Class StaticJsonConverter(Of T) Inherits JsonConverter(Of T)
inheritance:
- System.Object
- Newtonsoft.Json.JsonConverter
- Newtonsoft.Json.JsonConverter{{T}}
inheritedMembers:
- Newtonsoft.Json.JsonConverter{{T}}.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
- Newtonsoft.Json.JsonConverter{{T}}.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
- Newtonsoft.Json.JsonConverter{{T}}.CanConvert(System.Type)
- Newtonsoft.Json.JsonConverter.CanRead
- Newtonsoft.Json.JsonConverter.CanWrite
- System.Object.ToString
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
nameWithType.vb: StaticJsonConverter(Of T)
fullName.vb: MLEM.Data.Json.StaticJsonConverter(Of T)
name.vb: StaticJsonConverter(Of T)
- uid: MLEM.Data.Json.StaticJsonConverter`1.#ctor(System.Collections.Generic.Dictionary{System.String,`0},System.Boolean)
commentId: M:MLEM.Data.Json.StaticJsonConverter`1.#ctor(System.Collections.Generic.Dictionary{System.String,`0},System.Boolean)
id: '#ctor(System.Collections.Generic.Dictionary{System.String,`0},System.Boolean)'
parent: MLEM.Data.Json.StaticJsonConverter`1
langs:
- csharp
- vb
name: StaticJsonConverter(Dictionary<string, T>, bool)
nameWithType: StaticJsonConverter<T>.StaticJsonConverter(Dictionary<string, T>, bool)
fullName: MLEM.Data.Json.StaticJsonConverter<T>.StaticJsonConverter(System.Collections.Generic.Dictionary<string, T>, bool)
type: Constructor
source:
remote:
path: MLEM.Data/Json/StaticJsonConverter.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: .ctor
path: ../MLEM.Data/Json/StaticJsonConverter.cs
startLine: 26
assemblies:
- MLEM.Data
namespace: MLEM.Data.Json
summary: Creates a new static json converter using the given underlying <xref href="System.Collections.Generic.Dictionary%602" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: public StaticJsonConverter(Dictionary<string, T> entries, bool throwOnRead = false)
parameters:
- id: entries
type: System.Collections.Generic.Dictionary{System.String,{T}}
description: The dictionary to use
- id: throwOnRead
type: System.Boolean
description: Whether to throw a <xref href="System.Collections.Generic.KeyNotFoundException" data-throw-if-not-resolved="false"></xref> in <xref href="MLEM.Data.Json.StaticJsonConverter%601.ReadJson(Newtonsoft.Json.JsonReader%2cSystem.Type%2c%600%2cSystem.Boolean%2cNewtonsoft.Json.JsonSerializer)" data-throw-if-not-resolved="false"></xref> if a key is missing, or throw a <xref href="Newtonsoft.Json.JsonSerializationException" data-throw-if-not-resolved="false"></xref> if a stored json value is not a string. If this is <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a>, <xref href="MLEM.Data.Json.StaticJsonConverter%601.ReadJson(Newtonsoft.Json.JsonReader%2cSystem.Type%2c%600%2cSystem.Boolean%2cNewtonsoft.Json.JsonSerializer)" data-throw-if-not-resolved="false"></xref> returns <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/default">default</a> instead.
content.vb: Public Sub New(entries As Dictionary(Of String, T), throwOnRead As Boolean = False)
overload: MLEM.Data.Json.StaticJsonConverter`1.#ctor*
nameWithType.vb: StaticJsonConverter(Of T).New(Dictionary(Of String, T), Boolean)
fullName.vb: MLEM.Data.Json.StaticJsonConverter(Of T).New(System.Collections.Generic.Dictionary(Of String, T), Boolean)
name.vb: New(Dictionary(Of String, T), Boolean)
- uid: MLEM.Data.Json.StaticJsonConverter`1.#ctor(System.Type,System.String)
commentId: M:MLEM.Data.Json.StaticJsonConverter`1.#ctor(System.Type,System.String)
id: '#ctor(System.Type,System.String)'
parent: MLEM.Data.Json.StaticJsonConverter`1
langs:
- csharp
- vb
name: StaticJsonConverter(Type, string)
nameWithType: StaticJsonConverter<T>.StaticJsonConverter(Type, string)
fullName: MLEM.Data.Json.StaticJsonConverter<T>.StaticJsonConverter(System.Type, string)
type: Constructor
source:
remote:
path: MLEM.Data/Json/StaticJsonConverter.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: .ctor
path: ../MLEM.Data/Json/StaticJsonConverter.cs
startLine: 37
assemblies:
- MLEM.Data
namespace: MLEM.Data.Json
summary: Creates a new static json converter by finding the underlying <xref href="System.Collections.Generic.Dictionary%602" data-throw-if-not-resolved="false"></xref> from the given type and member name
example: []
syntax:
content: public StaticJsonConverter(Type type, string memberName)
parameters:
- id: type
type: System.Type
description: The type that the dictionary is declared in
- id: memberName
type: System.String
description: The name of the dictionary itself
content.vb: Public Sub New(type As Type, memberName As String)
overload: MLEM.Data.Json.StaticJsonConverter`1.#ctor*
nameWithType.vb: StaticJsonConverter(Of T).New(Type, String)
fullName.vb: MLEM.Data.Json.StaticJsonConverter(Of T).New(System.Type, String)
name.vb: New(Type, String)
- uid: MLEM.Data.Json.StaticJsonConverter`1.#ctor(System.Type,System.String,System.Boolean)
commentId: M:MLEM.Data.Json.StaticJsonConverter`1.#ctor(System.Type,System.String,System.Boolean)
id: '#ctor(System.Type,System.String,System.Boolean)'
parent: MLEM.Data.Json.StaticJsonConverter`1
langs:
- csharp
- vb
name: StaticJsonConverter(Type, string, bool)
nameWithType: StaticJsonConverter<T>.StaticJsonConverter(Type, string, bool)
fullName: MLEM.Data.Json.StaticJsonConverter<T>.StaticJsonConverter(System.Type, string, bool)
type: Constructor
source:
remote:
path: MLEM.Data/Json/StaticJsonConverter.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: .ctor
path: ../MLEM.Data/Json/StaticJsonConverter.cs
startLine: 49
assemblies:
- MLEM.Data
namespace: MLEM.Data.Json
summary: Creates a new static json converter by finding the underlying <xref href="System.Collections.Generic.Dictionary%602" data-throw-if-not-resolved="false"></xref> from the given type and member name
example: []
syntax:
content: public StaticJsonConverter(Type type, string memberName, bool throwOnRead)
parameters:
- id: type
type: System.Type
description: The type that the dictionary is declared in
- id: memberName
type: System.String
description: The name of the dictionary itself
- id: throwOnRead
type: System.Boolean
description: Whether to throw a <xref href="System.Collections.Generic.KeyNotFoundException" data-throw-if-not-resolved="false"></xref> in <xref href="MLEM.Data.Json.StaticJsonConverter%601.ReadJson(Newtonsoft.Json.JsonReader%2cSystem.Type%2c%600%2cSystem.Boolean%2cNewtonsoft.Json.JsonSerializer)" data-throw-if-not-resolved="false"></xref> if a key is missing, or throw a <xref href="Newtonsoft.Json.JsonSerializationException" data-throw-if-not-resolved="false"></xref> if a stored json value is not a string. If this is <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a>, <xref href="MLEM.Data.Json.StaticJsonConverter%601.ReadJson(Newtonsoft.Json.JsonReader%2cSystem.Type%2c%600%2cSystem.Boolean%2cNewtonsoft.Json.JsonSerializer)" data-throw-if-not-resolved="false"></xref> returns <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/default">default</a> instead.
content.vb: Public Sub New(type As Type, memberName As String, throwOnRead As Boolean)
overload: MLEM.Data.Json.StaticJsonConverter`1.#ctor*
nameWithType.vb: StaticJsonConverter(Of T).New(Type, String, Boolean)
fullName.vb: MLEM.Data.Json.StaticJsonConverter(Of T).New(System.Type, String, Boolean)
name.vb: New(Type, String, Boolean)
- uid: MLEM.Data.Json.StaticJsonConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,`0,Newtonsoft.Json.JsonSerializer)
commentId: M:MLEM.Data.Json.StaticJsonConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,`0,Newtonsoft.Json.JsonSerializer)
id: WriteJson(Newtonsoft.Json.JsonWriter,`0,Newtonsoft.Json.JsonSerializer)
parent: MLEM.Data.Json.StaticJsonConverter`1
langs:
- csharp
- vb
name: WriteJson(JsonWriter, T, JsonSerializer)
nameWithType: StaticJsonConverter<T>.WriteJson(JsonWriter, T, JsonSerializer)
fullName: MLEM.Data.Json.StaticJsonConverter<T>.WriteJson(Newtonsoft.Json.JsonWriter, T, Newtonsoft.Json.JsonSerializer)
type: Method
source:
remote:
path: MLEM.Data/Json/StaticJsonConverter.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: WriteJson
path: ../MLEM.Data/Json/StaticJsonConverter.cs
startLine: 59
assemblies:
- MLEM.Data
namespace: MLEM.Data.Json
summary: Writes the JSON representation of the object.
example: []
syntax:
content: public override void WriteJson(JsonWriter writer, T value, JsonSerializer serializer)
parameters:
- id: writer
type: Newtonsoft.Json.JsonWriter
description: The <xref href="Newtonsoft.Json.JsonWriter" data-throw-if-not-resolved="false"></xref> to write to.
- id: value
type: '{T}'
description: The value.
- id: serializer
type: Newtonsoft.Json.JsonSerializer
description: The calling serializer.
content.vb: Public Overrides Sub WriteJson(writer As JsonWriter, value As T, serializer As JsonSerializer)
overridden: Newtonsoft.Json.JsonConverter{{T}}.WriteJson(Newtonsoft.Json.JsonWriter,{T},Newtonsoft.Json.JsonSerializer)
overload: MLEM.Data.Json.StaticJsonConverter`1.WriteJson*
nameWithType.vb: StaticJsonConverter(Of T).WriteJson(JsonWriter, T, JsonSerializer)
fullName.vb: MLEM.Data.Json.StaticJsonConverter(Of T).WriteJson(Newtonsoft.Json.JsonWriter, T, Newtonsoft.Json.JsonSerializer)
- uid: MLEM.Data.Json.StaticJsonConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,`0,System.Boolean,Newtonsoft.Json.JsonSerializer)
commentId: M:MLEM.Data.Json.StaticJsonConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,`0,System.Boolean,Newtonsoft.Json.JsonSerializer)
id: ReadJson(Newtonsoft.Json.JsonReader,System.Type,`0,System.Boolean,Newtonsoft.Json.JsonSerializer)
parent: MLEM.Data.Json.StaticJsonConverter`1
langs:
- csharp
- vb
name: ReadJson(JsonReader, Type, T, bool, JsonSerializer)
nameWithType: StaticJsonConverter<T>.ReadJson(JsonReader, Type, T, bool, JsonSerializer)
fullName: MLEM.Data.Json.StaticJsonConverter<T>.ReadJson(Newtonsoft.Json.JsonReader, System.Type, T, bool, Newtonsoft.Json.JsonSerializer)
type: Method
source:
remote:
path: MLEM.Data/Json/StaticJsonConverter.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: ReadJson
path: ../MLEM.Data/Json/StaticJsonConverter.cs
startLine: 76
assemblies:
- MLEM.Data
namespace: MLEM.Data.Json
summary: Reads the JSON representation of the object.
example: []
syntax:
content: public override T ReadJson(JsonReader reader, Type objectType, T existingValue, bool hasExistingValue, JsonSerializer serializer)
parameters:
- id: reader
type: Newtonsoft.Json.JsonReader
description: The <xref href="Newtonsoft.Json.JsonReader" data-throw-if-not-resolved="false"></xref> to read from.
- id: objectType
type: System.Type
description: Type of the object.
- id: existingValue
type: '{T}'
description: The existing value of object being read. If there is no existing value then <code>null</code> will be used.
- id: hasExistingValue
type: System.Boolean
description: The existing value has a value.
- id: serializer
type: Newtonsoft.Json.JsonSerializer
description: The calling serializer.
return:
type: '{T}'
description: The object value.
content.vb: Public Overrides Function ReadJson(reader As JsonReader, objectType As Type, existingValue As T, hasExistingValue As Boolean, serializer As JsonSerializer) As T
overridden: Newtonsoft.Json.JsonConverter{{T}}.ReadJson(Newtonsoft.Json.JsonReader,System.Type,{T},System.Boolean,Newtonsoft.Json.JsonSerializer)
overload: MLEM.Data.Json.StaticJsonConverter`1.ReadJson*
nameWithType.vb: StaticJsonConverter(Of T).ReadJson(JsonReader, Type, T, Boolean, JsonSerializer)
fullName.vb: MLEM.Data.Json.StaticJsonConverter(Of T).ReadJson(Newtonsoft.Json.JsonReader, System.Type, T, Boolean, Newtonsoft.Json.JsonSerializer)
name.vb: ReadJson(JsonReader, Type, T, Boolean, JsonSerializer)
references:
- uid: Newtonsoft.Json.JsonConverter`1
commentId: T:Newtonsoft.Json.JsonConverter`1
isExternal: true
name: JsonConverter<T>
nameWithType: JsonConverter<T>
fullName: Newtonsoft.Json.JsonConverter<T>
nameWithType.vb: JsonConverter(Of T)
fullName.vb: Newtonsoft.Json.JsonConverter(Of T)
name.vb: JsonConverter(Of T)
spec.csharp:
- uid: Newtonsoft.Json.JsonConverter`1
name: JsonConverter
isExternal: true
- name: <
- name: T
- name: '>'
spec.vb:
- uid: Newtonsoft.Json.JsonConverter`1
name: JsonConverter
isExternal: true
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: System.Collections.Generic.Dictionary`2
commentId: T:System.Collections.Generic.Dictionary`2
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
name: Dictionary<TKey, TValue>
nameWithType: Dictionary<TKey, TValue>
fullName: System.Collections.Generic.Dictionary<TKey, TValue>
nameWithType.vb: Dictionary(Of TKey, TValue)
fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue)
name.vb: Dictionary(Of TKey, TValue)
spec.csharp:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: <
- name: TKey
- name: ','
- name: " "
- name: TValue
- name: '>'
spec.vb:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: (
- name: Of
- name: " "
- name: TKey
- name: ','
- name: " "
- name: TValue
- name: )
- uid: Newtonsoft.Json.JsonConverterAttribute
commentId: T:Newtonsoft.Json.JsonConverterAttribute
isExternal: true
name: JsonConverterAttribute
nameWithType: JsonConverterAttribute
fullName: Newtonsoft.Json.JsonConverterAttribute
- uid: MLEM.Data.Json.StaticJsonConverter`1.#ctor(System.Type,System.String)
commentId: M:MLEM.Data.Json.StaticJsonConverter`1.#ctor(System.Type,System.String)
isExternal: true
href: MLEM.Data.Json.StaticJsonConverter-1.html#MLEM_Data_Json_StaticJsonConverter_1__ctor_System_Type_System_String_
name: StaticJsonConverter(Type, string)
nameWithType: StaticJsonConverter<T>.StaticJsonConverter(Type, string)
fullName: MLEM.Data.Json.StaticJsonConverter<T>.StaticJsonConverter(System.Type, string)
nameWithType.vb: StaticJsonConverter(Of T).New(Type, String)
fullName.vb: MLEM.Data.Json.StaticJsonConverter(Of T).New(System.Type, String)
name.vb: New(Type, String)
spec.csharp:
- uid: MLEM.Data.Json.StaticJsonConverter`1.#ctor(System.Type,System.String)
name: StaticJsonConverter
href: MLEM.Data.Json.StaticJsonConverter-1.html#MLEM_Data_Json_StaticJsonConverter_1__ctor_System_Type_System_String_
- name: (
- uid: System.Type
name: Type
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
- name: ','
- name: " "
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )
spec.vb:
- name: New
- name: (
- uid: System.Type
name: Type
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
- name: ','
- name: " "
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )
- uid: Newtonsoft.Json.JsonConverterAttribute.ConverterParameters
commentId: P:Newtonsoft.Json.JsonConverterAttribute.ConverterParameters
isExternal: true
name: ConverterParameters
nameWithType: JsonConverterAttribute.ConverterParameters
fullName: Newtonsoft.Json.JsonConverterAttribute.ConverterParameters
- uid: MLEM.Data.Json
commentId: N:MLEM.Data.Json
href: MLEM.html
name: MLEM.Data.Json
nameWithType: MLEM.Data.Json
fullName: MLEM.Data.Json
spec.csharp:
- uid: MLEM
name: MLEM
href: MLEM.html
- name: .
- uid: MLEM.Data
name: Data
href: MLEM.Data.html
- name: .
- uid: MLEM.Data.Json
name: Json
href: MLEM.Data.Json.html
spec.vb:
- uid: MLEM
name: MLEM
href: MLEM.html
- name: .
- uid: MLEM.Data
name: Data
href: MLEM.Data.html
- name: .
- uid: MLEM.Data.Json
name: Json
href: MLEM.Data.Json.html
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
- uid: Newtonsoft.Json.JsonConverter
commentId: T:Newtonsoft.Json.JsonConverter
parent: Newtonsoft.Json
isExternal: true
name: JsonConverter
nameWithType: JsonConverter
fullName: Newtonsoft.Json.JsonConverter
- uid: Newtonsoft.Json.JsonConverter{{T}}
commentId: T:Newtonsoft.Json.JsonConverter{`0}
parent: Newtonsoft.Json
definition: Newtonsoft.Json.JsonConverter`1
name: JsonConverter<T>
nameWithType: JsonConverter<T>
fullName: Newtonsoft.Json.JsonConverter<T>
nameWithType.vb: JsonConverter(Of T)
fullName.vb: Newtonsoft.Json.JsonConverter(Of T)
name.vb: JsonConverter(Of T)
spec.csharp:
- uid: Newtonsoft.Json.JsonConverter`1
name: JsonConverter
isExternal: true
- name: <
- name: T
- name: '>'
spec.vb:
- uid: Newtonsoft.Json.JsonConverter`1
name: JsonConverter
isExternal: true
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: Newtonsoft.Json.JsonConverter{{T}}.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
commentId: M:Newtonsoft.Json.JsonConverter{`0}.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
parent: Newtonsoft.Json.JsonConverter{{T}}
definition: Newtonsoft.Json.JsonConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
href: https://learn.microsoft.com/dotnet/api/system.object
name: WriteJson(JsonWriter, object, JsonSerializer)
nameWithType: JsonConverter<T>.WriteJson(JsonWriter, object, JsonSerializer)
fullName: Newtonsoft.Json.JsonConverter<T>.WriteJson(Newtonsoft.Json.JsonWriter, object, Newtonsoft.Json.JsonSerializer)
nameWithType.vb: JsonConverter(Of T).WriteJson(JsonWriter, Object, JsonSerializer)
fullName.vb: Newtonsoft.Json.JsonConverter(Of T).WriteJson(Newtonsoft.Json.JsonWriter, Object, Newtonsoft.Json.JsonSerializer)
name.vb: WriteJson(JsonWriter, Object, JsonSerializer)
spec.csharp:
- uid: Newtonsoft.Json.JsonConverter{`0}.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
name: WriteJson
isExternal: true
- name: (
- uid: Newtonsoft.Json.JsonWriter
name: JsonWriter
isExternal: true
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: Newtonsoft.Json.JsonSerializer
name: JsonSerializer
isExternal: true
- name: )
spec.vb:
- uid: Newtonsoft.Json.JsonConverter{`0}.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
name: WriteJson
isExternal: true
- name: (
- uid: Newtonsoft.Json.JsonWriter
name: JsonWriter
isExternal: true
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: Newtonsoft.Json.JsonSerializer
name: JsonSerializer
isExternal: true
- name: )
- uid: Newtonsoft.Json.JsonConverter{{T}}.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
commentId: M:Newtonsoft.Json.JsonConverter{`0}.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
parent: Newtonsoft.Json.JsonConverter{{T}}
definition: Newtonsoft.Json.JsonConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
href: https://learn.microsoft.com/dotnet/api/system.type
name: ReadJson(JsonReader, Type, object, JsonSerializer)
nameWithType: JsonConverter<T>.ReadJson(JsonReader, Type, object, JsonSerializer)
fullName: Newtonsoft.Json.JsonConverter<T>.ReadJson(Newtonsoft.Json.JsonReader, System.Type, object, Newtonsoft.Json.JsonSerializer)
nameWithType.vb: JsonConverter(Of T).ReadJson(JsonReader, Type, Object, JsonSerializer)
fullName.vb: Newtonsoft.Json.JsonConverter(Of T).ReadJson(Newtonsoft.Json.JsonReader, System.Type, Object, Newtonsoft.Json.JsonSerializer)
name.vb: ReadJson(JsonReader, Type, Object, JsonSerializer)
spec.csharp:
- uid: Newtonsoft.Json.JsonConverter{`0}.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
name: ReadJson
isExternal: true
- name: (
- uid: Newtonsoft.Json.JsonReader
name: JsonReader
isExternal: true
- name: ','
- name: " "
- uid: System.Type
name: Type
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: Newtonsoft.Json.JsonSerializer
name: JsonSerializer
isExternal: true
- name: )
spec.vb:
- uid: Newtonsoft.Json.JsonConverter{`0}.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
name: ReadJson
isExternal: true
- name: (
- uid: Newtonsoft.Json.JsonReader
name: JsonReader
isExternal: true
- name: ','
- name: " "
- uid: System.Type
name: Type
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: Newtonsoft.Json.JsonSerializer
name: JsonSerializer
isExternal: true
- name: )
- uid: Newtonsoft.Json.JsonConverter{{T}}.CanConvert(System.Type)
commentId: M:Newtonsoft.Json.JsonConverter{`0}.CanConvert(System.Type)
parent: Newtonsoft.Json.JsonConverter{{T}}
definition: Newtonsoft.Json.JsonConverter`1.CanConvert(System.Type)
href: https://learn.microsoft.com/dotnet/api/system.type
name: CanConvert(Type)
nameWithType: JsonConverter<T>.CanConvert(Type)
fullName: Newtonsoft.Json.JsonConverter<T>.CanConvert(System.Type)
nameWithType.vb: JsonConverter(Of T).CanConvert(Type)
fullName.vb: Newtonsoft.Json.JsonConverter(Of T).CanConvert(System.Type)
spec.csharp:
- uid: Newtonsoft.Json.JsonConverter{`0}.CanConvert(System.Type)
name: CanConvert
isExternal: true
- name: (
- uid: System.Type
name: Type
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
- name: )
spec.vb:
- uid: Newtonsoft.Json.JsonConverter{`0}.CanConvert(System.Type)
name: CanConvert
isExternal: true
- name: (
- uid: System.Type
name: Type
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
- name: )
- uid: Newtonsoft.Json.JsonConverter.CanRead
commentId: P:Newtonsoft.Json.JsonConverter.CanRead
parent: Newtonsoft.Json.JsonConverter
isExternal: true
name: CanRead
nameWithType: JsonConverter.CanRead
fullName: Newtonsoft.Json.JsonConverter.CanRead
- uid: Newtonsoft.Json.JsonConverter.CanWrite
commentId: P:Newtonsoft.Json.JsonConverter.CanWrite
parent: Newtonsoft.Json.JsonConverter
isExternal: true
name: CanWrite
nameWithType: JsonConverter.CanWrite
fullName: Newtonsoft.Json.JsonConverter.CanWrite
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
name: ToString()
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name: Equals(object)
nameWithType: object.Equals(object)
fullName: object.Equals(object)
nameWithType.vb: Object.Equals(Object)
fullName.vb: Object.Equals(Object)
name.vb: Equals(Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name: Equals(object, object)
nameWithType: object.Equals(object, object)
fullName: object.Equals(object, object)
nameWithType.vb: Object.Equals(Object, Object)
fullName.vb: Object.Equals(Object, Object)
name.vb: Equals(Object, Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name: ReferenceEquals(object, object)
nameWithType: object.ReferenceEquals(object, object)
fullName: object.ReferenceEquals(object, object)
nameWithType.vb: Object.ReferenceEquals(Object, Object)
fullName.vb: Object.ReferenceEquals(Object, Object)
name.vb: ReferenceEquals(Object, Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
name: GetHashCode()
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
name: GetType()
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
name: MemberwiseClone()
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- uid: Newtonsoft.Json
commentId: N:Newtonsoft.Json
isExternal: true
name: Newtonsoft.Json
nameWithType: Newtonsoft.Json
fullName: Newtonsoft.Json
spec.csharp:
- uid: Newtonsoft
name: Newtonsoft
isExternal: true
- name: .
- uid: Newtonsoft.Json
name: Json
isExternal: true
spec.vb:
- uid: Newtonsoft
name: Newtonsoft
isExternal: true
- name: .
- uid: Newtonsoft.Json
name: Json
isExternal: true
- uid: Newtonsoft.Json.JsonConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
commentId: M:Newtonsoft.Json.JsonConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
name: WriteJson(JsonWriter, object, JsonSerializer)
nameWithType: JsonConverter<T>.WriteJson(JsonWriter, object, JsonSerializer)
fullName: Newtonsoft.Json.JsonConverter<T>.WriteJson(Newtonsoft.Json.JsonWriter, object, Newtonsoft.Json.JsonSerializer)
nameWithType.vb: JsonConverter(Of T).WriteJson(JsonWriter, Object, JsonSerializer)
fullName.vb: Newtonsoft.Json.JsonConverter(Of T).WriteJson(Newtonsoft.Json.JsonWriter, Object, Newtonsoft.Json.JsonSerializer)
name.vb: WriteJson(JsonWriter, Object, JsonSerializer)
spec.csharp:
- uid: Newtonsoft.Json.JsonConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
name: WriteJson
isExternal: true
- name: (
- uid: Newtonsoft.Json.JsonWriter
name: JsonWriter
isExternal: true
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: Newtonsoft.Json.JsonSerializer
name: JsonSerializer
isExternal: true
- name: )
spec.vb:
- uid: Newtonsoft.Json.JsonConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
name: WriteJson
isExternal: true
- name: (
- uid: Newtonsoft.Json.JsonWriter
name: JsonWriter
isExternal: true
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: Newtonsoft.Json.JsonSerializer
name: JsonSerializer
isExternal: true
- name: )
- uid: Newtonsoft.Json.JsonConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
commentId: M:Newtonsoft.Json.JsonConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
name: ReadJson(JsonReader, Type, object, JsonSerializer)
nameWithType: JsonConverter<T>.ReadJson(JsonReader, Type, object, JsonSerializer)
fullName: Newtonsoft.Json.JsonConverter<T>.ReadJson(Newtonsoft.Json.JsonReader, System.Type, object, Newtonsoft.Json.JsonSerializer)
nameWithType.vb: JsonConverter(Of T).ReadJson(JsonReader, Type, Object, JsonSerializer)
fullName.vb: Newtonsoft.Json.JsonConverter(Of T).ReadJson(Newtonsoft.Json.JsonReader, System.Type, Object, Newtonsoft.Json.JsonSerializer)
name.vb: ReadJson(JsonReader, Type, Object, JsonSerializer)
spec.csharp:
- uid: Newtonsoft.Json.JsonConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
name: ReadJson
isExternal: true
- name: (
- uid: Newtonsoft.Json.JsonReader
name: JsonReader
isExternal: true
- name: ','
- name: " "
- uid: System.Type
name: Type
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: Newtonsoft.Json.JsonSerializer
name: JsonSerializer
isExternal: true
- name: )
spec.vb:
- uid: Newtonsoft.Json.JsonConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
name: ReadJson
isExternal: true
- name: (
- uid: Newtonsoft.Json.JsonReader
name: JsonReader
isExternal: true
- name: ','
- name: " "
- uid: System.Type
name: Type
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: Newtonsoft.Json.JsonSerializer
name: JsonSerializer
isExternal: true
- name: )
- uid: Newtonsoft.Json.JsonConverter`1.CanConvert(System.Type)
commentId: M:Newtonsoft.Json.JsonConverter`1.CanConvert(System.Type)
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
name: CanConvert(Type)
nameWithType: JsonConverter<T>.CanConvert(Type)
fullName: Newtonsoft.Json.JsonConverter<T>.CanConvert(System.Type)
nameWithType.vb: JsonConverter(Of T).CanConvert(Type)
fullName.vb: Newtonsoft.Json.JsonConverter(Of T).CanConvert(System.Type)
spec.csharp:
- uid: Newtonsoft.Json.JsonConverter`1.CanConvert(System.Type)
name: CanConvert
isExternal: true
- name: (
- uid: System.Type
name: Type
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
- name: )
spec.vb:
- uid: Newtonsoft.Json.JsonConverter`1.CanConvert(System.Type)
name: CanConvert
isExternal: true
- name: (
- uid: System.Type
name: Type
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
- name: )
- uid: System.Collections.Generic.KeyNotFoundException
commentId: T:System.Collections.Generic.KeyNotFoundException
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keynotfoundexception
name: KeyNotFoundException
nameWithType: KeyNotFoundException
fullName: System.Collections.Generic.KeyNotFoundException
- uid: MLEM.Data.Json.StaticJsonConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,`0,System.Boolean,Newtonsoft.Json.JsonSerializer)
commentId: M:MLEM.Data.Json.StaticJsonConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,`0,System.Boolean,Newtonsoft.Json.JsonSerializer)
isExternal: true
href: MLEM.Data.Json.StaticJsonConverter-1.html#MLEM_Data_Json_StaticJsonConverter_1_ReadJson_Newtonsoft_Json_JsonReader_System_Type__0_System_Boolean_Newtonsoft_Json_JsonSerializer_
name: ReadJson(JsonReader, Type, T, bool, JsonSerializer)
nameWithType: StaticJsonConverter<T>.ReadJson(JsonReader, Type, T, bool, JsonSerializer)
fullName: MLEM.Data.Json.StaticJsonConverter<T>.ReadJson(Newtonsoft.Json.JsonReader, System.Type, T, bool, Newtonsoft.Json.JsonSerializer)
nameWithType.vb: StaticJsonConverter(Of T).ReadJson(JsonReader, Type, T, Boolean, JsonSerializer)
fullName.vb: MLEM.Data.Json.StaticJsonConverter(Of T).ReadJson(Newtonsoft.Json.JsonReader, System.Type, T, Boolean, Newtonsoft.Json.JsonSerializer)
name.vb: ReadJson(JsonReader, Type, T, Boolean, JsonSerializer)
spec.csharp:
- uid: MLEM.Data.Json.StaticJsonConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,`0,System.Boolean,Newtonsoft.Json.JsonSerializer)
name: ReadJson
href: MLEM.Data.Json.StaticJsonConverter-1.html#MLEM_Data_Json_StaticJsonConverter_1_ReadJson_Newtonsoft_Json_JsonReader_System_Type__0_System_Boolean_Newtonsoft_Json_JsonSerializer_
- name: (
- uid: Newtonsoft.Json.JsonReader
name: JsonReader
isExternal: true
- name: ','
- name: " "
- uid: System.Type
name: Type
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
- name: ','
- name: " "
- name: T
- name: ','
- name: " "
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: ','
- name: " "
- uid: Newtonsoft.Json.JsonSerializer
name: JsonSerializer
isExternal: true
- name: )
spec.vb:
- uid: MLEM.Data.Json.StaticJsonConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,`0,System.Boolean,Newtonsoft.Json.JsonSerializer)
name: ReadJson
href: MLEM.Data.Json.StaticJsonConverter-1.html#MLEM_Data_Json_StaticJsonConverter_1_ReadJson_Newtonsoft_Json_JsonReader_System_Type__0_System_Boolean_Newtonsoft_Json_JsonSerializer_
- name: (
- uid: Newtonsoft.Json.JsonReader
name: JsonReader
isExternal: true
- name: ','
- name: " "
- uid: System.Type
name: Type
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
- name: ','
- name: " "
- name: T
- name: ','
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: ','
- name: " "
- uid: Newtonsoft.Json.JsonSerializer
name: JsonSerializer
isExternal: true
- name: )
- uid: Newtonsoft.Json.JsonSerializationException
commentId: T:Newtonsoft.Json.JsonSerializationException
isExternal: true
name: JsonSerializationException
nameWithType: JsonSerializationException
fullName: Newtonsoft.Json.JsonSerializationException
- uid: MLEM.Data.Json.StaticJsonConverter`1.#ctor*
commentId: Overload:MLEM.Data.Json.StaticJsonConverter`1.#ctor
href: MLEM.Data.Json.StaticJsonConverter-1.html#MLEM_Data_Json_StaticJsonConverter_1__ctor_System_Collections_Generic_Dictionary_System_String__0__System_Boolean_
name: StaticJsonConverter
nameWithType: StaticJsonConverter<T>.StaticJsonConverter
fullName: MLEM.Data.Json.StaticJsonConverter<T>.StaticJsonConverter
nameWithType.vb: StaticJsonConverter(Of T).New
fullName.vb: MLEM.Data.Json.StaticJsonConverter(Of T).New
name.vb: New
- uid: System.Collections.Generic.Dictionary{System.String,{T}}
commentId: T:System.Collections.Generic.Dictionary{System.String,`0}
parent: System.Collections.Generic
definition: System.Collections.Generic.Dictionary`2
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
name: Dictionary<string, T>
nameWithType: Dictionary<string, T>
fullName: System.Collections.Generic.Dictionary<string, T>
nameWithType.vb: Dictionary(Of String, T)
fullName.vb: System.Collections.Generic.Dictionary(Of String, T)
name.vb: Dictionary(Of String, T)
spec.csharp:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: <
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- name: T
- name: '>'
spec.vb:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: (
- name: Of
- name: " "
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- name: T
- name: )
- uid: System.Boolean
commentId: T:System.Boolean
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
name: bool
nameWithType: bool
fullName: bool
nameWithType.vb: Boolean
fullName.vb: Boolean
name.vb: Boolean
- uid: System.Collections.Generic
commentId: N:System.Collections.Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System.Collections.Generic
nameWithType: System.Collections.Generic
fullName: System.Collections.Generic
spec.csharp:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- name: .
- uid: System.Collections.Generic
name: Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
spec.vb:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- name: .
- uid: System.Collections.Generic
name: Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
- uid: System.Type
commentId: T:System.Type
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
name: Type
nameWithType: Type
fullName: System.Type
- uid: System.String
commentId: T:System.String
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
name: string
nameWithType: string
fullName: string
nameWithType.vb: String
fullName.vb: String
name.vb: String
- uid: Newtonsoft.Json.JsonWriter
commentId: T:Newtonsoft.Json.JsonWriter
parent: Newtonsoft.Json
isExternal: true
name: JsonWriter
nameWithType: JsonWriter
fullName: Newtonsoft.Json.JsonWriter
- uid: Newtonsoft.Json.JsonConverter{{T}}.WriteJson(Newtonsoft.Json.JsonWriter,{T},Newtonsoft.Json.JsonSerializer)
commentId: M:Newtonsoft.Json.JsonConverter{`0}.WriteJson(Newtonsoft.Json.JsonWriter,`0,Newtonsoft.Json.JsonSerializer)
parent: Newtonsoft.Json.JsonConverter{{T}}
definition: Newtonsoft.Json.JsonConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,`0,Newtonsoft.Json.JsonSerializer)
name: WriteJson(JsonWriter, T, JsonSerializer)
nameWithType: JsonConverter<T>.WriteJson(JsonWriter, T, JsonSerializer)
fullName: Newtonsoft.Json.JsonConverter<T>.WriteJson(Newtonsoft.Json.JsonWriter, T, Newtonsoft.Json.JsonSerializer)
nameWithType.vb: JsonConverter(Of T).WriteJson(JsonWriter, T, JsonSerializer)
fullName.vb: Newtonsoft.Json.JsonConverter(Of T).WriteJson(Newtonsoft.Json.JsonWriter, T, Newtonsoft.Json.JsonSerializer)
spec.csharp:
- uid: Newtonsoft.Json.JsonConverter{`0}.WriteJson(Newtonsoft.Json.JsonWriter,`0,Newtonsoft.Json.JsonSerializer)
name: WriteJson
isExternal: true
- name: (
- uid: Newtonsoft.Json.JsonWriter
name: JsonWriter
isExternal: true
- name: ','
- name: " "
- name: T
- name: ','
- name: " "
- uid: Newtonsoft.Json.JsonSerializer
name: JsonSerializer
isExternal: true
- name: )
spec.vb:
- uid: Newtonsoft.Json.JsonConverter{`0}.WriteJson(Newtonsoft.Json.JsonWriter,`0,Newtonsoft.Json.JsonSerializer)
name: WriteJson
isExternal: true
- name: (
- uid: Newtonsoft.Json.JsonWriter
name: JsonWriter
isExternal: true
- name: ','
- name: " "
- name: T
- name: ','
- name: " "
- uid: Newtonsoft.Json.JsonSerializer
name: JsonSerializer
isExternal: true
- name: )
- uid: MLEM.Data.Json.StaticJsonConverter`1.WriteJson*
commentId: Overload:MLEM.Data.Json.StaticJsonConverter`1.WriteJson
href: MLEM.Data.Json.StaticJsonConverter-1.html#MLEM_Data_Json_StaticJsonConverter_1_WriteJson_Newtonsoft_Json_JsonWriter__0_Newtonsoft_Json_JsonSerializer_
name: WriteJson
nameWithType: StaticJsonConverter<T>.WriteJson
fullName: MLEM.Data.Json.StaticJsonConverter<T>.WriteJson
nameWithType.vb: StaticJsonConverter(Of T).WriteJson
fullName.vb: MLEM.Data.Json.StaticJsonConverter(Of T).WriteJson
- uid: '{T}'
commentId: '!:T'
definition: T
name: T
nameWithType: T
fullName: T
- uid: Newtonsoft.Json.JsonSerializer
commentId: T:Newtonsoft.Json.JsonSerializer
parent: Newtonsoft.Json
isExternal: true
name: JsonSerializer
nameWithType: JsonSerializer
fullName: Newtonsoft.Json.JsonSerializer
- uid: Newtonsoft.Json.JsonConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,`0,Newtonsoft.Json.JsonSerializer)
commentId: M:Newtonsoft.Json.JsonConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,`0,Newtonsoft.Json.JsonSerializer)
isExternal: true
name: WriteJson(JsonWriter, T, JsonSerializer)
nameWithType: JsonConverter<T>.WriteJson(JsonWriter, T, JsonSerializer)
fullName: Newtonsoft.Json.JsonConverter<T>.WriteJson(Newtonsoft.Json.JsonWriter, T, Newtonsoft.Json.JsonSerializer)
nameWithType.vb: JsonConverter(Of T).WriteJson(JsonWriter, T, JsonSerializer)
fullName.vb: Newtonsoft.Json.JsonConverter(Of T).WriteJson(Newtonsoft.Json.JsonWriter, T, Newtonsoft.Json.JsonSerializer)
spec.csharp:
- uid: Newtonsoft.Json.JsonConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,`0,Newtonsoft.Json.JsonSerializer)
name: WriteJson
isExternal: true
- name: (
- uid: Newtonsoft.Json.JsonWriter
name: JsonWriter
isExternal: true
- name: ','
- name: " "
- name: T
- name: ','
- name: " "
- uid: Newtonsoft.Json.JsonSerializer
name: JsonSerializer
isExternal: true
- name: )
spec.vb:
- uid: Newtonsoft.Json.JsonConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,`0,Newtonsoft.Json.JsonSerializer)
name: WriteJson
isExternal: true
- name: (
- uid: Newtonsoft.Json.JsonWriter
name: JsonWriter
isExternal: true
- name: ','
- name: " "
- name: T
- name: ','
- name: " "
- uid: Newtonsoft.Json.JsonSerializer
name: JsonSerializer
isExternal: true
- name: )
- uid: T
name: T
nameWithType: T
fullName: T
- uid: Newtonsoft.Json.JsonReader
commentId: T:Newtonsoft.Json.JsonReader
parent: Newtonsoft.Json
isExternal: true
name: JsonReader
nameWithType: JsonReader
fullName: Newtonsoft.Json.JsonReader
- uid: Newtonsoft.Json.JsonConverter{{T}}.ReadJson(Newtonsoft.Json.JsonReader,System.Type,{T},System.Boolean,Newtonsoft.Json.JsonSerializer)
commentId: M:Newtonsoft.Json.JsonConverter{`0}.ReadJson(Newtonsoft.Json.JsonReader,System.Type,`0,System.Boolean,Newtonsoft.Json.JsonSerializer)
parent: Newtonsoft.Json.JsonConverter{{T}}
definition: Newtonsoft.Json.JsonConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,`0,System.Boolean,Newtonsoft.Json.JsonSerializer)
href: https://learn.microsoft.com/dotnet/api/system.type
name: ReadJson(JsonReader, Type, T, bool, JsonSerializer)
nameWithType: JsonConverter<T>.ReadJson(JsonReader, Type, T, bool, JsonSerializer)
fullName: Newtonsoft.Json.JsonConverter<T>.ReadJson(Newtonsoft.Json.JsonReader, System.Type, T, bool, Newtonsoft.Json.JsonSerializer)
nameWithType.vb: JsonConverter(Of T).ReadJson(JsonReader, Type, T, Boolean, JsonSerializer)
fullName.vb: Newtonsoft.Json.JsonConverter(Of T).ReadJson(Newtonsoft.Json.JsonReader, System.Type, T, Boolean, Newtonsoft.Json.JsonSerializer)
name.vb: ReadJson(JsonReader, Type, T, Boolean, JsonSerializer)
spec.csharp:
- uid: Newtonsoft.Json.JsonConverter{`0}.ReadJson(Newtonsoft.Json.JsonReader,System.Type,`0,System.Boolean,Newtonsoft.Json.JsonSerializer)
name: ReadJson
isExternal: true
- name: (
- uid: Newtonsoft.Json.JsonReader
name: JsonReader
isExternal: true
- name: ','
- name: " "
- uid: System.Type
name: Type
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
- name: ','
- name: " "
- name: T
- name: ','
- name: " "
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: ','
- name: " "
- uid: Newtonsoft.Json.JsonSerializer
name: JsonSerializer
isExternal: true
- name: )
spec.vb:
- uid: Newtonsoft.Json.JsonConverter{`0}.ReadJson(Newtonsoft.Json.JsonReader,System.Type,`0,System.Boolean,Newtonsoft.Json.JsonSerializer)
name: ReadJson
isExternal: true
- name: (
- uid: Newtonsoft.Json.JsonReader
name: JsonReader
isExternal: true
- name: ','
- name: " "
- uid: System.Type
name: Type
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
- name: ','
- name: " "
- name: T
- name: ','
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: ','
- name: " "
- uid: Newtonsoft.Json.JsonSerializer
name: JsonSerializer
isExternal: true
- name: )
- uid: MLEM.Data.Json.StaticJsonConverter`1.ReadJson*
commentId: Overload:MLEM.Data.Json.StaticJsonConverter`1.ReadJson
href: MLEM.Data.Json.StaticJsonConverter-1.html#MLEM_Data_Json_StaticJsonConverter_1_ReadJson_Newtonsoft_Json_JsonReader_System_Type__0_System_Boolean_Newtonsoft_Json_JsonSerializer_
name: ReadJson
nameWithType: StaticJsonConverter<T>.ReadJson
fullName: MLEM.Data.Json.StaticJsonConverter<T>.ReadJson
nameWithType.vb: StaticJsonConverter(Of T).ReadJson
fullName.vb: MLEM.Data.Json.StaticJsonConverter(Of T).ReadJson
- uid: Newtonsoft.Json.JsonConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,`0,System.Boolean,Newtonsoft.Json.JsonSerializer)
commentId: M:Newtonsoft.Json.JsonConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,`0,System.Boolean,Newtonsoft.Json.JsonSerializer)
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
name: ReadJson(JsonReader, Type, T, bool, JsonSerializer)
nameWithType: JsonConverter<T>.ReadJson(JsonReader, Type, T, bool, JsonSerializer)
fullName: Newtonsoft.Json.JsonConverter<T>.ReadJson(Newtonsoft.Json.JsonReader, System.Type, T, bool, Newtonsoft.Json.JsonSerializer)
nameWithType.vb: JsonConverter(Of T).ReadJson(JsonReader, Type, T, Boolean, JsonSerializer)
fullName.vb: Newtonsoft.Json.JsonConverter(Of T).ReadJson(Newtonsoft.Json.JsonReader, System.Type, T, Boolean, Newtonsoft.Json.JsonSerializer)
name.vb: ReadJson(JsonReader, Type, T, Boolean, JsonSerializer)
spec.csharp:
- uid: Newtonsoft.Json.JsonConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,`0,System.Boolean,Newtonsoft.Json.JsonSerializer)
name: ReadJson
isExternal: true
- name: (
- uid: Newtonsoft.Json.JsonReader
name: JsonReader
isExternal: true
- name: ','
- name: " "
- uid: System.Type
name: Type
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
- name: ','
- name: " "
- name: T
- name: ','
- name: " "
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: ','
- name: " "
- uid: Newtonsoft.Json.JsonSerializer
name: JsonSerializer
isExternal: true
- name: )
spec.vb:
- uid: Newtonsoft.Json.JsonConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,`0,System.Boolean,Newtonsoft.Json.JsonSerializer)
name: ReadJson
isExternal: true
- name: (
- uid: Newtonsoft.Json.JsonReader
name: JsonReader
isExternal: true
- name: ','
- name: " "
- uid: System.Type
name: Type
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
- name: ','
- name: " "
- name: T
- name: ','
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: ','
- name: " "
- uid: Newtonsoft.Json.JsonSerializer
name: JsonSerializer
isExternal: true
- name: )