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