4 references to UInt32Converter
Aspire.Dashboard (1)
OtlpJsonSerializerContext.UInt32.g.cs (1)
29
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<uint>(options, global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.
UInt32Converter
);
System.Text.Json (3)
System\Text\Json\Nodes\JsonValue.CreateOverloads.cs (2)
255
public static JsonValue Create(uint value, JsonNodeOptions? options = null) => new JsonValuePrimitive<uint>(value, JsonMetadataServices.
UInt32Converter
, options);
264
public static JsonValue? Create(uint? value, JsonNodeOptions? options = null) => value.HasValue ? new JsonValuePrimitive<uint>(value.Value, JsonMetadataServices.
UInt32Converter
, options) : null;
System\Text\Json\Serialization\Metadata\DefaultJsonTypeInfoResolver.Converters.cs (1)
75
Add(JsonMetadataServices.
UInt32Converter
);