1 instantiation of ValidationStateChangedEventArgs
Microsoft.AspNetCore.Components.Forms (1)
ValidationStateChangedEventArgs.cs (1)
14
public static new readonly ValidationStateChangedEventArgs Empty = new
ValidationStateChangedEventArgs
();
9 references to ValidationStateChangedEventArgs
Microsoft.AspNetCore.Components.Forms (5)
EditContext.cs (2)
48
public event EventHandler<
ValidationStateChangedEventArgs
>? OnValidationStateChanged;
89
OnValidationStateChanged?.Invoke(this,
ValidationStateChangedEventArgs
.Empty);
ValidationStateChangedEventArgs.cs (3)
12
/// Gets a shared empty instance of <see cref="
ValidationStateChangedEventArgs
"/>.
14
public static new readonly
ValidationStateChangedEventArgs
Empty = new ValidationStateChangedEventArgs();
17
/// Creates a new instance of <see cref="
ValidationStateChangedEventArgs
" />
Microsoft.AspNetCore.Components.Web (4)
Forms\InputBase.cs (2)
19
private readonly EventHandler<
ValidationStateChangedEventArgs
> _validationStateChangedHandler;
273
private void OnValidateStateChanged(object? sender,
ValidationStateChangedEventArgs
eventArgs)
Forms\ValidationMessage.cs (1)
16
private readonly EventHandler<
ValidationStateChangedEventArgs
>? _validationStateChangedHandler;
Forms\ValidationSummary.cs (1)
18
private readonly EventHandler<
ValidationStateChangedEventArgs
> _validationStateChangedHandler;