IIdentityFactoryProvider<T>.Create Method (IdentityFactoryOptions<T>, IOwinContext)

 

Creates an object.

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

Syntax

T Create(
    IdentityFactoryOptions<T> options,
    IOwinContext context
)
T Create(
    IdentityFactoryOptions<T>^ options,
    IOwinContext^ context
)
abstract Create : 
        options:IdentityFactoryOptions<'T> *
        context:IOwinContext -> 'T
Function Create (
    options As IdentityFactoryOptions(Of T),
    context As IOwinContext
) As T

Parameters

Return Value

Type: T

An object of type {0}.

Remarks

Called once per request to create an object.

See Also

IIdentityFactoryProvider<T> Interface
Microsoft.AspNet.Identity.Owin Namespace
ASP.NET Identity

Return to top