1 instantiation of CollectedClientData
Microsoft.AspNetCore.Identity (1)
IdentityJsonSerializerContext.CollectedClientData.g.cs (1)
32
ObjectWithParameterizedConstructorCreator = static args => new global::Microsoft.AspNetCore.Identity.
CollectedClientData
(){ Type = (string)args[0], Challenge = (global::Microsoft.AspNetCore.Identity.BufferSource)args[1], Origin = (string)args[2], CrossOrigin = (bool?)args[3], TopOrigin = (string)args[4], TokenBinding = (global::Microsoft.AspNetCore.Identity.TokenBinding)args[5] },
39 references to CollectedClientData
Microsoft.AspNetCore.Identity (39)
IdentityJsonSerializerContext.CollectedClientData.g.cs (35)
13
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.
CollectedClientData
>? _CollectedClientData;
19
public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.
CollectedClientData
> CollectedClientData
22
get => _CollectedClientData ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.
CollectedClientData
>)Options.GetTypeInfo(typeof(global::Microsoft.AspNetCore.Identity.
CollectedClientData
));
25
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.
CollectedClientData
> Create_CollectedClientData(global::System.Text.Json.JsonSerializerOptions options)
27
if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.AspNetCore.Identity.
CollectedClientData
>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.
CollectedClientData
> jsonTypeInfo))
29
var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.AspNetCore.Identity.
CollectedClientData
>
35
ConstructorAttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.
CollectedClientData
).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.
CollectedClientData
>(options, objectInfo);
56
DeclaringType = typeof(global::Microsoft.AspNetCore.Identity.
CollectedClientData
),
58
Getter = static obj => ((global::Microsoft.AspNetCore.Identity.
CollectedClientData
)obj).Type,
66
AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.
CollectedClientData
).GetProperty("Type", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null),
79
DeclaringType = typeof(global::Microsoft.AspNetCore.Identity.
CollectedClientData
),
81
Getter = static obj => ((global::Microsoft.AspNetCore.Identity.
CollectedClientData
)obj).Challenge,
89
AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.
CollectedClientData
).GetProperty("Challenge", InstanceMemberBindingFlags, null, typeof(global::Microsoft.AspNetCore.Identity.BufferSource), global::System.Array.Empty<global::System.Type>(), null),
102
DeclaringType = typeof(global::Microsoft.AspNetCore.Identity.
CollectedClientData
),
104
Getter = static obj => ((global::Microsoft.AspNetCore.Identity.
CollectedClientData
)obj).Origin,
112
AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.
CollectedClientData
).GetProperty("Origin", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null),
125
DeclaringType = typeof(global::Microsoft.AspNetCore.Identity.
CollectedClientData
),
127
Getter = static obj => ((global::Microsoft.AspNetCore.Identity.
CollectedClientData
)obj).CrossOrigin,
135
AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.
CollectedClientData
).GetProperty("CrossOrigin", InstanceMemberBindingFlags, null, typeof(bool?), global::System.Array.Empty<global::System.Type>(), null),
145
DeclaringType = typeof(global::Microsoft.AspNetCore.Identity.
CollectedClientData
),
147
Getter = static obj => ((global::Microsoft.AspNetCore.Identity.
CollectedClientData
)obj).TopOrigin,
155
AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.
CollectedClientData
).GetProperty("TopOrigin", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null),
165
DeclaringType = typeof(global::Microsoft.AspNetCore.Identity.
CollectedClientData
),
167
Getter = static obj => ((global::Microsoft.AspNetCore.Identity.
CollectedClientData
)obj).TokenBinding,
175
AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.
CollectedClientData
).GetProperty("TokenBinding", InstanceMemberBindingFlags, null, typeof(global::Microsoft.AspNetCore.Identity.TokenBinding), global::System.Array.Empty<global::System.Type>(), null),
185
private void CollectedClientDataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.
CollectedClientData
? value)
195
string __value_Type = ((global::Microsoft.AspNetCore.Identity.
CollectedClientData
)value).Type;
200
global::Microsoft.AspNetCore.Identity.BufferSource __value_Challenge = ((global::Microsoft.AspNetCore.Identity.
CollectedClientData
)value).Challenge;
206
string __value_Origin = ((global::Microsoft.AspNetCore.Identity.
CollectedClientData
)value).Origin;
211
bool? __value_CrossOrigin = ((global::Microsoft.AspNetCore.Identity.
CollectedClientData
)value).CrossOrigin;
217
string __value_TopOrigin = ((global::Microsoft.AspNetCore.Identity.
CollectedClientData
)value).TopOrigin;
222
global::Microsoft.AspNetCore.Identity.TokenBinding __value_TokenBinding = ((global::Microsoft.AspNetCore.Identity.
CollectedClientData
)value).TokenBinding;
IdentityJsonSerializerContext.cs (1)
9
[JsonSerializable(typeof(
CollectedClientData
))]
IdentityJsonSerializerContext.GetJsonTypeInfo.g.cs (1)
46
if (type == typeof(global::Microsoft.AspNetCore.Identity.
CollectedClientData
))
PasskeyHandler.cs (2)
572
CollectedClientData
clientData;
651
private ValueTask<bool> ValidateOriginAsync(
CollectedClientData
clientData, HttpContext httpContext)