OwinHttpListener.GetRequestProcessingLimits Method (Int32, Int32)
Gets the limits that process the request.
Namespace: Microsoft.Owin.Host.HttpListener
Assembly: Microsoft.Owin.Host.HttpListener (in Microsoft.Owin.Host.HttpListener.dll)
Syntax
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 Sub GetRequestProcessingLimits (
<OutAttribute> ByRef maxAccepts As Integer,
<OutAttribute> ByRef maxRequests As Integer
)
Parameters
maxAccepts
Type: System.Int32The maximum number of pending request receives.
maxRequests
Type: System.Int32The maximum number of active requests being processed.
See Also
OwinHttpListener Class
Microsoft.Owin.Host.HttpListener Namespace
Return to top