IIdentityValidator<T> Interface

 

Defines the methods to implement to validate an item.

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

Syntax

public interface IIdentityValidator<in T>
generic<typename T>
public interface class IIdentityValidator
type IIdentityValidator<'T> = interface end
Public Interface IIdentityValidator(Of In T)

Type Parameters

  • **in **T
    The type of the validator.

Methods

Name Description
System_CAPS_pubmethod ValidateAsync(T)

Asynchronously validates the item.

See Also

Microsoft.AspNet.Identity Namespace
ASP.NET Identity

Return to top