### YamlMime:ManagedReference items: - uid: adas_core.Infrastructure.Utils.PersonConverter commentId: T:adas_core.Infrastructure.Utils.PersonConverter id: PersonConverter parent: adas_core.Infrastructure.Utils children: - adas_core.Infrastructure.Utils.PersonConverter.#ctor(System.Type) - adas_core.Infrastructure.Utils.PersonConverter.Deserialize(MongoDB.Bson.Serialization.BsonDeserializationContext,MongoDB.Bson.Serialization.BsonDeserializationArgs) - adas_core.Infrastructure.Utils.PersonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,adas_core.Domain.Models.Person,System.Boolean,Newtonsoft.Json.JsonSerializer) - adas_core.Infrastructure.Utils.PersonConverter.Serialize(MongoDB.Bson.Serialization.BsonSerializationContext,MongoDB.Bson.Serialization.BsonSerializationArgs,System.Object) - adas_core.Infrastructure.Utils.PersonConverter.ValueType - adas_core.Infrastructure.Utils.PersonConverter.WriteJson(Newtonsoft.Json.JsonWriter,adas_core.Domain.Models.Person,Newtonsoft.Json.JsonSerializer) langs: - csharp - vb name: PersonConverter nameWithType: PersonConverter fullName: adas_core.Infrastructure.Utils.PersonConverter type: Class source: remote: path: adas-core.Infrastructure/Utils/PersonConverter.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: PersonConverter path: ../../adas-core.Infrastructure/Utils/PersonConverter.cs startLine: 15 assemblies: - adas-core.Infrastructure namespace: adas_core.Infrastructure.Utils summary: Provides JSON conversion for the type via and also implements BSON serialization through . remarks: The primary constructor accepts a that represents the value type associated with this converter. example: [] syntax: content: 'public class PersonConverter : JsonConverter, IBsonSerializer' content.vb: Public Class PersonConverter Inherits JsonConverter(Of Person) Implements IBsonSerializer inheritance: - System.Object - Newtonsoft.Json.JsonConverter - Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person} implements: - MongoDB.Bson.Serialization.IBsonSerializer inheritedMembers: - Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person}.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer) - Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person}.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer) - Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person}.CanConvert(System.Type) - Newtonsoft.Json.JsonConverter.CanRead - Newtonsoft.Json.JsonConverter.CanWrite - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.GetHashCode - System.Object.GetType - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString extensionMethods: - System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber - System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble - System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr - uid: adas_core.Infrastructure.Utils.PersonConverter.#ctor(System.Type) commentId: M:adas_core.Infrastructure.Utils.PersonConverter.#ctor(System.Type) id: '#ctor(System.Type)' parent: adas_core.Infrastructure.Utils.PersonConverter langs: - csharp - vb name: PersonConverter(Type) nameWithType: PersonConverter.PersonConverter(Type) fullName: adas_core.Infrastructure.Utils.PersonConverter.PersonConverter(System.Type) type: Constructor source: remote: path: adas-core.Infrastructure/Utils/PersonConverter.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: .ctor path: ../../adas-core.Infrastructure/Utils/PersonConverter.cs startLine: 15 assemblies: - adas-core.Infrastructure namespace: adas_core.Infrastructure.Utils summary: Provides JSON conversion for the type via and also implements BSON serialization through . remarks: The primary constructor accepts a that represents the value type associated with this converter. example: [] syntax: content: public PersonConverter(Type valueType) parameters: - id: valueType type: System.Type content.vb: Public Sub New(valueType As Type) overload: adas_core.Infrastructure.Utils.PersonConverter.#ctor* nameWithType.vb: PersonConverter.New(Type) fullName.vb: adas_core.Infrastructure.Utils.PersonConverter.New(System.Type) name.vb: New(Type) - uid: adas_core.Infrastructure.Utils.PersonConverter.Deserialize(MongoDB.Bson.Serialization.BsonDeserializationContext,MongoDB.Bson.Serialization.BsonDeserializationArgs) commentId: M:adas_core.Infrastructure.Utils.PersonConverter.Deserialize(MongoDB.Bson.Serialization.BsonDeserializationContext,MongoDB.Bson.Serialization.BsonDeserializationArgs) id: Deserialize(MongoDB.Bson.Serialization.BsonDeserializationContext,MongoDB.Bson.Serialization.BsonDeserializationArgs) parent: adas_core.Infrastructure.Utils.PersonConverter langs: - csharp - vb name: Deserialize(BsonDeserializationContext, BsonDeserializationArgs) nameWithType: PersonConverter.Deserialize(BsonDeserializationContext, BsonDeserializationArgs) fullName: adas_core.Infrastructure.Utils.PersonConverter.Deserialize(MongoDB.Bson.Serialization.BsonDeserializationContext, MongoDB.Bson.Serialization.BsonDeserializationArgs) type: Method source: remote: path: adas-core.Infrastructure/Utils/PersonConverter.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: Deserialize path: ../../adas-core.Infrastructure/Utils/PersonConverter.cs startLine: 24 assemblies: - adas-core.Infrastructure namespace: adas_core.Infrastructure.Utils summary: Deserializes a BSON value into a .NET object using the provided context and arguments. example: [] syntax: content: public object Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) parameters: - id: context type: MongoDB.Bson.Serialization.BsonDeserializationContext description: The BSON deserialization context. - id: args type: MongoDB.Bson.Serialization.BsonDeserializationArgs description: The BSON deserialization arguments. return: type: System.Object description: The deserialized object. content.vb: Public Function Deserialize(context As BsonDeserializationContext, args As BsonDeserializationArgs) As Object overload: adas_core.Infrastructure.Utils.PersonConverter.Deserialize* exceptions: - type: System.NotImplementedException commentId: T:System.NotImplementedException description: Always thrown because the method is not yet implemented. implements: - MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(MongoDB.Bson.Serialization.BsonDeserializationContext,MongoDB.Bson.Serialization.BsonDeserializationArgs) - uid: adas_core.Infrastructure.Utils.PersonConverter.Serialize(MongoDB.Bson.Serialization.BsonSerializationContext,MongoDB.Bson.Serialization.BsonSerializationArgs,System.Object) commentId: M:adas_core.Infrastructure.Utils.PersonConverter.Serialize(MongoDB.Bson.Serialization.BsonSerializationContext,MongoDB.Bson.Serialization.BsonSerializationArgs,System.Object) id: Serialize(MongoDB.Bson.Serialization.BsonSerializationContext,MongoDB.Bson.Serialization.BsonSerializationArgs,System.Object) parent: adas_core.Infrastructure.Utils.PersonConverter langs: - csharp - vb name: Serialize(BsonSerializationContext, BsonSerializationArgs, object) nameWithType: PersonConverter.Serialize(BsonSerializationContext, BsonSerializationArgs, object) fullName: adas_core.Infrastructure.Utils.PersonConverter.Serialize(MongoDB.Bson.Serialization.BsonSerializationContext, MongoDB.Bson.Serialization.BsonSerializationArgs, object) type: Method source: remote: path: adas-core.Infrastructure/Utils/PersonConverter.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: Serialize path: ../../adas-core.Infrastructure/Utils/PersonConverter.cs startLine: 36 assemblies: - adas-core.Infrastructure namespace: adas_core.Infrastructure.Utils summary: Serializes the specified object to BSON format using the provided serialization context and arguments. The method is not implemented and always throws an exception. example: [] syntax: content: public void Serialize(BsonSerializationContext context, BsonSerializationArgs args, object value) parameters: - id: context type: MongoDB.Bson.Serialization.BsonSerializationContext description: The BSON serialization context that provides the writer and configuration for the operation. - id: args type: MongoDB.Bson.Serialization.BsonSerializationArgs description: The BSON serialization arguments containing additional settings for the serialization. - id: value type: System.Object description: The object to be serialized to BSON. content.vb: Public Sub Serialize(context As BsonSerializationContext, args As BsonSerializationArgs, value As Object) overload: adas_core.Infrastructure.Utils.PersonConverter.Serialize* exceptions: - type: System.NotImplementedException commentId: T:System.NotImplementedException description: Always thrown because the method has not been implemented yet. implements: - MongoDB.Bson.Serialization.IBsonSerializer.Serialize(MongoDB.Bson.Serialization.BsonSerializationContext,MongoDB.Bson.Serialization.BsonSerializationArgs,System.Object) nameWithType.vb: PersonConverter.Serialize(BsonSerializationContext, BsonSerializationArgs, Object) fullName.vb: adas_core.Infrastructure.Utils.PersonConverter.Serialize(MongoDB.Bson.Serialization.BsonSerializationContext, MongoDB.Bson.Serialization.BsonSerializationArgs, Object) name.vb: Serialize(BsonSerializationContext, BsonSerializationArgs, Object) - uid: adas_core.Infrastructure.Utils.PersonConverter.ValueType commentId: P:adas_core.Infrastructure.Utils.PersonConverter.ValueType id: ValueType parent: adas_core.Infrastructure.Utils.PersonConverter langs: - csharp - vb name: ValueType nameWithType: PersonConverter.ValueType fullName: adas_core.Infrastructure.Utils.PersonConverter.ValueType type: Property source: remote: path: adas-core.Infrastructure/Utils/PersonConverter.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: ValueType path: ../../adas-core.Infrastructure/Utils/PersonConverter.cs startLine: 41 assemblies: - adas-core.Infrastructure namespace: adas_core.Infrastructure.Utils summary: Gets the type of the value. example: [] syntax: content: public Type ValueType { get; } parameters: [] return: type: System.Type description: The type of the value. content.vb: Public ReadOnly Property ValueType As Type overload: adas_core.Infrastructure.Utils.PersonConverter.ValueType* implements: - MongoDB.Bson.Serialization.IBsonSerializer.ValueType - uid: adas_core.Infrastructure.Utils.PersonConverter.WriteJson(Newtonsoft.Json.JsonWriter,adas_core.Domain.Models.Person,Newtonsoft.Json.JsonSerializer) commentId: M:adas_core.Infrastructure.Utils.PersonConverter.WriteJson(Newtonsoft.Json.JsonWriter,adas_core.Domain.Models.Person,Newtonsoft.Json.JsonSerializer) id: WriteJson(Newtonsoft.Json.JsonWriter,adas_core.Domain.Models.Person,Newtonsoft.Json.JsonSerializer) parent: adas_core.Infrastructure.Utils.PersonConverter langs: - csharp - vb name: WriteJson(JsonWriter, Person?, JsonSerializer) nameWithType: PersonConverter.WriteJson(JsonWriter, Person?, JsonSerializer) fullName: adas_core.Infrastructure.Utils.PersonConverter.WriteJson(Newtonsoft.Json.JsonWriter, adas_core.Domain.Models.Person?, Newtonsoft.Json.JsonSerializer) type: Method source: remote: path: adas-core.Infrastructure/Utils/PersonConverter.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: WriteJson path: ../../adas-core.Infrastructure/Utils/PersonConverter.cs startLine: 49 assemblies: - adas-core.Infrastructure namespace: adas_core.Infrastructure.Utils summary: Serializes a instance to JSON, ensuring the Gender property is written using string-based enum representation. Does nothing when the provided value is null. example: [] syntax: content: public override void WriteJson(JsonWriter writer, Person? value, JsonSerializer serializer) parameters: - id: writer type: Newtonsoft.Json.JsonWriter description: The to which the JSON representation is written. - id: value type: adas_core.Domain.Models.Person description: The instance to serialize. If null, the method returns without writing anything. - id: serializer type: Newtonsoft.Json.JsonSerializer description: The used during the conversion to a . content.vb: Public Overrides Sub WriteJson(writer As JsonWriter, value As Person, serializer As JsonSerializer) overridden: Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person}.WriteJson(Newtonsoft.Json.JsonWriter,adas_core.Domain.Models.Person,Newtonsoft.Json.JsonSerializer) overload: adas_core.Infrastructure.Utils.PersonConverter.WriteJson* nameWithType.vb: PersonConverter.WriteJson(JsonWriter, Person, JsonSerializer) fullName.vb: adas_core.Infrastructure.Utils.PersonConverter.WriteJson(Newtonsoft.Json.JsonWriter, adas_core.Domain.Models.Person, Newtonsoft.Json.JsonSerializer) name.vb: WriteJson(JsonWriter, Person, JsonSerializer) - uid: adas_core.Infrastructure.Utils.PersonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,adas_core.Domain.Models.Person,System.Boolean,Newtonsoft.Json.JsonSerializer) commentId: M:adas_core.Infrastructure.Utils.PersonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,adas_core.Domain.Models.Person,System.Boolean,Newtonsoft.Json.JsonSerializer) id: ReadJson(Newtonsoft.Json.JsonReader,System.Type,adas_core.Domain.Models.Person,System.Boolean,Newtonsoft.Json.JsonSerializer) parent: adas_core.Infrastructure.Utils.PersonConverter langs: - csharp - vb name: ReadJson(JsonReader, Type, Person?, bool, JsonSerializer) nameWithType: PersonConverter.ReadJson(JsonReader, Type, Person?, bool, JsonSerializer) fullName: adas_core.Infrastructure.Utils.PersonConverter.ReadJson(Newtonsoft.Json.JsonReader, System.Type, adas_core.Domain.Models.Person?, bool, Newtonsoft.Json.JsonSerializer) type: Method source: remote: path: adas-core.Infrastructure/Utils/PersonConverter.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: ReadJson path: ../../adas-core.Infrastructure/Utils/PersonConverter.cs startLine: 98 assemblies: - adas-core.Infrastructure namespace: adas_core.Infrastructure.Utils summary: Reads the JSON representation of a object. This override is not yet implemented. example: [] syntax: content: public override Person ReadJson(JsonReader reader, Type objectType, Person? existingValue, bool hasExistingValue, JsonSerializer serializer) parameters: - id: reader type: Newtonsoft.Json.JsonReader description: The to read from. - id: objectType type: System.Type description: The type of the object to deserialize. - id: existingValue type: adas_core.Domain.Models.Person description: The existing value of the object being read, or null if there is no existing value. - id: hasExistingValue type: System.Boolean description: A value indicating whether existingValue has a value. - id: serializer type: Newtonsoft.Json.JsonSerializer description: The calling the method. return: type: adas_core.Domain.Models.Person description: A instance deserialized from the JSON. content.vb: Public Overrides Function ReadJson(reader As JsonReader, objectType As Type, existingValue As Person, hasExistingValue As Boolean, serializer As JsonSerializer) As Person overridden: Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person}.ReadJson(Newtonsoft.Json.JsonReader,System.Type,adas_core.Domain.Models.Person,System.Boolean,Newtonsoft.Json.JsonSerializer) overload: adas_core.Infrastructure.Utils.PersonConverter.ReadJson* exceptions: - type: System.NotImplementedException commentId: T:System.NotImplementedException description: Always thrown because the method has not been implemented. nameWithType.vb: PersonConverter.ReadJson(JsonReader, Type, Person, Boolean, JsonSerializer) fullName.vb: adas_core.Infrastructure.Utils.PersonConverter.ReadJson(Newtonsoft.Json.JsonReader, System.Type, adas_core.Domain.Models.Person, Boolean, Newtonsoft.Json.JsonSerializer) name.vb: ReadJson(JsonReader, Type, Person, Boolean, JsonSerializer) references: - uid: adas_core.Domain.Models.Person commentId: T:adas_core.Domain.Models.Person parent: adas_core.Domain.Models href: adas_core.Domain.Models.Person.html name: Person nameWithType: Person fullName: adas_core.Domain.Models.Person - uid: Newtonsoft.Json.JsonConverter`1 commentId: T:Newtonsoft.Json.JsonConverter`1 isExternal: true name: JsonConverter nameWithType: JsonConverter fullName: Newtonsoft.Json.JsonConverter 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: MongoDB.Bson.Serialization.IBsonSerializer commentId: T:MongoDB.Bson.Serialization.IBsonSerializer parent: MongoDB.Bson.Serialization isExternal: true name: IBsonSerializer nameWithType: IBsonSerializer fullName: MongoDB.Bson.Serialization.IBsonSerializer - 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: adas_core.Infrastructure.Utils commentId: N:adas_core.Infrastructure.Utils href: adas_core.html name: adas_core.Infrastructure.Utils nameWithType: adas_core.Infrastructure.Utils fullName: adas_core.Infrastructure.Utils spec.csharp: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Infrastructure name: Infrastructure href: adas_core.Infrastructure.html - name: . - uid: adas_core.Infrastructure.Utils name: Utils href: adas_core.Infrastructure.Utils.html spec.vb: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Infrastructure name: Infrastructure href: adas_core.Infrastructure.html - name: . - uid: adas_core.Infrastructure.Utils name: Utils href: adas_core.Infrastructure.Utils.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{adas_core.Domain.Models.Person} commentId: T:Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person} parent: Newtonsoft.Json definition: Newtonsoft.Json.JsonConverter`1 name: JsonConverter nameWithType: JsonConverter fullName: Newtonsoft.Json.JsonConverter nameWithType.vb: JsonConverter(Of Person) fullName.vb: Newtonsoft.Json.JsonConverter(Of adas_core.Domain.Models.Person) name.vb: JsonConverter(Of Person) spec.csharp: - uid: Newtonsoft.Json.JsonConverter`1 name: JsonConverter isExternal: true - name: < - uid: adas_core.Domain.Models.Person name: Person - name: '>' spec.vb: - uid: Newtonsoft.Json.JsonConverter`1 name: JsonConverter isExternal: true - name: ( - name: Of - name: " " - uid: adas_core.Domain.Models.Person name: Person - name: ) - uid: Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person}.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer) commentId: M:Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person}.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer) parent: Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person} 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.WriteJson(JsonWriter, object, JsonSerializer) fullName: Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter, object, Newtonsoft.Json.JsonSerializer) nameWithType.vb: JsonConverter(Of Person).WriteJson(JsonWriter, Object, JsonSerializer) fullName.vb: Newtonsoft.Json.JsonConverter(Of adas_core.Domain.Models.Person).WriteJson(Newtonsoft.Json.JsonWriter, Object, Newtonsoft.Json.JsonSerializer) name.vb: WriteJson(JsonWriter, Object, JsonSerializer) spec.csharp: - uid: Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person}.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{adas_core.Domain.Models.Person}.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{adas_core.Domain.Models.Person}.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer) commentId: M:Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person}.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer) parent: Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person} 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.ReadJson(JsonReader, Type, object, JsonSerializer) fullName: Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader, System.Type, object, Newtonsoft.Json.JsonSerializer) nameWithType.vb: JsonConverter(Of Person).ReadJson(JsonReader, Type, Object, JsonSerializer) fullName.vb: Newtonsoft.Json.JsonConverter(Of adas_core.Domain.Models.Person).ReadJson(Newtonsoft.Json.JsonReader, System.Type, Object, Newtonsoft.Json.JsonSerializer) name.vb: ReadJson(JsonReader, Type, Object, JsonSerializer) spec.csharp: - uid: Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person}.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{adas_core.Domain.Models.Person}.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{adas_core.Domain.Models.Person}.CanConvert(System.Type) commentId: M:Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person}.CanConvert(System.Type) parent: Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person} definition: Newtonsoft.Json.JsonConverter`1.CanConvert(System.Type) href: https://learn.microsoft.com/dotnet/api/system.type name: CanConvert(Type) nameWithType: JsonConverter.CanConvert(Type) fullName: Newtonsoft.Json.JsonConverter.CanConvert(System.Type) nameWithType.vb: JsonConverter(Of Person).CanConvert(Type) fullName.vb: Newtonsoft.Json.JsonConverter(Of adas_core.Domain.Models.Person).CanConvert(System.Type) spec.csharp: - uid: Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person}.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{adas_core.Domain.Models.Person}.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.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.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.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.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.adas_core.Domain.Utils.NumberUtils.IsNumber commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) parent: adas_core.Domain.Utils.NumberUtils definition: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ name: IsNumber(object) nameWithType: NumberUtils.IsNumber(object) fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object) nameWithType.vb: NumberUtils.IsNumber(Object) fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object) name.vb: IsNumber(Object) spec.csharp: - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) name: IsNumber href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) name: IsNumber href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) parent: adas_core.Domain.Utils.NumberUtils definition: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ name: ToDouble(object) nameWithType: NumberUtils.ToDouble(object) fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object) nameWithType.vb: NumberUtils.ToDouble(Object) fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object) name.vb: ToDouble(Object) spec.csharp: - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) name: ToDouble href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) name: ToDouble href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) parent: adas_core.Domain.Utils.ObjectUtils definition: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ name: ToStr(object) nameWithType: ObjectUtils.ToStr(object) fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object) nameWithType.vb: ObjectUtils.ToStr(Object) fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object) name.vb: ToStr(Object) spec.csharp: - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) name: ToStr href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) name: ToStr href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: adas_core.Domain.Models commentId: N:adas_core.Domain.Models href: adas_core.html name: adas_core.Domain.Models nameWithType: adas_core.Domain.Models fullName: adas_core.Domain.Models spec.csharp: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Models name: Models href: adas_core.Domain.Models.html spec.vb: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Models name: Models href: adas_core.Domain.Models.html - uid: MongoDB.Bson.Serialization commentId: N:MongoDB.Bson.Serialization isExternal: true name: MongoDB.Bson.Serialization nameWithType: MongoDB.Bson.Serialization fullName: MongoDB.Bson.Serialization spec.csharp: - uid: MongoDB name: MongoDB isExternal: true - name: . - uid: MongoDB.Bson name: Bson isExternal: true - name: . - uid: MongoDB.Bson.Serialization name: Serialization isExternal: true spec.vb: - uid: MongoDB name: MongoDB isExternal: true - name: . - uid: MongoDB.Bson name: Bson isExternal: true - name: . - uid: MongoDB.Bson.Serialization name: Serialization isExternal: true - 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.WriteJson(JsonWriter, object, JsonSerializer) fullName: Newtonsoft.Json.JsonConverter.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.ReadJson(JsonReader, Type, object, JsonSerializer) fullName: Newtonsoft.Json.JsonConverter.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.CanConvert(Type) fullName: Newtonsoft.Json.JsonConverter.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: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) isExternal: true href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ name: IsNumber(object) nameWithType: NumberUtils.IsNumber(object) fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object) nameWithType.vb: NumberUtils.IsNumber(Object) fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object) name.vb: IsNumber(Object) spec.csharp: - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) name: IsNumber href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) name: IsNumber href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: adas_core.Domain.Utils.NumberUtils commentId: T:adas_core.Domain.Utils.NumberUtils parent: adas_core.Domain.Utils href: adas_core.Domain.Utils.NumberUtils.html name: NumberUtils nameWithType: NumberUtils fullName: adas_core.Domain.Utils.NumberUtils - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) isExternal: true href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ name: ToDouble(object) nameWithType: NumberUtils.ToDouble(object) fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object) nameWithType.vb: NumberUtils.ToDouble(Object) fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object) name.vb: ToDouble(Object) spec.csharp: - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) name: ToDouble href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) name: ToDouble href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) isExternal: true href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ name: ToStr(object) nameWithType: ObjectUtils.ToStr(object) fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object) nameWithType.vb: ObjectUtils.ToStr(Object) fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object) name.vb: ToStr(Object) spec.csharp: - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) name: ToStr href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) name: ToStr href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: adas_core.Domain.Utils.ObjectUtils commentId: T:adas_core.Domain.Utils.ObjectUtils parent: adas_core.Domain.Utils href: adas_core.Domain.Utils.ObjectUtils.html name: ObjectUtils nameWithType: ObjectUtils fullName: adas_core.Domain.Utils.ObjectUtils - uid: adas_core.Domain.Utils commentId: N:adas_core.Domain.Utils href: adas_core.html name: adas_core.Domain.Utils nameWithType: adas_core.Domain.Utils fullName: adas_core.Domain.Utils spec.csharp: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Utils name: Utils href: adas_core.Domain.Utils.html spec.vb: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Utils name: Utils href: adas_core.Domain.Utils.html - uid: adas_core.Infrastructure.Utils.PersonConverter.#ctor* commentId: Overload:adas_core.Infrastructure.Utils.PersonConverter.#ctor href: adas_core.Infrastructure.Utils.PersonConverter.html#adas_core_Infrastructure_Utils_PersonConverter__ctor_System_Type_ name: PersonConverter nameWithType: PersonConverter.PersonConverter fullName: adas_core.Infrastructure.Utils.PersonConverter.PersonConverter nameWithType.vb: PersonConverter.New fullName.vb: adas_core.Infrastructure.Utils.PersonConverter.New name.vb: New - uid: System.NotImplementedException commentId: T:System.NotImplementedException isExternal: true href: https://learn.microsoft.com/dotnet/api/system.notimplementedexception name: NotImplementedException nameWithType: NotImplementedException fullName: System.NotImplementedException - uid: adas_core.Infrastructure.Utils.PersonConverter.Deserialize* commentId: Overload:adas_core.Infrastructure.Utils.PersonConverter.Deserialize href: adas_core.Infrastructure.Utils.PersonConverter.html#adas_core_Infrastructure_Utils_PersonConverter_Deserialize_MongoDB_Bson_Serialization_BsonDeserializationContext_MongoDB_Bson_Serialization_BsonDeserializationArgs_ name: Deserialize nameWithType: PersonConverter.Deserialize fullName: adas_core.Infrastructure.Utils.PersonConverter.Deserialize - uid: MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(MongoDB.Bson.Serialization.BsonDeserializationContext,MongoDB.Bson.Serialization.BsonDeserializationArgs) commentId: M:MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(MongoDB.Bson.Serialization.BsonDeserializationContext,MongoDB.Bson.Serialization.BsonDeserializationArgs) parent: MongoDB.Bson.Serialization.IBsonSerializer isExternal: true name: Deserialize(BsonDeserializationContext, BsonDeserializationArgs) nameWithType: IBsonSerializer.Deserialize(BsonDeserializationContext, BsonDeserializationArgs) fullName: MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(MongoDB.Bson.Serialization.BsonDeserializationContext, MongoDB.Bson.Serialization.BsonDeserializationArgs) spec.csharp: - uid: MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(MongoDB.Bson.Serialization.BsonDeserializationContext,MongoDB.Bson.Serialization.BsonDeserializationArgs) name: Deserialize isExternal: true - name: ( - uid: MongoDB.Bson.Serialization.BsonDeserializationContext name: BsonDeserializationContext isExternal: true - name: ',' - name: " " - uid: MongoDB.Bson.Serialization.BsonDeserializationArgs name: BsonDeserializationArgs isExternal: true - name: ) spec.vb: - uid: MongoDB.Bson.Serialization.IBsonSerializer.Deserialize(MongoDB.Bson.Serialization.BsonDeserializationContext,MongoDB.Bson.Serialization.BsonDeserializationArgs) name: Deserialize isExternal: true - name: ( - uid: MongoDB.Bson.Serialization.BsonDeserializationContext name: BsonDeserializationContext isExternal: true - name: ',' - name: " " - uid: MongoDB.Bson.Serialization.BsonDeserializationArgs name: BsonDeserializationArgs isExternal: true - name: ) - uid: MongoDB.Bson.Serialization.BsonDeserializationContext commentId: T:MongoDB.Bson.Serialization.BsonDeserializationContext parent: MongoDB.Bson.Serialization isExternal: true name: BsonDeserializationContext nameWithType: BsonDeserializationContext fullName: MongoDB.Bson.Serialization.BsonDeserializationContext - uid: MongoDB.Bson.Serialization.BsonDeserializationArgs commentId: T:MongoDB.Bson.Serialization.BsonDeserializationArgs parent: MongoDB.Bson.Serialization isExternal: true name: BsonDeserializationArgs nameWithType: BsonDeserializationArgs fullName: MongoDB.Bson.Serialization.BsonDeserializationArgs - uid: adas_core.Infrastructure.Utils.PersonConverter.Serialize* commentId: Overload:adas_core.Infrastructure.Utils.PersonConverter.Serialize href: adas_core.Infrastructure.Utils.PersonConverter.html#adas_core_Infrastructure_Utils_PersonConverter_Serialize_MongoDB_Bson_Serialization_BsonSerializationContext_MongoDB_Bson_Serialization_BsonSerializationArgs_System_Object_ name: Serialize nameWithType: PersonConverter.Serialize fullName: adas_core.Infrastructure.Utils.PersonConverter.Serialize - uid: MongoDB.Bson.Serialization.IBsonSerializer.Serialize(MongoDB.Bson.Serialization.BsonSerializationContext,MongoDB.Bson.Serialization.BsonSerializationArgs,System.Object) commentId: M:MongoDB.Bson.Serialization.IBsonSerializer.Serialize(MongoDB.Bson.Serialization.BsonSerializationContext,MongoDB.Bson.Serialization.BsonSerializationArgs,System.Object) parent: MongoDB.Bson.Serialization.IBsonSerializer isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object name: Serialize(BsonSerializationContext, BsonSerializationArgs, object) nameWithType: IBsonSerializer.Serialize(BsonSerializationContext, BsonSerializationArgs, object) fullName: MongoDB.Bson.Serialization.IBsonSerializer.Serialize(MongoDB.Bson.Serialization.BsonSerializationContext, MongoDB.Bson.Serialization.BsonSerializationArgs, object) nameWithType.vb: IBsonSerializer.Serialize(BsonSerializationContext, BsonSerializationArgs, Object) fullName.vb: MongoDB.Bson.Serialization.IBsonSerializer.Serialize(MongoDB.Bson.Serialization.BsonSerializationContext, MongoDB.Bson.Serialization.BsonSerializationArgs, Object) name.vb: Serialize(BsonSerializationContext, BsonSerializationArgs, Object) spec.csharp: - uid: MongoDB.Bson.Serialization.IBsonSerializer.Serialize(MongoDB.Bson.Serialization.BsonSerializationContext,MongoDB.Bson.Serialization.BsonSerializationArgs,System.Object) name: Serialize isExternal: true - name: ( - uid: MongoDB.Bson.Serialization.BsonSerializationContext name: BsonSerializationContext isExternal: true - name: ',' - name: " " - uid: MongoDB.Bson.Serialization.BsonSerializationArgs name: BsonSerializationArgs isExternal: true - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: MongoDB.Bson.Serialization.IBsonSerializer.Serialize(MongoDB.Bson.Serialization.BsonSerializationContext,MongoDB.Bson.Serialization.BsonSerializationArgs,System.Object) name: Serialize isExternal: true - name: ( - uid: MongoDB.Bson.Serialization.BsonSerializationContext name: BsonSerializationContext isExternal: true - name: ',' - name: " " - uid: MongoDB.Bson.Serialization.BsonSerializationArgs name: BsonSerializationArgs isExternal: true - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: MongoDB.Bson.Serialization.BsonSerializationContext commentId: T:MongoDB.Bson.Serialization.BsonSerializationContext parent: MongoDB.Bson.Serialization isExternal: true name: BsonSerializationContext nameWithType: BsonSerializationContext fullName: MongoDB.Bson.Serialization.BsonSerializationContext - uid: MongoDB.Bson.Serialization.BsonSerializationArgs commentId: T:MongoDB.Bson.Serialization.BsonSerializationArgs parent: MongoDB.Bson.Serialization isExternal: true name: BsonSerializationArgs nameWithType: BsonSerializationArgs fullName: MongoDB.Bson.Serialization.BsonSerializationArgs - uid: adas_core.Infrastructure.Utils.PersonConverter.ValueType* commentId: Overload:adas_core.Infrastructure.Utils.PersonConverter.ValueType href: adas_core.Infrastructure.Utils.PersonConverter.html#adas_core_Infrastructure_Utils_PersonConverter_ValueType name: ValueType nameWithType: PersonConverter.ValueType fullName: adas_core.Infrastructure.Utils.PersonConverter.ValueType - uid: MongoDB.Bson.Serialization.IBsonSerializer.ValueType commentId: P:MongoDB.Bson.Serialization.IBsonSerializer.ValueType parent: MongoDB.Bson.Serialization.IBsonSerializer isExternal: true name: ValueType nameWithType: IBsonSerializer.ValueType fullName: MongoDB.Bson.Serialization.IBsonSerializer.ValueType - 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.JsonSerializer commentId: T:Newtonsoft.Json.JsonSerializer parent: Newtonsoft.Json isExternal: true name: JsonSerializer nameWithType: JsonSerializer fullName: Newtonsoft.Json.JsonSerializer - uid: Newtonsoft.Json.Linq.JObject commentId: T:Newtonsoft.Json.Linq.JObject isExternal: true name: JObject nameWithType: JObject fullName: Newtonsoft.Json.Linq.JObject - uid: Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person}.WriteJson(Newtonsoft.Json.JsonWriter,adas_core.Domain.Models.Person,Newtonsoft.Json.JsonSerializer) commentId: M:Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person}.WriteJson(Newtonsoft.Json.JsonWriter,adas_core.Domain.Models.Person,Newtonsoft.Json.JsonSerializer) parent: Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person} definition: Newtonsoft.Json.JsonConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,`0,Newtonsoft.Json.JsonSerializer) name: WriteJson(JsonWriter, Person, JsonSerializer) nameWithType: JsonConverter.WriteJson(JsonWriter, Person, JsonSerializer) fullName: Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter, adas_core.Domain.Models.Person, Newtonsoft.Json.JsonSerializer) nameWithType.vb: JsonConverter(Of Person).WriteJson(JsonWriter, Person, JsonSerializer) fullName.vb: Newtonsoft.Json.JsonConverter(Of adas_core.Domain.Models.Person).WriteJson(Newtonsoft.Json.JsonWriter, adas_core.Domain.Models.Person, Newtonsoft.Json.JsonSerializer) spec.csharp: - uid: Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person}.WriteJson(Newtonsoft.Json.JsonWriter,adas_core.Domain.Models.Person,Newtonsoft.Json.JsonSerializer) name: WriteJson isExternal: true - name: ( - uid: Newtonsoft.Json.JsonWriter name: JsonWriter isExternal: true - name: ',' - name: " " - uid: adas_core.Domain.Models.Person name: Person - name: ',' - name: " " - uid: Newtonsoft.Json.JsonSerializer name: JsonSerializer isExternal: true - name: ) spec.vb: - uid: Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person}.WriteJson(Newtonsoft.Json.JsonWriter,adas_core.Domain.Models.Person,Newtonsoft.Json.JsonSerializer) name: WriteJson isExternal: true - name: ( - uid: Newtonsoft.Json.JsonWriter name: JsonWriter isExternal: true - name: ',' - name: " " - uid: adas_core.Domain.Models.Person name: Person - name: ',' - name: " " - uid: Newtonsoft.Json.JsonSerializer name: JsonSerializer isExternal: true - name: ) - uid: adas_core.Infrastructure.Utils.PersonConverter.WriteJson* commentId: Overload:adas_core.Infrastructure.Utils.PersonConverter.WriteJson href: adas_core.Infrastructure.Utils.PersonConverter.html#adas_core_Infrastructure_Utils_PersonConverter_WriteJson_Newtonsoft_Json_JsonWriter_adas_core_Domain_Models_Person_Newtonsoft_Json_JsonSerializer_ name: WriteJson nameWithType: PersonConverter.WriteJson fullName: adas_core.Infrastructure.Utils.PersonConverter.WriteJson - 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.WriteJson(JsonWriter, T, JsonSerializer) fullName: Newtonsoft.Json.JsonConverter.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: 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{adas_core.Domain.Models.Person}.ReadJson(Newtonsoft.Json.JsonReader,System.Type,adas_core.Domain.Models.Person,System.Boolean,Newtonsoft.Json.JsonSerializer) commentId: M:Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person}.ReadJson(Newtonsoft.Json.JsonReader,System.Type,adas_core.Domain.Models.Person,System.Boolean,Newtonsoft.Json.JsonSerializer) parent: Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person} 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, Person, bool, JsonSerializer) nameWithType: JsonConverter.ReadJson(JsonReader, Type, Person, bool, JsonSerializer) fullName: Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader, System.Type, adas_core.Domain.Models.Person, bool, Newtonsoft.Json.JsonSerializer) nameWithType.vb: JsonConverter(Of Person).ReadJson(JsonReader, Type, Person, Boolean, JsonSerializer) fullName.vb: Newtonsoft.Json.JsonConverter(Of adas_core.Domain.Models.Person).ReadJson(Newtonsoft.Json.JsonReader, System.Type, adas_core.Domain.Models.Person, Boolean, Newtonsoft.Json.JsonSerializer) name.vb: ReadJson(JsonReader, Type, Person, Boolean, JsonSerializer) spec.csharp: - uid: Newtonsoft.Json.JsonConverter{adas_core.Domain.Models.Person}.ReadJson(Newtonsoft.Json.JsonReader,System.Type,adas_core.Domain.Models.Person,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: " " - uid: adas_core.Domain.Models.Person name: Person - 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{adas_core.Domain.Models.Person}.ReadJson(Newtonsoft.Json.JsonReader,System.Type,adas_core.Domain.Models.Person,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: " " - uid: adas_core.Domain.Models.Person name: Person - 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: adas_core.Infrastructure.Utils.PersonConverter.ReadJson* commentId: Overload:adas_core.Infrastructure.Utils.PersonConverter.ReadJson href: adas_core.Infrastructure.Utils.PersonConverter.html#adas_core_Infrastructure_Utils_PersonConverter_ReadJson_Newtonsoft_Json_JsonReader_System_Type_adas_core_Domain_Models_Person_System_Boolean_Newtonsoft_Json_JsonSerializer_ name: ReadJson nameWithType: PersonConverter.ReadJson fullName: adas_core.Infrastructure.Utils.PersonConverter.ReadJson - 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: 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.ReadJson(JsonReader, Type, T, bool, JsonSerializer) fullName: Newtonsoft.Json.JsonConverter.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: )