Example #1
0
 public Tag(string name, DataType type, TagDirection direction, bool ManualReadOnly)
     : this(name, type)
 {
     mManualRead = ManualReadOnly;
     mDirection = direction;
 }
Example #2
0
 public Tag(string name, DataType type, TagDirection direction)
     : this(name, type)
 {
     mDirection = direction;
 }