HostingEnvironment.DecrementBusyCount 方法

定义

将宿主环境中繁忙对象的计数减一。

public:
 static void DecrementBusyCount();
public static void DecrementBusyCount ();
static member DecrementBusyCount : unit -> unit
Public Shared Sub DecrementBusyCount ()

注解

当忙注册对象完成其工作时,它会调用 DecrementBusyCount 方法,以向对象发出它已完成处理的信号 HostingEnvironment ,并将忙碌对象的数量减少一个。

如果忙计数大于零,即使没有挂起的请求,宿主应用程序也不会超时。

每次调用 DecrementBusyCount 方法时,都必须有对 方法的 IncrementBusyCount 调用。

适用于