24 references to InteractionType
Microsoft.AspNetCore.Components.WebAssembly.Authentication (24)
_generated\1\InteractiveRequestOptionsSerializerContext.InteractionType.g.cs (10)
13private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType>? _InteractionType; 19public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType> InteractionType 22get => _InteractionType ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType>)Options.GetTypeInfo(typeof(global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType)); 25private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType> Create_InteractionType(global::System.Text.Json.JsonSerializerOptions options) 27if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType> jsonTypeInfo)) 29global::System.Text.Json.Serialization.JsonConverter converter = ExpandConverter(typeof(global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType), new global::System.Text.Json.Serialization.JsonStringEnumConverter<global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType>(), options); 30jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType> (options, converter);
_generated\10\InteractiveRequestOptionsSerializerContext.GetJsonTypeInfo.g.cs (1)
22if (type == typeof(global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType))
_generated\3\InteractiveRequestOptionsSerializerContext.OptionsRecord.g.cs (4)
97var info2 = new global::System.Text.Json.Serialization.Metadata.JsonPropertyInfoValues<global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType> 112AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.Converter.OptionsRecord).GetProperty("Interaction", InstanceMemberBindingFlags, null, typeof(global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType), global::System.Array.Empty<global::System.Type>(), null), 115properties[2] = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreatePropertyInfo<global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType>(options, info2); 162private static extern void __set_OptionsRecord_Interaction(ref global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.Converter.OptionsRecord obj, global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType value);
Models\InteractionType.cs (1)
11[JsonConverter(typeof(JsonStringEnumConverter<InteractionType>))]
Models\InteractiveRequestOptions.cs (3)
20public required InteractionType Interaction { get; init; } 127public InteractionType Interaction { get; init; } 135InteractionType interaction,
NavigationManagerExtensions.cs (2)
41Interaction = InteractionType.SignOut, 80Interaction = InteractionType.SignIn,
RemoteAuthenticatorViewCore.cs (1)
379return GetCachedNavigationState()?.Interaction == InteractionType.SignOut;
Services\RemoteAuthenticationService.cs (2)
145Interaction = InteractionType.GetToken, 167Interaction = InteractionType.GetToken,