Beispiel #1
0
 public BindingAttribute(string name, enumBindingDirection direction, Type semanticType, bool isStrongBinding)
 {
     _name            = name;
     _direction       = direction;
     _semanticType    = semanticType;
     _isStrongBinding = isStrongBinding;
 }
Beispiel #2
0
 public BindingAttribute(string name, string description, enumBindingDirection direction, Type semanticType, Type dataType, bool isStrongBinding)
     : this(name, direction, semanticType, isStrongBinding)
 {
     _description = description;
     _dataType    = dataType;
 }