1 instantiation of ValidationRequestedEventArgs
Microsoft.AspNetCore.Components.Forms (1)
ValidationRequestedEventArgs.cs (1)
14public static new readonly ValidationRequestedEventArgs Empty = new ValidationRequestedEventArgs();
7 references to ValidationRequestedEventArgs
Microsoft.AspNetCore.Components.Forms (6)
EditContext.cs (2)
43public event EventHandler<ValidationRequestedEventArgs>? OnValidationRequested; 219OnValidationRequested?.Invoke(this, ValidationRequestedEventArgs.Empty);
EditContextDataAnnotationsExtensions.cs (1)
110private void OnValidationRequested(object? sender, ValidationRequestedEventArgs e)
ValidationRequestedEventArgs.cs (3)
12/// Gets a shared empty instance of <see cref="ValidationRequestedEventArgs"/>. 14public static new readonly ValidationRequestedEventArgs Empty = new ValidationRequestedEventArgs(); 17/// Creates a new instance of <see cref="ValidationRequestedEventArgs"/>.
Microsoft.AspNetCore.Components.Web (1)
Forms\Mapping\EditContextFormMappingExtensions.cs (1)
50private void OnValidationRequested(object? sender, ValidationRequestedEventArgs e)