WebProcessStatistics.RequestsExecuting Property

Definition

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