1 override of GetValue
System.Text.Json (1)
System\Text\Json\Nodes\JsonValueOfT.cs (1)
23
public override T
GetValue
<T>()
97 references to GetValue
Aspire.Hosting.Azure.Tests (1)
AzureBicepProvisionerTests.cs (1)
64
Assert.Equal(20, parameters["age"]?["value"]?.
GetValue
<int>());
Aspire.Hosting.Redis.Tests (4)
RedisFunctionalTests.cs (4)
675
Assert.False(agreements["analytics"]!.
GetValue
<bool>());
676
Assert.False(agreements["notifications"]!.
GetValue
<bool>());
677
Assert.False(agreements["encryption"]!.
GetValue
<bool>());
678
Assert.True(agreements["eula"]!.
GetValue
<bool>());
ConfigurationSchemaGenerator (1)
ConfigSchemaEmitter.cs (1)
450
if (propertyNodeType?.GetValueKind() == JsonValueKind.String && propertyNodeType.
GetValue
<string>() == "boolean")
dotnet-user-jwts (1)
Helpers\SigningKeysHandler.cs (1)
85
var toRemove = signingKeys.SingleOrDefault(key => key["Issuer"].
GetValue
<string>() == issuer);
Microsoft.AspNetCore.Authentication.JwtBearer.Tools.Tests (20)
UserJwtsTests.cs (20)
113
Assert.Equal("dotnet-user-jwts", appSettings["Authentication"]["Schemes"]["Bearer"]["ValidIssuer"].
GetValue
<string>());
116
Assert.Equal("new-issuer", appSettings["Authentication"]["Schemes"]["Bearer"]["ValidIssuer"].
GetValue
<string>());
251
Assert.Equal("baz", fooField["Bar"].
GetValue
<string>());
469
Assert.Equal(32, signingKey["Length"].
GetValue
<int>());
470
Assert.True(Convert.TryFromBase64String(signingKey["Value"].
GetValue
<string>(), new byte[32], out var _));
472
Assert.Equal("baz", fooField["Bar"].
GetValue
<string>());
497
Assert.Equal(32, signingKey["Length"].
GetValue
<int>());
498
Assert.True(Convert.TryFromBase64String(signingKey["Value"].
GetValue
<string>(), new byte[32], out var _));
500
Assert.Equal("baz", fooField["Bar"].
GetValue
<string>());
536
Assert.Equal(32, signingKey["Length"].
GetValue
<int>());
537
Assert.True(Convert.TryFromBase64String(signingKey["Value"].
GetValue
<string>(), new byte[32], out var _));
538
Assert.Equal("test-issuer", signingKey["Issuer"].
GetValue
<string>());
559
Assert.NotNull(signingKeys.SingleOrDefault(signingKey => signingKey["Issuer"].
GetValue
<string>() == "test-issuer"));
560
Assert.NotNull(signingKeys.SingleOrDefault(signingKey => signingKey["Issuer"].
GetValue
<string>() == "test-issuer-2"));
579
Assert.Equal("test-issuer", signingKey1["Issuer"].
GetValue
<string>());
580
Assert.Equal(32, signingKey1["Length"].
GetValue
<int>());
581
Assert.True(Convert.TryFromBase64String(signingKey1["Value"].
GetValue
<string>(), new byte[32], out var _));
583
Assert.Equal("test-issuer", signingKey2["Issuer"].
GetValue
<string>());
584
Assert.Equal(32, signingKey2["Length"].
GetValue
<int>());
585
Assert.True(Convert.TryFromBase64String(signingKey2["Value"].
GetValue
<string>(), new byte[32], out var _));
Microsoft.AspNetCore.Http.Extensions.Tests (2)
RequestDelegateFactoryTests.cs (1)
1391
Assert.Equal(nameof(JsonTodoChild), deserializedResponseBody["$type"]!.
GetValue
<string>());
RequestDelegateGenerator\RequestDelegateCreationTests.Responses.cs (1)
680
Assert.Equal(nameof(JsonTodoChild), node["$type"]!.
GetValue
<string>());
Microsoft.AspNetCore.OpenApi (3)
Extensions\JsonNodeSchemaExtensions.cs (3)
118
var targetKey = schema[OpenApiSchemaKeywords.TypeKeyword]?.
GetValue
<string>() == "array" ? OpenApiSchemaKeywords.MaxItemsKeyword : OpenApiSchemaKeywords.MaxLengthKeyword;
123
var targetKey = schema[OpenApiSchemaKeywords.TypeKeyword]?.
GetValue
<string>() == "array" ? OpenApiSchemaKeywords.MinItemsKeyword : OpenApiSchemaKeywords.MinLengthKeyword;
128
var targetKeySuffix = schema[OpenApiSchemaKeywords.TypeKeyword]?.
GetValue
<string>() == "array" ? "Items" : "Length";
Microsoft.ML.AutoML (9)
SweepableEstimator\Converter\MultiModelPipelineConverter.cs (2)
18
var schema = jValue["schema"].
GetValue
<string>();
19
var estimators = jValue["estimator"].
GetValue
<Dictionary<string, SweepableEstimator>>();
SweepableEstimator\Converter\SweepableEstimatorConverter.cs (2)
19
var estimatorType = jsonObject["estimatorType"].
GetValue
<EstimatorType>();
20
var parameter = jsonObject["parameter"].
GetValue
<Parameter>();
SweepableEstimator\Converter\SweepableEstimatorPipelineConverter.cs (2)
18
var parameter = jNode["parameter"].
GetValue
<Parameter>();
19
var estimators = jNode["estimators"].
GetValue
<SweepableEstimator[]>();
SweepableEstimator\Converter\SweepablePipelineConverter.cs (3)
18
var currentSchema = jValue["currentSchema"].
GetValue
<string>();
19
var schema = jValue["schema"].
GetValue
<string>();
20
var estimators = jValue["estimator"].
GetValue
<Dictionary<string, SweepableEstimator>>();
Microsoft.ML.AutoML.SourceGenerator (20)
SearchSpaceGenerator.cs (20)
39
var className = Utils.ToTitleCase(jNode["name"].
GetValue
<string>());
43
var optionName = Utils.ToTitleCase(t["name"].
GetValue
<string>());
44
string optionTypeName = t["type"].
GetValue
<string>() switch
69
(_, "string") => $"\"{defaultToken.
GetValue
<string>()}\"",
70
(_, "int") => $"{defaultToken.
GetValue
<int>().ToString(CultureInfo.InvariantCulture)}",
71
(_, "double") => $"{defaultToken.
GetValue
<double>().ToString(CultureInfo.InvariantCulture)}",
72
(_, "float") => $"{defaultToken.
GetValue
<float>().ToString(CultureInfo.InvariantCulture)}F",
73
(_, "bool") => defaultToken.
GetValue
<bool>() ? "true" : "false",
74
(_, "Anchor") => defaultToken.
GetValue
<string>(),
75
(_, "ResizingKind") => defaultToken.
GetValue
<string>(),
76
(_, "ColorBits") => defaultToken.
GetValue
<string>(),
77
(_, "ColorsOrder") => defaultToken.
GetValue
<string>(),
78
(_, "BertArchitecture") => defaultToken.
GetValue
<string>(),
79
(_, "Microsoft.ML.Vision.ImageClassificationTrainer.Architecture") => defaultToken.
GetValue
<string>(),
80
(_, "Microsoft.ML.Data.DataKind") => defaultToken.
GetValue
<string>(),
81
(_, "Microsoft.ML.IDataView") => defaultToken.
GetValue
<string>(),
82
(_, "Microsoft.ML.Transforms.Text.TextNormalizingEstimator.CaseMode") => defaultToken.
GetValue
<string>(),
97
var minValue = searchSpaceNode["min"].
GetValue
<double>();
98
var maxValue = searchSpaceNode["max"].
GetValue
<double>();
99
var logBase = searchSpaceObject.ContainsKey("log_base") is false ? "false" : searchSpaceNode["log_base"].
GetValue
<bool>() ? "true" : "false";
System.Text.Json (36)
System\Text\Json\Nodes\JsonArray.cs (2)
137
/// Returns an enumerable that wraps calls to <see cref="JsonNode.
GetValue
{T}"/>.
145
yield return item is null ? (T)(object?)null! : item.
GetValue
<T>();
System\Text\Json\Nodes\JsonNode.Operators.cs (33)
255
public static explicit operator bool(JsonNode value) => value.
GetValue
<bool>();
262
public static explicit operator bool?(JsonNode? value) => value?.
GetValue
<bool>();
269
public static explicit operator byte(JsonNode value) => value.
GetValue
<byte>();
276
public static explicit operator byte?(JsonNode? value) => value?.
GetValue
<byte>();
283
public static explicit operator char(JsonNode value) => value.
GetValue
<char>();
290
public static explicit operator char?(JsonNode? value) => value?.
GetValue
<char>();
297
public static explicit operator DateTime(JsonNode value) => value.
GetValue
<DateTime>();
304
public static explicit operator DateTime?(JsonNode? value) => value?.
GetValue
<DateTime>();
311
public static explicit operator DateTimeOffset(JsonNode value) => value.
GetValue
<DateTimeOffset>();
318
public static explicit operator DateTimeOffset?(JsonNode? value) => value?.
GetValue
<DateTimeOffset>();
325
public static explicit operator decimal(JsonNode value) => value.
GetValue
<decimal>();
332
public static explicit operator decimal?(JsonNode? value) => value?.
GetValue
<decimal>();
339
public static explicit operator double(JsonNode value) => value.
GetValue
<double>();
346
public static explicit operator double?(JsonNode? value) => value?.
GetValue
<double>();
353
public static explicit operator Guid(JsonNode value) => value.
GetValue
<Guid>();
360
public static explicit operator Guid?(JsonNode? value) => value?.
GetValue
<Guid>();
367
public static explicit operator short(JsonNode value) => value.
GetValue
<short>();
374
public static explicit operator short?(JsonNode? value) => value?.
GetValue
<short>();
381
public static explicit operator int(JsonNode value) => value.
GetValue
<int>();
388
public static explicit operator int?(JsonNode? value) => value?.
GetValue
<int>();
395
public static explicit operator long(JsonNode value) => value.
GetValue
<long>();
402
public static explicit operator long?(JsonNode? value) => value?.
GetValue
<long>();
410
public static explicit operator sbyte(JsonNode value) => value.
GetValue
<sbyte>();
418
public static explicit operator sbyte?(JsonNode? value) => value?.
GetValue
<sbyte>();
425
public static explicit operator float(JsonNode value) => value.
GetValue
<float>();
432
public static explicit operator float?(JsonNode? value) => value?.
GetValue
<float>();
439
public static explicit operator string?(JsonNode? value) => value?.
GetValue
<string>();
447
public static explicit operator ushort(JsonNode value) => value.
GetValue
<ushort>();
455
public static explicit operator ushort?(JsonNode? value) => value?.
GetValue
<ushort>();
463
public static explicit operator uint(JsonNode value) => value.
GetValue
<uint>();
471
public static explicit operator uint?(JsonNode? value) => value?.
GetValue
<uint>();
479
public static explicit operator ulong(JsonNode value) => value.
GetValue
<ulong>();
487
public static explicit operator ulong?(JsonNode? value) => value?.
GetValue
<ulong>();
System\Text\Json\Nodes\JsonValue.cs (1)
32
/// <seealso cref="JsonNode.
GetValue
{T}"></seealso>