Ejemplo n.º 1
0
 public void SetupRuntime()
 {
     try
     {
         LoaderManager.Loader.SetupRuntime();
     }
     catch (Exception ex)
     {
         throw ServerExceptionUtils.Wrap(ex);
     }
 }
Ejemplo n.º 2
0
 public void AddHintDirectory(string path)
 {
     try
     {
         LoaderManager.Loader.AddHintDirectory(path);
     }
     catch (Exception ex)
     {
         throw ServerExceptionUtils.Wrap(ex);
     }
 }
Ejemplo n.º 3
0
 public void Initialize(string runtimePath)
 {
     try
     {
         LoaderManager.Initialize(new ExplicitRuntimeLocator(runtimePath));
     }
     catch (Exception ex)
     {
         throw ServerExceptionUtils.Wrap(ex);
     }
 }