Timeout property
int
get
Timeout
Implementation
int get Timeout => this._timeout;
set
Timeout
(int value)
Implementation
set Timeout(int value) {
if (value < 1) {
throw new ArgumentException("Strings.TimeoutMustBeGreaterThanZero");
}
this._timeout = value;
}