2 instantiations of HttpListenerResponse
System.Net.HttpListener (2)
System\Net\HttpListenerContext.cs (1)
23
public 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)
13
private
HttpListenerResponse
? _response;
23
public
HttpListenerResponse
Response => _response ??= new HttpListenerResponse(this);
System\Net\Managed\HttpConnection.cs (1)
450
HttpListenerResponse
response = _context.Response;
System\Net\Managed\HttpListenerResponse.Managed.cs (3)
138
var
thisRef = (
HttpListenerResponse
)iar.AsyncState!;
151
public void CopyFrom(
HttpListenerResponse
templateResponse)
System\Net\Managed\HttpResponseStream.Managed.cs (2)
44
private readonly
HttpListenerResponse
_response;
49
internal HttpResponseStream(Stream stream,
HttpListenerResponse
response, bool ignore_errors)
System\Net\Managed\WebSockets\HttpWebSocket.Managed.cs (1)
20
HttpListenerResponse
response = context.Response;