Example #1
0
 /// <summary>Constructs the ImplHelloWorldServer.</summary>
 /// <param name="client">a connection to the client session. Use this to
 /// send a message to the client.</param>
 public ImplHelloWorldServer(RemoteHelloWorldClient client)
 {
     this.client = client;
 }
Example #2
0
 ///<summary>Return a new instance of HelloWorldServer.</summary>
 ///<param name="client">Reference to remote service</param>
 ///<returns>Server Implementation</returns>
 public HelloWorldServer NewHelloWorldServer(RemoteHelloWorldClient client)
 {
     return(new ImplHelloWorldServer(client));
 }