System.Web.Security Namespace WindowsAuthenticationModule Class
Disposes of the module derived from IHttpModule when called by the HttpRuntime.
[ VB ]
NotOverridable Public Sub Dispose ( ) Implements IHttpModule.Dispose
[ C# ]
public void Dispose ( );
[ C++ ]
public: __sealed void Dispose ( );
[ JScript ]
public function Dispose ( );
IHttpModule.Dispose
Call Dispose when you are finished using the WindowsAuthenticationModule. The Dispose method leaves the WindowsAuthenticationModule in an unusable state. After calling Dispose, you must release all references to the WindowsAuthenticationModule so the memory it occupied can be reclaimed by garbage collection.
NOTE: Always call Dispose before releasing your last reference to the WindowsAuthenticationModule. Otherwise, the resources the WindowsAuthenticationModule is using will not be freed until garbage collection calls the WindowsAuthenticationModule object's destructor.
WindowsAuthenticationModule Members