HttpContextBase::ThreadAbortOnTimeout Property

.NET Framework (current version)
 

When implemented in a derived class, gets or sets a value that specifies whether the ASP.NET runtime should call Thread::Abort on the thread that is servicing this request when the request times out.

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

public:
property bool ThreadAbortOnTimeout {
	virtual bool get();
	virtual void set(bool value);
}

Property Value

Type: System::Boolean

true if Thread::Abort will be called when the thread times out; otherwise, false. The default is true.

For more information, see HttpContext::ThreadAbortOnTimeout.

.NET Framework
Available since 4.5
Return to top
Show: