Is there an existing issue for this?
Is your feature request related to a problem? Please describe the problem.
ValidateForm duplicates form and field validation logic across target frameworks because older frameworks lack the .NET 11 async validation APIs.
Describe the solution you'd like
Add compatibility extensions for ValidateAsync, AddAsyncValidator, RegisterAsyncFieldValidator, and validation state queries. Share cancellation and task tracking, simplify the component, and cover failures and scope isolation.
Additional context
Async validators require ValidateAsync; synchronous Validate must reject them.
Is there an existing issue for this?
Is your feature request related to a problem? Please describe the problem.
ValidateForm duplicates form and field validation logic across target frameworks because older frameworks lack the .NET 11 async validation APIs.
Describe the solution you'd like
Add compatibility extensions for
ValidateAsync,AddAsyncValidator,RegisterAsyncFieldValidator, and validation state queries. Share cancellation and task tracking, simplify the component, and cover failures and scope isolation.Additional context
Async validators require
ValidateAsync; synchronousValidatemust reject them.