C# Class EnterpriseWebLibrary.EnterpriseWebFramework.EwfInitializationOps

Datei anzeigen Open project: enduracode/enterprise-web-library

Public Methods

Method Description
CleanUpStatics ( ) : void

Call this from Application_End in your Global.asax.cs file. Besides this call, there should be no other code in the method.

InitStatics ( SystemInitializer globalInitializer, SystemInitializer appInitializer = null ) : void

Call this from Application_Start in your Global.asax.cs file. Besides this call, there should be no other code in the method.

Method Details

CleanUpStatics() public static method

Call this from Application_End in your Global.asax.cs file. Besides this call, there should be no other code in the method.
public static CleanUpStatics ( ) : void
return void

InitStatics() public static method

Call this from Application_Start in your Global.asax.cs file. Besides this call, there should be no other code in the method.
public static InitStatics ( SystemInitializer globalInitializer, SystemInitializer appInitializer = null ) : void
globalInitializer SystemInitializer The system's global initializer. Do not pass null.
appInitializer SystemInitializer The application initializer, which performs web-site specific initialization and cleanup. If you have one of these you /// should name the class AppInitializer.
return void