IdentityFactoryProvider<T> Class

 

Represents a class that is used to configure how the IdentityFactoryMiddleware will create an instance of the specified type for each OwinContext.

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

System.Object
  Microsoft.AspNet.Identity.Owin.IdentityFactoryProvider<T>

public class IdentityFactoryProvider<T> : IIdentityFactoryProvider<T>
where T : class, IDisposable

Type Parameters

T

The type of the object to create.

NameDescription
System_CAPS_pubmethodIdentityFactoryProvider<T>()

Initializes a new instance of the IdentityFactoryProvider<T> class.

NameDescription
System_CAPS_pubpropertyOnCreate

Gets or sets a delegate assigned to this property will be invoked when the related method is called.

System_CAPS_pubpropertyOnDispose

Gets or sets a delegate assigned to this property will be invoked when the related method is called.

NameDescription
System_CAPS_pubmethodCreate(IdentityFactoryOptions<T>, IOwinContext)

Calls the OnCreate delegate.

System_CAPS_pubmethodDispose(IdentityFactoryOptions<T>, T)

Calls the OnDispose delegate.

System_CAPS_pubmethodEquals(Object)

(Inherited from Object.)

System_CAPS_protmethodFinalize()

(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()

(Inherited from Object.)

System_CAPS_pubmethodGetType()

(Inherited from Object.)

System_CAPS_protmethodMemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethodToString()

(Inherited from Object.)

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top
Show: