1 write to Email
Microsoft.AspNetCore.Identity (1)
IdentityEndpointsJsonSerializerContext.ForgotPasswordRequest.g.cs (1)
32
ObjectWithParameterizedConstructorCreator = static args => new global::Microsoft.AspNetCore.Identity.Data.ForgotPasswordRequest(){
Email
= (string)args[0] },
5 references to Email
Microsoft.AspNetCore.Identity (5)
Data\ResetPasswordRequest.cs (1)
15
/// The email address for the user requesting a password reset. This should match <see cref="ForgotPasswordRequest.
Email
"/>.
IdentityApiEndpointRouteBuilderExtensions.cs (2)
210
var user = await userManager.FindByEmailAsync(resetRequest.
Email
);
217
await emailSender.SendPasswordResetCodeAsync(user, resetRequest.
Email
, HtmlEncoder.Default.Encode(code));
IdentityEndpointsJsonSerializerContext.ForgotPasswordRequest.g.cs (2)
58
Getter = static obj => ((global::Microsoft.AspNetCore.Identity.Data.ForgotPasswordRequest)obj).
Email
,
89
writer.WriteString(PropName_Email, ((global::Microsoft.AspNetCore.Identity.Data.ForgotPasswordRequest)value).
Email
);