2 instantiations of PasskeyAttestationState
Microsoft.AspNetCore.Identity (2)
IdentityJsonSerializerContext.PasskeyAttestationState.g.cs (1)
32ObjectWithParameterizedConstructorCreator = static args => new global::Microsoft.AspNetCore.Identity.PasskeyAttestationState(){ Challenge = (global::System.ReadOnlyMemory<byte>)args[0], UserEntity = (global::Microsoft.AspNetCore.Identity.PasskeyUserEntity)args[1] },
PasskeyHandler.cs (1)
74var attestationState = new PasskeyAttestationState
23 references to PasskeyAttestationState
Microsoft.AspNetCore.Identity (23)
IdentityJsonSerializerContext.cs (1)
14[JsonSerializable(typeof(PasskeyAttestationState))]
IdentityJsonSerializerContext.GetJsonTypeInfo.g.cs (1)
58if (type == typeof(global::Microsoft.AspNetCore.Identity.PasskeyAttestationState))
IdentityJsonSerializerContext.PasskeyAttestationState.g.cs (19)
13private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.PasskeyAttestationState>? _PasskeyAttestationState; 19public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.PasskeyAttestationState> PasskeyAttestationState 22get => _PasskeyAttestationState ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.PasskeyAttestationState>)Options.GetTypeInfo(typeof(global::Microsoft.AspNetCore.Identity.PasskeyAttestationState)); 25private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.PasskeyAttestationState> Create_PasskeyAttestationState(global::System.Text.Json.JsonSerializerOptions options) 27if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.AspNetCore.Identity.PasskeyAttestationState>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.PasskeyAttestationState> jsonTypeInfo)) 29var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.AspNetCore.Identity.PasskeyAttestationState> 35ConstructorAttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.PasskeyAttestationState).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.PasskeyAttestationState>(options, objectInfo); 56DeclaringType = typeof(global::Microsoft.AspNetCore.Identity.PasskeyAttestationState), 58Getter = static obj => ((global::Microsoft.AspNetCore.Identity.PasskeyAttestationState)obj).Challenge, 66AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.PasskeyAttestationState).GetProperty("Challenge", InstanceMemberBindingFlags, null, typeof(global::System.ReadOnlyMemory<byte>), global::System.Array.Empty<global::System.Type>(), null), 77DeclaringType = typeof(global::Microsoft.AspNetCore.Identity.PasskeyAttestationState), 79Getter = static obj => ((global::Microsoft.AspNetCore.Identity.PasskeyAttestationState)obj).UserEntity, 87AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.PasskeyAttestationState).GetProperty("UserEntity", InstanceMemberBindingFlags, null, typeof(global::Microsoft.AspNetCore.Identity.PasskeyUserEntity), global::System.Array.Empty<global::System.Type>(), null), 100private void PasskeyAttestationStateSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.PasskeyAttestationState? value) 111global::System.Text.Json.JsonSerializer.Serialize(writer, ((global::Microsoft.AspNetCore.Identity.PasskeyAttestationState)value).Challenge, ReadOnlyMemoryByte); 112global::Microsoft.AspNetCore.Identity.PasskeyUserEntity __value_UserEntity = ((global::Microsoft.AspNetCore.Identity.PasskeyAttestationState)value).UserEntity;
PasskeyHandler.cs (2)
74var attestationState = new PasskeyAttestationState 220PasskeyAttestationState attestationState;