IIdentityValidator<T>.ValidateAsync Method (T)

 

Asynchronously validates the item.

Namespace:   Microsoft.AspNet.Identity
Assembly:  Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)

Syntax

Task<IdentityResult> ValidateAsync(
    T item
)
Task<IdentityResult^>^ ValidateAsync(
    T item
)
abstract ValidateAsync : 
        item:'T -> Task<IdentityResult>
Function ValidateAsync (
    item As T
) As Task(Of IdentityResult)

Parameters

  • item
    Type: T

    The item to validate.

Return Value

Type: System.Threading.Tasks.Task<IdentityResult>

The task that completes the validation.

See Also

IIdentityValidator<T> Interface
Microsoft.AspNet.Identity Namespace
ASP.NET Identity

Return to top