System.ComponentModel.DataObjectFieldAttribute.DataObjectFieldAttribute C# (CSharp) Method

DataObjectFieldAttribute() public method

public DataObjectFieldAttribute ( bool primaryKey, bool isIdentity, bool isNullable, int length ) : System
primaryKey bool
isIdentity bool
isNullable bool
length int
return System
        public DataObjectFieldAttribute(bool primaryKey, bool isIdentity, bool isNullable, int length) {
            _primaryKey = primaryKey;
            _isIdentity = isIdentity;
            _isNullable = isNullable;
            _length = length;
        }

Same methods

DataObjectFieldAttribute::DataObjectFieldAttribute ( bool primaryKey ) : System
DataObjectFieldAttribute::DataObjectFieldAttribute ( bool primaryKey, bool isIdentity ) : System
DataObjectFieldAttribute::DataObjectFieldAttribute ( bool primaryKey, bool isIdentity, bool isNullable ) : System