1 implementation of ValidateAsync
Microsoft.Extensions.Validation (1)
ValidatableTypeInfo.cs (1)
142
public virtual async Task
ValidateAsync
(object? value, ValidateContext context, CancellationToken cancellationToken)
5 references to ValidateAsync
Microsoft.AspNetCore.Components.Forms (1)
EditContextDataAnnotationsExtensions.cs (1)
213
await validatableInfo.
ValidateAsync
(_editContext.Model, validateContext, cancellationToken);
Microsoft.Extensions.Validation (4)
ValidatableParameterInfo.cs (2)
119
tracker.Track(validatableType.
ValidateAsync
(item, currentContext, cancellationToken));
145
await validatableType.
ValidateAsync
(value, context, cancellationToken);
ValidatablePropertyInfo.cs (2)
165
tracker.Track(validatableType.
ValidateAsync
(item, currentContext, cancellationToken));
187
await validatableType.
ValidateAsync
(propertyValue, context, cancellationToken);