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