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