IIdentityFactoryProvider<T>.Create Method

Creates an object.

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

Syntax

'Declaration
Function Create ( _
    options As IdentityFactoryOptions(Of T), _
    context As IOwinContext _
) As T
'Usage
Dim instance As IIdentityFactoryProvider 
Dim options As IdentityFactoryOptions(Of T)
Dim context As IOwinContext 
Dim returnValue As T

returnValue = instance.Create(options, _
    context)
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 : IdentityFactoryOptions<T>, 
    context : IOwinContext
) : T

Parameters

Return Value

Type: T
An object of type [{0}].

Remarks

Called once per request to create an object.

See Also

Reference

IIdentityFactoryProvider<T> Interface

Microsoft.AspNet.Identity.Owin Namespace

Other Resources

ASP.NET Identity