The type of command represented by an AseCommand.
CommandType CommandType
Read-write
IDbCommand.CommandType
Supported command types are as follows:
CommandType.StoredProcedure: When you specify this CommandType, the command text must be the name of a stored procedure and you must supply any arguments as AseParameter objects.
When the CommandType property is set to StoredProcedure, the CommandText property should be set to the name of the stored procedure. The command executes this stored procedure when you call one of the Execute methods.