예제 #1
0
 public void Send(SECSPort sPort)
 {
     if (sPort != null)
     {
         sPort.Send(this);
     }
 }
예제 #2
0
 public void Reply(SECSPort sPort)
 {
     if (sPort != null)
     {
         sPort.Reply(this);
     }
 }
예제 #3
0
 public SECSS9FxMonitor(SECSPort port)
 {
     if (port == null)
     {
         throw new ArgumentNullException("port", "SECSPort Parameter is Null.");
     }
     this.secsPort = port;
     this.InitliazeConversationConfigure();
 }