FluentCassandra.Types.CassandraType.CassandraType C# (CSharp) Method

CassandraType() public method

public CassandraType ( string type ) : System
type string
return System
        public CassandraType(string type)
        {
            if (string.IsNullOrEmpty(type))
                throw new ArgumentNullException("type");

            _dbType = type;
        }