File: ValidationStateChangedEventArgs.cs
Web Access
Project: src\src\Components\Forms\src\Microsoft.AspNetCore.Components.Forms.csproj (Microsoft.AspNetCore.Components.Forms)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.AspNetCore.Components.Forms;
 
/// <summary>
/// Provides information about the <see cref="EditContext.OnValidationStateChanged"/> event.
/// </summary>
public sealed class ValidationStateChangedEventArgs : EventArgs
{
    /// <summary>
    /// Gets a shared empty instance of <see cref="ValidationStateChangedEventArgs"/>.
    /// </summary>
    public static new readonly ValidationStateChangedEventArgs Empty = new ValidationStateChangedEventArgs();
 
    /// <summary>
    /// Creates a new instance of <see cref="ValidationStateChangedEventArgs" />
    /// </summary>
    public ValidationStateChangedEventArgs()
    {
    }
}