48 references to GetBoolean
Microsoft.AspNetCore.Components.Web (19)
JSComponents\JSComponentInterop.cs (1)
130parameterValue = parameterJsonValue.GetBoolean();
WebEventData\ChangeEventArgsReader.cs (1)
31changeArgs.Value = value.GetBoolean();
WebEventData\KeyboardEventArgsReader.cs (6)
42eventArgs.Repeat = property.Value.GetBoolean(); 46eventArgs.CtrlKey = property.Value.GetBoolean(); 50eventArgs.AltKey = property.Value.GetBoolean(); 54eventArgs.ShiftKey = property.Value.GetBoolean(); 58eventArgs.MetaKey = property.Value.GetBoolean(); 66eventArgs.IsComposing = property.Value.GetBoolean();
WebEventData\MouseEventArgsReader.cs (4)
97eventArgs.CtrlKey = property.Value.GetBoolean(); 101eventArgs.ShiftKey = property.Value.GetBoolean(); 105eventArgs.AltKey = property.Value.GetBoolean(); 109eventArgs.MetaKey = property.Value.GetBoolean();
WebEventData\PointerEventArgsReader.cs (1)
57eventArgs.IsPrimary = property.Value.GetBoolean();
WebEventData\ProgressEventArgReader.cs (1)
24eventArgs.LengthComputable = property.Value.GetBoolean();
WebEventData\TouchEventArgsReader.cs (4)
52eventArgs.CtrlKey = property.Value.GetBoolean(); 56eventArgs.ShiftKey = property.Value.GetBoolean(); 60eventArgs.AltKey = property.Value.GetBoolean(); 64eventArgs.MetaKey = property.Value.GetBoolean();
WebEventData\WebEventDescriptorReader.cs (1)
63eventFieldInfo.FieldValue = property.Value.GetBoolean();
Microsoft.AspNetCore.Components.WebView (2)
IpcReceiver.cs (2)
64OnLocationChanged(pageContext, args[0].GetString(), args[1].GetString(), args[2].GetBoolean()); 67OnLocationChanging(pageContext, args[0].GetInt32(), args[1].GetString(), args[2].GetString(), args[3].GetBoolean());
Microsoft.AspNetCore.Identity.FunctionalTests (24)
MapIdentityApiTests.cs (24)
692Assert.False(twoFactorKeyContent.GetProperty("isTwoFactorEnabled").GetBoolean()); 693Assert.False(twoFactorKeyContent.GetProperty("isMachineRemembered").GetBoolean()); 704Assert.True(enable2faContent.GetProperty("isTwoFactorEnabled").GetBoolean()); 705Assert.False(enable2faContent.GetProperty("isMachineRemembered").GetBoolean()); 745Assert.True(enable2faContent.GetProperty("isTwoFactorEnabled").GetBoolean()); 765Assert.False(disable2faContent.GetProperty("isTwoFactorEnabled").GetBoolean()); 800Assert.True(enable2faContent.GetProperty("isTwoFactorEnabled").GetBoolean()); 804Assert.False(resetKeyContent.GetProperty("isTwoFactorEnabled").GetBoolean()); 817Assert.True(enable2faContent.GetProperty("isTwoFactorEnabled").GetBoolean()); 901Assert.False(twoFactorKeyContent.GetProperty("isTwoFactorEnabled").GetBoolean()); 902Assert.False(twoFactorKeyContent.GetProperty("isMachineRemembered").GetBoolean()); 913Assert.True(enable2faContent.GetProperty("isTwoFactorEnabled").GetBoolean()); 914Assert.False(enable2faContent.GetProperty("isMachineRemembered").GetBoolean()); 925Assert.True(session2faContent.GetProperty("isTwoFactorEnabled").GetBoolean()); 926Assert.False(session2faContent.GetProperty("isMachineRemembered").GetBoolean()); 934Assert.True(session2faContent2.GetProperty("isTwoFactorEnabled").GetBoolean()); 935Assert.False(session2faContent2.GetProperty("isMachineRemembered").GetBoolean()); 943Assert.True(persistent2faContent.GetProperty("isTwoFactorEnabled").GetBoolean()); 944Assert.True(persistent2faContent.GetProperty("isMachineRemembered").GetBoolean()); 1041Assert.True(infoResponse.GetProperty("isEmailConfirmed").GetBoolean()); 1059Assert.True(infoPostContent.GetProperty("isEmailConfirmed").GetBoolean()); 1101Assert.True(infoAfterFinalLogin.GetProperty("isEmailConfirmed").GetBoolean()); 1252Assert.False(infoPostContent.GetProperty("isEmailConfirmed").GetBoolean()); 1271Assert.True(infoGetContent.GetProperty("isEmailConfirmed").GetBoolean());
Microsoft.AspNetCore.Mvc.FunctionalTests (1)
ControllerEndpointFiltersTest.cs (1)
46Assert.True(((JsonElement)endpointFilterCalled).GetBoolean());
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
Infrastructure\DefaultTempDataSerializer.cs (1)
36deserializedValue = item.Value.GetBoolean();
System.Text.Json (1)
System\Text\Json\Nodes\JsonValueOfElement.cs (1)
187value = (TypeToConvert)(object)Value.GetBoolean();