4 references to UInt64Converter
Microsoft.AspNetCore.Identity (1)
IdentityJsonSerializerContext.UInt64.g.cs (1)
29
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<ulong>(options, global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.
UInt64Converter
);
System.Text.Json (3)
System\Text\Json\Nodes\JsonValue.CreateOverloads.cs (2)
273
public static JsonValue Create(ulong value, JsonNodeOptions? options = null) => new JsonValuePrimitive<ulong>(value, JsonMetadataServices.
UInt64Converter
, options);
282
public static JsonValue? Create(ulong? value, JsonNodeOptions? options = null) => value.HasValue ? new JsonValuePrimitive<ulong>(value.Value, JsonMetadataServices.
UInt64Converter
, options) : null;
System\Text\Json\Serialization\Metadata\DefaultJsonTypeInfoResolver.Converters.cs (1)
76
Add(JsonMetadataServices.
UInt64Converter
);