4 references to Int16Converter
Microsoft.AspNetCore.SignalR.Tests (1)
AppJsonSerializerContext.Int16.g.cs (1)
31
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<short>(options, global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.
Int16Converter
);
System.Text.Json (3)
System\Text\Json\Nodes\JsonValue.CreateOverloads.cs (2)
145
public static JsonValue Create(short value, JsonNodeOptions? options = null) => new JsonValuePrimitive<short>(value, JsonMetadataServices.
Int16Converter
, options);
153
public static JsonValue? Create(short? value, JsonNodeOptions? options = null) => value.HasValue ? new JsonValuePrimitive<short>(value.Value, JsonMetadataServices.
Int16Converter
, options) : null;
System\Text\Json\Serialization\Metadata\DefaultJsonTypeInfoResolver.Converters.cs (1)
62
Add(JsonMetadataServices.
Int16Converter
);