예제 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ACItemBindingAttribute"/> class.
 /// used for flag intepretation.
 /// </summary>
 /// <param name="type">The type.</param>
 public ACItemBindingAttribute(CommandInterpretType type)
 {
     Type = type;
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ACItemBindingAttribute"/> class.
 /// for a name value pair, which property value is delimited with multi values.
 /// for example:
 /// bump lock owners=4711:1174:333333
 /// </summary>
 /// <param name="literalName">Name of the literal.</param>
 /// <param name="delimiter">The delimiter.</param>
 /// <param name="type">The type.</param>
 public ACItemBindingAttribute(string literalName, char delimiter, CommandInterpretType type)
 {
     LiteralName = literalName;
     Delimiter   = delimiter;
     Type        = type;
 }
예제 #3
0
 public ACItemBindingAttribute(string literalName, CommandInterpretType type)
 {
     LiteralName = literalName;
     Type        = type;
 }