1 instantiation of ResetPasswordRequest
Microsoft.AspNetCore.Identity (1)
IdentityEndpointsJsonSerializerContext.ResetPasswordRequest.g.cs (1)
32ObjectWithParameterizedConstructorCreator = static args => new global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest(){ Email = (string)args[0], ResetCode = (string)args[1], NewPassword = (string)args[2] },
37 references to ResetPasswordRequest
Microsoft.AspNetCore.Identity (37)
Data\IdentityEndpointsJsonSerializerContext.cs (1)
11[JsonSerializable(typeof(ResetPasswordRequest))]
GeneratedRouteBuilderExtensions.g.cs (11)
875options.EndpointBuilder.Metadata.Add(new AcceptsMetadata(type: typeof(global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest), isOptional: false, contentTypes: GeneratedMetadataConstants.JsonContentType)); 888var 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.ResetPasswordRequest arg0, global::System.IServiceProvider arg1) => throw null!); 896var resetRequest_JsonTypeInfo = (JsonTypeInfo<global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest>)jsonSerializerOptions.GetTypeInfo(typeof(global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest)); 906var task = handler(ic.GetArgument<global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest>(0)!, ic.GetArgument<global::System.IServiceProvider>(1)!); 918var resetRequest_resolveBodyResult = await GeneratedRouteBuilderExtensionsCore.TryResolveBodyAsync<global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest>(httpContext, logOrThrowExceptionHelper, false, "ResetPasswordRequest", "resetRequest", resetRequest_JsonTypeInfo); 919var resetRequest_local = resetRequest_resolveBodyResult.Item2; 945var resetRequest_resolveBodyResult = await GeneratedRouteBuilderExtensionsCore.TryResolveBodyAsync<global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest>(httpContext, logOrThrowExceptionHelper, false, "ResetPasswordRequest", "resetRequest", resetRequest_JsonTypeInfo); 946var resetRequest_local = resetRequest_resolveBodyResult.Item2; 958var result = await filteredInvocation(EndpointFilterInvocationContext.Create<global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest, global::System.IServiceProvider>(httpContext, resetRequest_local!, sp_local)); 969var 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.ResetPasswordRequest arg0, global::System.IServiceProvider arg1) => throw null!);
IdentityApiEndpointRouteBuilderExtensions.cs (1)
226([FromBody] ResetPasswordRequest resetRequest, [FromServices] IServiceProvider sp) =>
IdentityEndpointsJsonSerializerContext.GetJsonTypeInfo.g.cs (1)
58if (type == typeof(global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest))
IdentityEndpointsJsonSerializerContext.ResetPasswordRequest.g.cs (23)
13private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest>? _ResetPasswordRequest; 19public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest> ResetPasswordRequest 22get => _ResetPasswordRequest ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest>)Options.GetTypeInfo(typeof(global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest)); 25private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest> Create_ResetPasswordRequest(global::System.Text.Json.JsonSerializerOptions options) 27if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest> jsonTypeInfo)) 29var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest> 35ConstructorAttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest).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.Data.ResetPasswordRequest>(options, objectInfo); 56DeclaringType = typeof(global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest), 58Getter = static obj => ((global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest)obj).Email, 66AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest).GetProperty("Email", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 79DeclaringType = typeof(global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest), 81Getter = static obj => ((global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest)obj).ResetCode, 89AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest).GetProperty("ResetCode", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 102DeclaringType = typeof(global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest), 104Getter = static obj => ((global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest)obj).NewPassword, 112AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest).GetProperty("NewPassword", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 125private void ResetPasswordRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest? value) 135writer.WriteString(PropName_Email, ((global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest)value).Email); 136writer.WriteString(PropName_ResetCode, ((global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest)value).ResetCode); 137writer.WriteString(PropName_NewPassword, ((global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest)value).NewPassword);