Gets or sets the wait time before terminating the attempt to execute a command and generating an error.
Visual Basic (Declaration) | |
---|---|
Public Property CommandTimeout As Integer |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
public int CommandTimeout {get; set;} |
The follwoing example set the command timeout to 45 seconds.
C# | Copy Code |
---|---|
Chart.Series.CommandTimeout=45; |
Visual Basic | Copy Code |
---|---|
Chart.Series.CommandTimeout=45 |