| Visual Basic (Declaration) | |
|---|---|
<DataMemberAttribute(Name="CommandType", IsRequired=True)> Public Property CommandType As DbBinaryDataCommandType | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
[DataMemberAttribute(Name="CommandType", IsRequired=true)] public DbBinaryDataCommandType CommandType {get; set;} | |
| C++/CLI | |
|---|---|
[DataMemberAttribute(Name="CommandType", IsRequired=true)] public: property DbBinaryDataCommandType CommandType { DbBinaryDataCommandType get(); void set (DbBinaryDataCommandType value); } | |
Return Value
A DbBinaryDataCommandType enumeration value that specifies how to parse the CommandText property.- For more information refer to OdbcCommand.CommandType if Provider is set to DbBinaryDataProvider.Odbc.
- For more information refer to OleDbCommand.CommandType if Provider is set to DbBinaryDataProvider.OleDb.
- For more information refer to SqlCommand.CommandType if Provider is set to DbBinaryDataProvider.Sql.
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
Copy Code