C# 클래스 EnterpriseWebLibrary.WpfInitializationOps

파일 보기 프로젝트 열기: enduracode/enterprise-web-library

공개 메소드들

메소드 설명
CleanUpStatics ( ) : void

Call this from Application_Exit. Besides this call, there should be no other code in the method.

HandleException ( System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e ) : void

Call this from Application_DispatcherUnhandledException. Besides this call, there should be no other code in the method.

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

Call this from Application_Startup. Besides this call, there should be no other code in the method.

비공개 메소드들

메소드 설명
shutDown ( ) : void

메소드 상세

CleanUpStatics() 공개 정적인 메소드

Call this from Application_Exit. Besides this call, there should be no other code in the method.
public static CleanUpStatics ( ) : void
리턴 void

HandleException() 공개 정적인 메소드

Call this from Application_DispatcherUnhandledException. Besides this call, there should be no other code in the method.
public static HandleException ( System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e ) : void
e System.Windows.Threading.DispatcherUnhandledExceptionEventArgs
리턴 void

InitStatics() 공개 정적인 메소드

Call this from Application_Startup. 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 application-specific initialization and cleanup. If you have one of these you /// should name the class AppInitializer.
리턴 void