Esempio n. 1
0
 ///
 /// <summary>Constructs the ImplClosingServer.</summary>
 ///
 /// <param name=client></param>
 ///
 public ImplClosingServer(RemoteClosingClient client)
 {
     this.client     = client;
     _delegate_close = Myclose;
 }
Esempio n. 2
0
 ///
 /// <summary>Return a new instance of ClosingServer.</summary>
 /// @param client
 ///
 public ClosingServer NewClosingServer(RemoteClosingClient client)
 {
     return(new ImplClosingServer(client));
 }