2 instantiations of PasskeyAssertionState
Microsoft.AspNetCore.Identity (2)
IdentityJsonSerializerContext.PasskeyAssertionState.g.cs (1)
32ObjectWithParameterizedConstructorCreator = static args => new global::Microsoft.AspNetCore.Identity.PasskeyAssertionState(){ Challenge = (global::System.ReadOnlyMemory<byte>)args[0], UserId = (string)args[1] },
PasskeyHandler.cs (1)
126var assertionState = new PasskeyAssertionState
23 references to PasskeyAssertionState
Microsoft.AspNetCore.Identity (23)
IdentityJsonSerializerContext.cs (1)
15[JsonSerializable(typeof(PasskeyAssertionState))]
IdentityJsonSerializerContext.GetJsonTypeInfo.g.cs (1)
54if (type == typeof(global::Microsoft.AspNetCore.Identity.PasskeyAssertionState))
IdentityJsonSerializerContext.PasskeyAssertionState.g.cs (19)
13private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.PasskeyAssertionState>? _PasskeyAssertionState; 19public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.PasskeyAssertionState> PasskeyAssertionState 22get => _PasskeyAssertionState ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.PasskeyAssertionState>)Options.GetTypeInfo(typeof(global::Microsoft.AspNetCore.Identity.PasskeyAssertionState)); 25private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.PasskeyAssertionState> Create_PasskeyAssertionState(global::System.Text.Json.JsonSerializerOptions options) 27if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.AspNetCore.Identity.PasskeyAssertionState>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.PasskeyAssertionState> jsonTypeInfo)) 29var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.AspNetCore.Identity.PasskeyAssertionState> 35ConstructorAttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.PasskeyAssertionState).GetConstructor(InstanceMemberBindingFlags, binder: null, global::System.Array.Empty<global::System.Type>(), modifiers: null), 39jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Microsoft.AspNetCore.Identity.PasskeyAssertionState>(options, objectInfo); 56DeclaringType = typeof(global::Microsoft.AspNetCore.Identity.PasskeyAssertionState), 58Getter = static obj => ((global::Microsoft.AspNetCore.Identity.PasskeyAssertionState)obj).Challenge, 66AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.PasskeyAssertionState).GetProperty("Challenge", InstanceMemberBindingFlags, null, typeof(global::System.ReadOnlyMemory<byte>), global::System.Array.Empty<global::System.Type>(), null), 77DeclaringType = typeof(global::Microsoft.AspNetCore.Identity.PasskeyAssertionState), 79Getter = static obj => ((global::Microsoft.AspNetCore.Identity.PasskeyAssertionState)obj).UserId, 87AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.PasskeyAssertionState).GetProperty("UserId", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 97private void PasskeyAssertionStateSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.PasskeyAssertionState? value) 108global::System.Text.Json.JsonSerializer.Serialize(writer, ((global::Microsoft.AspNetCore.Identity.PasskeyAssertionState)value).Challenge, ReadOnlyMemoryByte); 109string __value_UserId = ((global::Microsoft.AspNetCore.Identity.PasskeyAssertionState)value).UserId;
PasskeyHandler.cs (2)
126var assertionState = new PasskeyAssertionState 375PasskeyAssertionState assertionState;