IDbCommand.CommandTimeout 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定結束執行命令的嘗試並產生錯誤之前的等待時間 (以秒為單位)。
public:
property int CommandTimeout { int get(); void set(int value); };
public int CommandTimeout { get; set; }
member this.CommandTimeout : int with get, set
Public Property CommandTimeout As Integer
屬性值
等待命令執行的時間 (以秒為單位)。 預設值為 30 秒。
例外狀況
指派的屬性值小於 0。
範例
下列範例會建立衍生類別的實例, SqlCommand 並設定其部分屬性。
public void CreateSqlCommand()
{
SqlCommand command = new SqlCommand();
command.CommandTimeout = 15;
command.CommandType = CommandType.Text;
}
Public Sub CreateSqlCommand()
Dim command As New SqlCommand()
command.CommandTimeout = 15
command.CommandType = CommandType.Text
End Sub