PassportAuthenticationModule.Dispose Method
.NET Framework 2.0
Disposes of the module derived from IHttpModule when called by the HttpRuntime.
Namespace: System.Web.Security
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
Call Dispose when you are finished using the PassportAuthenticationModule. The Dispose method leaves the PassportAuthenticationModule in an unusable state. After calling Dispose, you must release all references to the PassportAuthenticationModule so the memory it occupied can be reclaimed by garbage collection.
Note: |
|---|
|
Always call Dispose before releasing your last reference to the PassportAuthenticationModule. Otherwise, the resources the PassportAuthenticationModule is using will not be freed until garbage collection calls the PassportAuthenticationModule object's destructor. |
Community Additions
ADD
Show:
Note: