Beispiel #1
0
 public GuardServiceEndpointServerCallback(GuardServiceSharedData sharedData)
 {
     this.sharedData = sharedData;
 }
Beispiel #2
0
 public GuardService(GuardServiceSharedData sharedData)
 {
     this.EnableAsynchronization = true;
     this.SharedData             = sharedData;
 }
Beispiel #3
0
 public GuardServiceEndpointServer(int httpListenerPort)
 {
     this.SharedData       = new GuardServiceSharedData();
     this.callback         = new GuardServiceEndpointServerCallback(this.SharedData);
     this.httpListenerPort = httpListenerPort;
 }