Subscriber portal
Gets the number of requests currently executing.
Public ReadOnly Property RequestsExecuting As Integer
The number of requests that the process is currently executing.
The RequestsExecuting value is a useful load indicator.
The following code example shows how to get the RequestsExecuting value.
Public Function GetRequestsExecuting() As String ' Get the requests in execution. Return String.Format( _ "Requests executing: {0}", _ processStatistics.RequestsExecuting.ToString()) End Function 'GetRequestsExecuting
WebProcessStatistics ClassSystem.Web.Management Namespace