public SPWindowsServiceInstance(ObjectInstance prototype, SPWindowsService windowsService)
     : base(prototype, windowsService)
 {
     if (windowsService == null)
     {
         throw new ArgumentNullException("windowsService");
     }
 }
Example #2
0
 public BaristaWebSocketsServiceInstance(string siName, SPServer spServer, SPWindowsService spWinService)
     : base(siName, spServer, spWinService)
 {
 }
Example #3
0
 public BaristaWebSocketsServiceInstance(SPServer spServer, SPWindowsService spWinService)
     : this(ServiceInstanceName, spServer, spWinService)
 {
 }
Example #4
0
 public BaristaWebSocketsServiceInstance(SPWindowsService spWinService)
     : this(SPServer.Local, spWinService)
 {
 }
Example #5
0
 public BaristaSearchServiceInstance(SPServer spServer, SPWindowsService spWinService)
     : this(ServiceInstanceName, spServer, spWinService)
 {
 }
Example #6
0
 public BaristaSearchServiceInstance(SPWindowsService spWinService)
     : this(SPServer.Local, spWinService)
 {
 }