Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
HttpTransportBindingElement.KeepAliveEnabled Property
Definition
- Namespace:
- System.ServiceModel.Channels
- Assemblies:
- System.ServiceModel.dll, System.ServiceModel.Http.dll
- Assembly:
- System.ServiceModel.dll
- Assembly:
- System.ServiceModel.Http.dll
- Packages:
- System.ServiceModel.Http v10.0.652802, System.ServiceModel.Primitives v10.0.652802
- Package:
- System.ServiceModel.Http v10.0.652802
Important
Some information relates to prerelease product that may be substantially modified before itβs released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that indicates whether to make a persistent connection to a service endpoint.
public:
property bool KeepAliveEnabled { bool get(); void set(bool value); };
public bool KeepAliveEnabled { get; set; }
member this.KeepAliveEnabled : bool with get, set
Public Property KeepAliveEnabled As Boolean
Property Value
true if the request to the service endpoint should contain a Connection HTTP header with the value Keep-alive; otherwise, false. The default is true.
Examples
The following code shows how to set this property.
HttpTransportBindingElement transport = new HttpTransportBindingElement();
transport.ManualAddressing = true;
transport.KeepAliveEnabled = keepAliveEnabled;
Remarks
Set this property to true to send a Connection HTTP header with the value Keep-alive. A client uses this property to indicate a preference for persistent connections. When this property is true, the connection that the client makes to a service endpoint is persistent if the service endpoint supports that.
Applies to
Feedback
Was this page helpful?
