Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

HttpResponse::IsClientConnected Property

 

Gets a value indicating whether the client is still connected to the server.

Namespace:   System.Web
Assembly:  System.Web (in System.Web.dll)

public:
property bool IsClientConnected {
	bool get();
}

Property Value

Type: System::Boolean

true if the client is currently connected; otherwise, false.

The IsClientConnected property returns false when the following conditions are true:

The following example uses the IsClientConnected property to check whether the client that is requesting the page remains connected to the server. If IsClientConnected is true, the code calls the Redirect method, and the client will view another page. If IsClientConnected is false, then the code calls the End method and all page processing is terminated.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft