CommType Field
Inheritance: CharField
Ejemplo n.º 1
0
 public void Set(QuickFix.Fields.CommType val) 
 { 
     this.CommType = val;
 }
Ejemplo n.º 2
0
 public bool IsSet(QuickFix.Fields.CommType val)
 {
     return(IsSetCommType());
 }
Ejemplo n.º 3
0
 public void Set(QuickFix.Fields.CommType val)
 {
     this.CommType = val;
 }
Ejemplo n.º 4
0
 public QuickFix.Fields.CommType Get(QuickFix.Fields.CommType val)
 {
     GetField(val);
     return(val);
 }
Ejemplo n.º 5
0
 public void EnumFieldTest()
 {
     CommType ct = new CommType(CommType.PER_UNIT);
     Assert.That('1', Is.EqualTo(ct.getValue()));
     ExecInst ei = new ExecInst(ExecInst.STRICT_LIMIT);
     Assert.That("b", Is.EqualTo(ei.getValue()));
     AllocStatus ass = new AllocStatus(AllocStatus.REVERSED);
     Assert.That(7, Is.EqualTo(ass.getValue()));
 }