HostingEnvironment.DecrementBusyCount Método

Definição

Reduz a contagem de objetos ocupados no ambiente hospedado em um.Reduces the count of busy objects in the hosted environment by one.

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

Comentários

Quando um objeto registrado ocupado termina seu trabalho, ele chama o DecrementBusyCount método para sinalizar ao HostingEnvironment objeto que ele concluiu o processamento e reduzir a contagem de objetos ocupados por um.When a busy registered object finishes its work, it calls the DecrementBusyCount method to signal the HostingEnvironment object that it has completed processing and to reduce the count of busy objects by one.

Se a contagem ocupada for maior que zero, o aplicativo de hospedagem não atingirá o tempo limite mesmo se não houver nenhuma solicitação pendente.If the busy count is greater than zero, the hosting application will not time out even if there are no pending requests.

Deve haver uma chamada para o DecrementBusyCount método para cada chamada para o IncrementBusyCount método.There must be a call to the DecrementBusyCount method for each call to the IncrementBusyCount method.

Aplica-se a