1 instantiation of HttpListenerRequest
System.Net.HttpListener (1)
System\Net\Managed\HttpListenerContext.Managed.cs (1)
21Request = new HttpListenerRequest(this);
14 references to HttpListenerRequest
dotnet (4)
Commands\Test\MTP\IPC\HttpTestHostGateway.cs (4)
104HttpListenerRequest request = context.Request; 227private bool IsAuthorized(HttpListenerRequest request) 244HttpListenerRequest request, 289private static async Task<byte[]> ReadFrameAsync(HttpListenerRequest request, CancellationToken cancellationToken)
netstandard (1)
netstandard.cs (1)
1145[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.HttpListenerRequest))]
System (1)
src\runtime\src\libraries\shims\System\ref\System.cs (1)
630[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.HttpListenerRequest))]
System.Net.HttpListener (8)
System\Net\AuthenticationSchemeSelector.cs (1)
6public delegate AuthenticationSchemes AuthenticationSchemeSelector(HttpListenerRequest httpRequest);
System\Net\HttpListener.cs (1)
16public delegate ExtendedProtectionPolicy ExtendedProtectionSelector(HttpListenerRequest request);
System\Net\HttpListenerContext.cs (1)
16public HttpListenerRequest Request { get; }
System\Net\HttpListenerRequest.cs (2)
257(callback, state) => ((HttpListenerRequest)state!).BeginGetClientCertificate(callback, state), 258iar => ((HttpListenerRequest)iar.AsyncState!).EndGetClientCertificate(iar),
System\Net\HttpListenerResponse.cs (1)
55private HttpListenerRequest HttpListenerRequest => HttpListenerContext!.Request;
System\Net\Managed\HttpEndPointListener.cs (1)
156HttpListenerRequest req = context.Request;
System\Net\Managed\WebSockets\HttpWebSocket.Managed.cs (1)
22HttpListenerRequest request = context.Request;