10 references to Undefined
Microsoft.AspNetCore.Authentication.OAuth (1)
JsonKeyClaimAction.cs (1)
46
else if (value.ValueKind == JsonValueKind.Object || value.ValueKind == JsonValueKind.
Undefined
)
Microsoft.AspNetCore.Components.Web (1)
JSComponents\JSComponentInterop.cs (1)
133
case JsonValueKind.
Undefined
:
Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests (2)
ConverterTests\JsonElementComparer.cs (2)
36
case JsonValueKind.
Undefined
:
115
case 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)
109
TypeCode.Boolean => JsonValueKind.
Undefined
, // Can vary dependending on value.
System\Text\Json\Reader\JsonReaderHelper.cs (2)
54
return JsonValueKind.
Undefined
;
69
return JsonValueKind.
Undefined
;
System\Text\Json\Serialization\JsonSerializer.Read.HandleMetadata.cs (1)
473
Debug.Assert(metadataValueKind != JsonValueKind.
Undefined
);