Exemplo n.º 1
0
 internal ByteFieldMetadata(string fieldName, InternalFieldAttributes attributes)
     : this(fieldName, 0, 255, (FieldAttributes)attributes)
 {
 }
Exemplo n.º 2
0
 internal IntegerFieldMetadata(string fieldName, InternalFieldAttributes attributes)
     : this(fieldName, 0, Int32.MaxValue, (FieldAttributes)attributes)
 {
 }
Exemplo n.º 3
0
 /// <summary>
 /// Constructs a new <see cref="FieldMetadata"/>.
 /// </summary>
 /// <param name="fieldName">Mapped field name.</param>
 /// <param name="attributes">Attributes about the field.</param>
 internal FieldMetadata(string fieldName, InternalFieldAttributes attributes)
     : this(fieldName)
 {
     Attributes = attributes;
 }