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