IStopListeningRegisteredObject.StopListening Method

Definition

Stops listening for new requests.

public:
 void StopListening();
public void StopListening ();
abstract member StopListening : unit -> unit
Public Sub StopListening ()

Remarks

The StopListening method is supported only when running in IIS integrated mode. The ASP.NET runtime does not guarantee that the StopListening method will ever fire.

The StopListening method must not throw exceptions, otherwise the behavior is undefined and the process will likely be terminated. Further, to avoid creating deadlocks, the StopListening method should not block execution.

Important

In many applications the StopListening method can run at the same time as the Unload method. If AppDomain unload occurs, the StopListening method might be forcibly aborted before it finishes executing.

Applies to