KeepAlive property

bool get KeepAlive
Gets or sets if the request to the internet resource should contain a Connection HTTP header with the value Keep-alive

Implementation

bool get KeepAlive => this._keepAlive;
set KeepAlive (bool value)

Implementation

set KeepAlive(bool value) {
  this._keepAlive = value;
}