Ejemplo n.º 1
0
        public static TypeDescription StringType(int length = 0,
                                                 AllowedLengthEnum allowedLength = AllowedLengthEnum.Variable)
        {
            var stringQualifier = new StringQualifiers(length, allowedLength);

            return(new TypeDescription(new TypeTypeValue[] { TypeString() }, null, stringQualifier));
        }
Ejemplo n.º 2
0
 public StringQualifiers(int length = 0,
                         AllowedLengthEnum allowedLength = AllowedLengthEnum.Variable)
 {
     Length        = length;
     AllowedLength = allowedLength;
 }
Ejemplo n.º 3
0
 public BinaryDataQualifiers(int length = 0,
                             AllowedLengthEnum allowedLength = AllowedLengthEnum.Variable)
 {
     Length        = length;
     AllowedLength = allowedLength;
 }