1 write to Model
Microsoft.AspNetCore.Components.Forms (1)
FieldIdentifier.cs (1)
56Model = model;
11 references to Model
Aspire.Dashboard (1)
Components\Dialogs\InteractionsInputDialog.razor.cs (1)
149if (field.Model is InputViewModel inputModel)
Microsoft.AspNetCore.Components.Endpoints (2)
Forms\ClientValidationCache.cs (2)
57var fieldKey = (fieldIdentifier.Model.GetType(), fieldIdentifier.FieldName); 90return ReferenceEquals(fieldIdentifier.Model, formModel);
Microsoft.AspNetCore.Components.Forms (8)
EditContextDataAnnotationsExtensions.cs (5)
81var modelType = fieldIdentifier.Model.GetType(); 257var propertyValue = propertyInfo.GetValue(fieldIdentifier.Model); 258var validationContext = new ValidationContext(fieldIdentifier.Model, _serviceProvider, items: null) 304await validatableInfo.ValidateAsync(fieldIdentifier.Model, validateContext, cancellationToken); 343var cacheKey = (ModelType: fieldIdentifier.Model.GetType(), fieldIdentifier.FieldName);
FieldIdentifier.cs (3)
80var modelHash = RuntimeHelpers.GetHashCode(Model); 105return ReferenceEquals(otherIdentifier.Model, Model) &&