Timeout property

int Timeout
Gets or sets the timeout used when sending HTTP requests and when receiving HTTP responses, in milliseconds. Defaults to 100000.

Implementation

int get Timeout => this._timeout;
void Timeout=(int value)

Implementation

set Timeout(int value) {
  if (value < 1) {
    throw new ArgumentException("Strings.TimeoutMustBeGreaterThanZero");
  }

  this._timeout = value;
}