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)); }
public StringQualifiers(int length = 0, AllowedLengthEnum allowedLength = AllowedLengthEnum.Variable) { Length = length; AllowedLength = allowedLength; }
public BinaryDataQualifiers(int length = 0, AllowedLengthEnum allowedLength = AllowedLengthEnum.Variable) { Length = length; AllowedLength = allowedLength; }