1 instantiation of HttpListenerRequest
System.Net.HttpListener (1)
System\Net\Managed\HttpListenerContext.Managed.cs (1)
21
Request = new
HttpListenerRequest
(this);
14 references to HttpListenerRequest
dotnet (4)
Commands\Test\MTP\IPC\HttpTestHostGateway.cs (4)
104
HttpListenerRequest
request = context.Request;
227
private bool IsAuthorized(
HttpListenerRequest
request)
244
HttpListenerRequest
request,
289
private 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)
6
public delegate AuthenticationSchemes AuthenticationSchemeSelector(
HttpListenerRequest
httpRequest);
System\Net\HttpListener.cs (1)
16
public delegate ExtendedProtectionPolicy ExtendedProtectionSelector(
HttpListenerRequest
request);
System\Net\HttpListenerContext.cs (1)
16
public
HttpListenerRequest
Request { get; }
System\Net\HttpListenerRequest.cs (2)
257
(callback, state) => ((
HttpListenerRequest
)state!).BeginGetClientCertificate(callback, state),
258
iar => ((
HttpListenerRequest
)iar.AsyncState!).EndGetClientCertificate(iar),
System\Net\HttpListenerResponse.cs (1)
55
private
HttpListenerRequest
HttpListenerRequest => HttpListenerContext!.Request;
System\Net\Managed\HttpEndPointListener.cs (1)
156
HttpListenerRequest
req = context.Request;
System\Net\Managed\WebSockets\HttpWebSocket.Managed.cs (1)
22
HttpListenerRequest
request = context.Request;