Example #1
0
 ///
 /// <summary>Constructs the ImplTypesServer.</summary>
 ///
 /// <param name=client></param>
 ///
 public ImplTypesServer(RemoteTypesClient client)
 {
     this.client     = client;
     _delegate_test1 = TestMap;
     _delegate_test2 = TestSet;
     _delegate_test3 = TestList;
     _delegate_test4 = TestDateTime;
 }
Example #2
0
 ///
 /// <summary>Return a new instance of TypesServer.</summary>
 /// @param client
 ///
 public TypesServer NewTypesServer(RemoteTypesClient client)
 {
     return(new ImplTypesServer(client));
 }