Beispiel #1
0
 internal SECS1Reader(string name, SECS1Port secs1, SECS1Writer writer, SECS1EventExecutor exe)
 {
     this.name          = name;
     this.secs1         = secs1;
     this.writer        = writer;
     this.eventExecutor = exe;
 }
Beispiel #2
0
 public SECSPort(string name)
 {
     this.Name = name;
     if (string.IsNullOrEmpty(this.name))
     {
         this.name = "SECSPORT" + SECSUtility.Now();
     }
     this.secs1Para = new SECS1Parameters();
     this.hsmsPara  = new HSMSParameters();
     this.hsmsPort  = new HSMSPort();
     this.secs1Port = new SECS1Port();
 }
Beispiel #3
0
 internal SECS1Writer(string name, SECS1Port secs1)
 {
     this.name  = name;
     this.secs1 = secs1;
 }
 internal SECS1EventExecutor(string name, SECS1Port secs1)
 {
     this.name  = name;
     this.secs1 = secs1;
 }