1 write to Input
IdentitySample.DefaultUI (1)
Areas\Identity\Pages\Account\Manage\Index.cshtml.cs (1)
59
Input
= new InputModel
6 references to Input
IdentitySample.DefaultUI (6)
Areas\Identity\Pages\Account\Manage\Index.cshtml.cs (6)
82
if (
Input
.Name != user.Name)
84
user.Name =
Input
.Name;
87
if (
Input
.Age != user.Age)
89
user.Age =
Input
.Age;
98
if (
Input
.PhoneNumber != user.PhoneNumber)
100
var setPhoneResult = await _userManager.SetPhoneNumberAsync(user,
Input
.PhoneNumber);