WebProcessStatistics.RequestsExecuting Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the number of requests currently executing.
public:
property int RequestsExecuting { int get(); };
public int RequestsExecuting { get; }
member this.RequestsExecuting : int
Public ReadOnly Property RequestsExecuting As Integer
Property Value
The number of requests that the process is currently executing.
Examples
The following code example shows how to get the RequestsExecuting value.
public string GetRequestsExecuting()
{
// Get the requests in execution.
return (string.Format(
"Requests executing: {0}",
processStatistics.RequestsExecuting.ToString()));
}
Public Function GetRequestsExecuting() As String
' Get the requests in execution.
Return String.Format( _
"Requests executing: {0}", _
processStatistics.RequestsExecuting.ToString())
End Function 'GetRequestsExecuting
Remarks
The RequestsExecuting value is a useful load indicator.
Applies to
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.