IIdentityFactoryProvider<T> Interface
Provides methods used to create objects per request.
Namespace: Microsoft.AspNet.Identity.Owin
Assembly: Microsoft.AspNet.Identity.Owin (in Microsoft.AspNet.Identity.Owin.dll)
Syntax
public interface IIdentityFactoryProvider<T>
where T : IDisposable
generic<typename T>
where T : IDisposable
public interface class IIdentityFactoryProvider
type IIdentityFactoryProvider<'T when 'T : IDisposable> = interface end
Public Interface IIdentityFactoryProvider(Of T As IDisposable)
Type Parameters
- T
The type of the object to create.
Methods
Name | Description | |
---|---|---|
Create(IdentityFactoryOptions<T>, IOwinContext) | Creates an object. |
|
Dispose(IdentityFactoryOptions<T>, T) | Releases all resources used by the specified object. |
See Also
Microsoft.AspNet.Identity.Owin Namespace
ASP.NET Identity
Return to top