2 writes to _editContext
Microsoft.AspNetCore.Components.Web (2)
Forms\EditForm.cs (2)
44
_editContext
= value;
126
_editContext
= new EditContext(Model!);
11 references to _editContext
Microsoft.AspNetCore.Components.Web (11)
Forms\EditForm.cs (11)
41
get =>
_editContext
;
124
if (Model != null && Model !=
_editContext
?.Model)
133
Debug.Assert(
_editContext
!= null);
138
builder.OpenRegion(
_editContext
.GetHashCode());
169
builder.AddComponentParameter(8, "Value",
_editContext
);
174
childBuilder.AddContent(0, ChildContent(
_editContext
));
202
Debug.Assert(
_editContext
!= null);
207
await OnSubmit.InvokeAsync(
_editContext
);
212
var isValid = await
_editContext
.ValidateAsync();
216
await OnValidSubmit.InvokeAsync(
_editContext
);
221
await OnInvalidSubmit.InvokeAsync(
_editContext
);