Initialize() 개인적인 정적인 메소드

private static Initialize ( ) : void
리턴 void
예제 #1
0
 public static bool ResetRegistry()
 {
     Logger.AddInformation("resetting registry entries", (object)null, (Exception)null, (string)null);
     SebWindowsServiceHandler.Initialize();
     Logger.AddInformation("calling reset on wcf service", (object)null, (Exception)null, (string)null);
     SebWindowsServiceHandler.ResetInputParameters();
     return(SebWindowsServiceHandler._sebWindowsServicePipeProxy.Reset());
 }
예제 #2
0
 public static void Reconnect()
 {
     SebWindowsServiceHandler._initialized = false;
     SebWindowsServiceHandler.Initialize();
 }
예제 #3
0
 public static bool SetRegistryAccordingToConfiguration(Dictionary <RegistryIdentifiers, object> valuesToSet)
 {
     SebWindowsServiceHandler.Initialize();
     SebWindowsServiceHandler.SetInputParameters();
     return(SebWindowsServiceHandler._sebWindowsServicePipeProxy.SetRegistryEntries(valuesToSet, SebWindowsServiceHandler._sid, SebWindowsServiceHandler._username));
 }