1 instantiation of RegisterRequest
Microsoft.AspNetCore.Identity (1)
_generated\9\IdentityEndpointsJsonSerializerContext.RegisterRequest.g.cs (1)
32ObjectWithParameterizedConstructorCreator = static args => new global::Microsoft.AspNetCore.Identity.Data.RegisterRequest(){ Email = (string)args[0], Password = (string)args[1] },
37 references to RegisterRequest
Microsoft.AspNetCore.Identity (37)
_generated\0\GeneratedRouteBuilderExtensions.g.cs (11)
73options.EndpointBuilder.Metadata.Add(new AcceptsMetadata(type: typeof(global::Microsoft.AspNetCore.Identity.Data.RegisterRequest), isOptional: false, contentTypes: GeneratedMetadataConstants.JsonContentType)); 87var handler = Cast(del, global::System.Threading.Tasks.Task<global::Microsoft.AspNetCore.Http.HttpResults.Results<global::Microsoft.AspNetCore.Http.HttpResults.Ok, global::Microsoft.AspNetCore.Http.HttpResults.ValidationProblem>> (global::Microsoft.AspNetCore.Identity.Data.RegisterRequest arg0, global::Microsoft.AspNetCore.Http.HttpContext arg1, global::System.IServiceProvider arg2) => throw null!); 95var registration_JsonTypeInfo = (JsonTypeInfo<global::Microsoft.AspNetCore.Identity.Data.RegisterRequest>)jsonSerializerOptions.GetTypeInfo(typeof(global::Microsoft.AspNetCore.Identity.Data.RegisterRequest)); 105var task = handler(ic.GetArgument<global::Microsoft.AspNetCore.Identity.Data.RegisterRequest>(0)!, ic.GetArgument<global::Microsoft.AspNetCore.Http.HttpContext>(1)!, ic.GetArgument<global::System.IServiceProvider>(2)!); 117var registration_resolveBodyResult = await GeneratedRouteBuilderExtensionsCore.TryResolveBodyAsync<global::Microsoft.AspNetCore.Identity.Data.RegisterRequest>(httpContext, logOrThrowExceptionHelper, false, "RegisterRequest", "registration", registration_JsonTypeInfo); 118var registration_local = registration_resolveBodyResult.Item2; 145var registration_resolveBodyResult = await GeneratedRouteBuilderExtensionsCore.TryResolveBodyAsync<global::Microsoft.AspNetCore.Identity.Data.RegisterRequest>(httpContext, logOrThrowExceptionHelper, false, "RegisterRequest", "registration", registration_JsonTypeInfo); 146var registration_local = registration_resolveBodyResult.Item2; 159var result = await filteredInvocation(EndpointFilterInvocationContext.Create<global::Microsoft.AspNetCore.Identity.Data.RegisterRequest, global::Microsoft.AspNetCore.Http.HttpContext, global::System.IServiceProvider>(httpContext, registration_local!, context_local, sp_local)); 170var castHandler = Cast(handler, global::System.Threading.Tasks.Task<global::Microsoft.AspNetCore.Http.HttpResults.Results<global::Microsoft.AspNetCore.Http.HttpResults.Ok, global::Microsoft.AspNetCore.Http.HttpResults.ValidationProblem>> (global::Microsoft.AspNetCore.Identity.Data.RegisterRequest arg0, global::Microsoft.AspNetCore.Http.HttpContext arg1, global::System.IServiceProvider arg2) => throw null!);
_generated\18\IdentityEndpointsJsonSerializerContext.GetJsonTypeInfo.g.cs (1)
50if (type == typeof(global::Microsoft.AspNetCore.Identity.Data.RegisterRequest))
_generated\9\IdentityEndpointsJsonSerializerContext.RegisterRequest.g.cs (23)
13private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.Data.RegisterRequest>? _RegisterRequest; 19public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.Data.RegisterRequest> RegisterRequest 22get => _RegisterRequest ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.Data.RegisterRequest>)Options.GetTypeInfo(typeof(global::Microsoft.AspNetCore.Identity.Data.RegisterRequest)); 25private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.Data.RegisterRequest> Create_RegisterRequest(global::System.Text.Json.JsonSerializerOptions options) 27if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.AspNetCore.Identity.Data.RegisterRequest>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.Data.RegisterRequest> jsonTypeInfo)) 29var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.AspNetCore.Identity.Data.RegisterRequest> 35ConstructorAttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.Data.RegisterRequest).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.Data.RegisterRequest>(options, objectInfo); 58DeclaringType = typeof(global::Microsoft.AspNetCore.Identity.Data.RegisterRequest), 60Getter = static obj => ((global::Microsoft.AspNetCore.Identity.Data.RegisterRequest)obj).Email, 61Setter = static (obj, value) => __set_RegisterRequest_Email((global::Microsoft.AspNetCore.Identity.Data.RegisterRequest)obj, value!), 68AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.Data.RegisterRequest).GetProperty("Email", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 81DeclaringType = typeof(global::Microsoft.AspNetCore.Identity.Data.RegisterRequest), 83Getter = static obj => ((global::Microsoft.AspNetCore.Identity.Data.RegisterRequest)obj).Password, 84Setter = static (obj, value) => __set_RegisterRequest_Password((global::Microsoft.AspNetCore.Identity.Data.RegisterRequest)obj, value!), 91AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.Data.RegisterRequest).GetProperty("Password", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 104private void RegisterRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.Data.RegisterRequest? value) 114writer.WriteString(PropName_Email, ((global::Microsoft.AspNetCore.Identity.Data.RegisterRequest)value).Email); 115writer.WriteString(PropName_Password, ((global::Microsoft.AspNetCore.Identity.Data.RegisterRequest)value).Password); 142private static extern void __set_RegisterRequest_Email(global::Microsoft.AspNetCore.Identity.Data.RegisterRequest obj, string value); 144private static extern void __set_RegisterRequest_Password(global::Microsoft.AspNetCore.Identity.Data.RegisterRequest obj, string value);
Data\IdentityEndpointsJsonSerializerContext.cs (1)
8[JsonSerializable(typeof(RegisterRequest))]
IdentityApiEndpointRouteBuilderExtensions.cs (1)
58([FromBody] RegisterRequest registration, HttpContext context, [FromServices] IServiceProvider sp) =>