10 references to Undefined
Microsoft.AspNetCore.Authentication.OAuth (1)
JsonKeyClaimAction.cs (1)
46else if (value.ValueKind == JsonValueKind.Object || value.ValueKind == JsonValueKind.Undefined)
Microsoft.AspNetCore.Components.Web (1)
JSComponents\JSComponentInterop.cs (1)
133case JsonValueKind.Undefined:
Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests (2)
ConverterTests\JsonElementComparer.cs (2)
36case JsonValueKind.Undefined: 115case JsonValueKind.Undefined:
System.Text.Json (6)
System\Text\Json\Document\JsonElement.cs (1)
1542/// This value's <see cref="ValueKind"/> is <see cref="JsonValueKind.Undefined"/>.
System\Text\Json\Document\JsonProperty.cs (1)
150=> Value.ValueKind == JsonValueKind.Undefined ? "<Undefined>" : $"\"{ToString()}\"";
System\Text\Json\Nodes\JsonValueOfT.cs (1)
109TypeCode.Boolean => JsonValueKind.Undefined, // Can vary dependending on value.
System\Text\Json\Reader\JsonReaderHelper.cs (2)
54return JsonValueKind.Undefined; 69return JsonValueKind.Undefined;
System\Text\Json\Serialization\JsonSerializer.Read.HandleMetadata.cs (1)
473Debug.Assert(metadataValueKind != JsonValueKind.Undefined);