2 instantiations of HttpListenerResponse
System.Net.HttpListener (2)
System\Net\HttpListenerContext.cs (1)
23public HttpListenerResponse Response => _response ??= new HttpListenerResponse(this);
System\Net\Managed\HttpListenerContext.Managed.cs (1)
20_response = new HttpListenerResponse(this);
11 references to HttpListenerResponse
netstandard (1)
netstandard.cs (1)
1146[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.HttpListenerResponse))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
631[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.HttpListenerResponse))]
System.Net.HttpListener (9)
System\Net\HttpListenerContext.cs (2)
13private HttpListenerResponse? _response; 23public HttpListenerResponse Response => _response ??= new HttpListenerResponse(this);
System\Net\Managed\HttpConnection.cs (1)
445HttpListenerResponse response = _context.Response;
System\Net\Managed\HttpListenerResponse.Managed.cs (3)
138var thisRef = (HttpListenerResponse)iar.AsyncState!; 151public void CopyFrom(HttpListenerResponse templateResponse)
System\Net\Managed\HttpResponseStream.Managed.cs (2)
44private readonly HttpListenerResponse _response; 49internal HttpResponseStream(Stream stream, HttpListenerResponse response, bool ignore_errors)
System\Net\Managed\WebSockets\HttpWebSocket.Managed.cs (1)
20HttpListenerResponse response = context.Response;