2 instantiations of PasskeyAttestationState
Microsoft.AspNetCore.Identity (2)
Generated\361d1da7f942c932\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)
84var attestationState = new PasskeyAttestationState
33 references to PasskeyAttestationState
Microsoft.AspNetCore.Identity (33)
Generated\361d1da7f942c932\IdentityJsonSerializerContext.GetJsonTypeInfo.g.cs (1)
66if (type == typeof(global::Microsoft.AspNetCore.Identity.PasskeyAttestationState))
Generated\361d1da7f942c932\IdentityJsonSerializerContext.PasskeyAttestationState.g.cs (29)
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), 41jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Microsoft.AspNetCore.Identity.PasskeyAttestationState>(options, objectInfo); 58DeclaringType = typeof(global::Microsoft.AspNetCore.Identity.PasskeyAttestationState), 60Getter = static obj => ((global::Microsoft.AspNetCore.Identity.PasskeyAttestationState)obj).Challenge, 61Setter = static (obj, value) => __set_PasskeyAttestationState_Challenge((global::Microsoft.AspNetCore.Identity.PasskeyAttestationState)obj, value!), 68AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.PasskeyAttestationState).GetProperty("Challenge", InstanceMemberBindingFlags, null, typeof(global::System.ReadOnlyMemory<byte>), global::System.Array.Empty<global::System.Type>(), null), 79DeclaringType = typeof(global::Microsoft.AspNetCore.Identity.PasskeyAttestationState), 81Getter = static obj => ((global::Microsoft.AspNetCore.Identity.PasskeyAttestationState)obj).UserEntity, 82Setter = static (obj, value) => __set_PasskeyAttestationState_UserEntity((global::Microsoft.AspNetCore.Identity.PasskeyAttestationState)obj, value!), 89AttributeProviderFactory = 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), 102DeclaringType = typeof(global::Microsoft.AspNetCore.Identity.PasskeyAttestationState), 104Getter = static obj => ((global::Microsoft.AspNetCore.Identity.PasskeyAttestationState)obj).IsConditionallyMediated, 105Setter = static (obj, value) => __set_PasskeyAttestationState_IsConditionallyMediated((global::Microsoft.AspNetCore.Identity.PasskeyAttestationState)obj, value!), 112AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.PasskeyAttestationState).GetProperty("IsConditionallyMediated", InstanceMemberBindingFlags, null, typeof(bool), global::System.Array.Empty<global::System.Type>(), null), 122private void PasskeyAttestationStateSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.PasskeyAttestationState? value) 133global::System.Text.Json.JsonSerializer.Serialize(writer, ((global::Microsoft.AspNetCore.Identity.PasskeyAttestationState)value).Challenge, ReadOnlyMemoryByte); 134global::Microsoft.AspNetCore.Identity.PasskeyUserEntity __value_UserEntity = ((global::Microsoft.AspNetCore.Identity.PasskeyAttestationState)value).UserEntity; 140writer.WriteBoolean(PropName_isConditionallyMediated, ((global::Microsoft.AspNetCore.Identity.PasskeyAttestationState)value).IsConditionallyMediated); 167private static extern void __set_PasskeyAttestationState_Challenge(global::Microsoft.AspNetCore.Identity.PasskeyAttestationState obj, global::System.ReadOnlyMemory<byte> value); 169private static extern void __set_PasskeyAttestationState_UserEntity(global::Microsoft.AspNetCore.Identity.PasskeyAttestationState obj, global::Microsoft.AspNetCore.Identity.PasskeyUserEntity value); 171private static extern void __set_PasskeyAttestationState_IsConditionallyMediated(global::Microsoft.AspNetCore.Identity.PasskeyAttestationState obj, bool value);
IdentityJsonSerializerContext.cs (1)
14[JsonSerializable(typeof(PasskeyAttestationState))]
PasskeyHandler.cs (2)
84var attestationState = new PasskeyAttestationState 341PasskeyAttestationState attestationState;