Example #1
0
 public SimpleChannel(int port)
 {
     svr_chnl = new SimpleServerChannel(port);
     cnt_chnl = new SimpleClientChannel();
 }
Example #2
0
		public SimpleChannel (int port)
		{
			svr_chnl = new SimpleServerChannel (port);
			cnt_chnl = new SimpleClientChannel ();
		}
Example #3
0
 public SimpleChannel()
 {
     svr_chnl = new SimpleServerChannel(0);
     cnt_chnl = new SimpleClientChannel();
 }
Example #4
0
		public SimpleChannel ()
	        {
			svr_chnl = new SimpleServerChannel (0);
			cnt_chnl = new SimpleClientChannel ();
		}