terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ GetResponseStream()

ResponseStream System.Net.HttpConnection.GetResponseStream ( )
inline

Definition at line 225 of file HttpConnection.cs.

226 {
227 ResponseStream responseStream;
228 HttpListener listener;
229 do
230 {
231 responseStream = this.o_stream;
232 if (responseStream != null)
233 {
234 return responseStream;
235 }
236 HttpListenerContext httpListenerContext = this.context;
237 Stream stream = this.stream;
238 listener = httpListenerContext.Listener;
239 HttpListenerResponse response = httpListenerContext.response;
240 }
241 while (listener == null);
242 bool ignore_write_exceptions = listener.ignore_write_exceptions;
243 this.o_stream = responseStream;
244 return responseStream;
245 }
class f__AnonymousType0<< Count > j__TPar
HttpListenerContext context

References System.Net.HttpConnection.context, System.Net.HttpListener.ignore_write_exceptions, j__TPar, System.Net.HttpConnection.o_stream, and System.Net.HttpConnection.stream.

Referenced by System.Net.HttpConnection.Close(), and System.Net.HttpListenerResponse.Close().