IIdentityFactoryProvider<T>.Dispose Method (IdentityFactoryOptions<T>, T)
Releases all resources used by the specified object.
Namespace: Microsoft.AspNet.Identity.Owin
Assembly: Microsoft.AspNet.Identity.Owin (in Microsoft.AspNet.Identity.Owin.dll)
Syntax
void Dispose(
IdentityFactoryOptions<T> options,
T instance
)
void Dispose(
IdentityFactoryOptions<T>^ options,
T instance
)
abstract Dispose :
options:IdentityFactoryOptions<'T> *
instance:'T -> unit
Sub Dispose (
options As IdentityFactoryOptions(Of T),
instance As T
)
Parameters
options
Type: Microsoft.AspNet.Identity.Owin.IdentityFactoryOptions<T>The configuration options.
instance
Type: TThe current instance of the object to dispose.
Remarks
Called at the end of the request to dispose the object created.
See Also
IIdentityFactoryProvider<T> Interface
Microsoft.AspNet.Identity.Owin Namespace
ASP.NET Identity
Return to top