Share via


OwinHttpListener.GetRequestProcessingLimits Method

Gets the limits that process the request.

Namespace:  Microsoft.Owin.Host.HttpListener
Assembly:  Microsoft.Owin.Host.HttpListener (in Microsoft.Owin.Host.HttpListener.dll)

Syntax

'Declaration
Public Sub GetRequestProcessingLimits ( _
    <OutAttribute> ByRef maxAccepts As Integer, _
    <OutAttribute> ByRef maxRequests As Integer _
)
'Usage
Dim instance As OwinHttpListener 
Dim maxAccepts As Integer 
Dim maxRequests As Integer

instance.GetRequestProcessingLimits(maxAccepts, _
    maxRequests)
public void GetRequestProcessingLimits(
    out int maxAccepts,
    out int maxRequests
)
public:
void GetRequestProcessingLimits(
    [OutAttribute] int% maxAccepts, 
    [OutAttribute] int% maxRequests
)
member GetRequestProcessingLimits : 
        maxAccepts:int byref * 
        maxRequests:int byref -> unit
public function GetRequestProcessingLimits(
    maxAccepts : int, 
    maxRequests : int
)

Parameters

  • maxAccepts
    Type: System.Int32%
    The maximum number of pending request receives.
  • maxRequests
    Type: System.Int32%
    The maximum number of active requests being processed.

See Also

Reference

OwinHttpListener Class

Microsoft.Owin.Host.HttpListener Namespace