1 write to NewEmail
Microsoft.AspNetCore.Identity (1)
IdentityEndpointsJsonSerializerContext.InfoRequest.g.cs (1)
32
ObjectWithParameterizedConstructorCreator = static args => new global::Microsoft.AspNetCore.Identity.Data.InfoRequest(){
NewEmail
= (string)args[0], NewPassword = (string)args[1], OldPassword = (string)args[2] },
8 references to NewEmail
Microsoft.AspNetCore.Identity (8)
IdentityApiEndpointRouteBuilderExtensions.cs (6)
357
if (!string.IsNullOrEmpty(infoRequest.
NewEmail
) && !_emailAddressAttribute.IsValid(infoRequest.
NewEmail
))
359
return CreateValidationProblem(IdentityResult.Failed(userManager.ErrorDescriber.InvalidEmail(infoRequest.
NewEmail
)));
377
if (!string.IsNullOrEmpty(infoRequest.
NewEmail
))
381
if (email != infoRequest.
NewEmail
)
383
await SendConfirmationEmailAsync(user, userManager, context, infoRequest.
NewEmail
, isChange: true);
IdentityEndpointsJsonSerializerContext.InfoRequest.g.cs (2)
58
Getter = static obj => ((global::Microsoft.AspNetCore.Identity.Data.InfoRequest)obj).
NewEmail
,
126
writer.WriteString(PropName_NewEmail, ((global::Microsoft.AspNetCore.Identity.Data.InfoRequest)value).
NewEmail
);