Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ InitCommandPipeline()

void System.Net.CommandStream.InitCommandPipeline ( WebRequest request,
PipelineEntry[] commands,
bool isAsync )
inlineprotectedinherited

Definition at line 192 of file CommandStream.cs.

193 {
194 _commands = commands;
195 _index = 0;
196 _request = request;
197 _aborted = false;
198 _doRead = true;
199 _doSend = true;
201 _isAsync = isAsync;
202 _recoverableFailure = false;
203 _abortReason = string.Empty;
204 }
ResponseDescription _currentResponseDescription
PipelineEntry[] _commands

References System.Net.CommandStream._aborted, System.Net.CommandStream._abortReason, System.Net.CommandStream._commands, System.Net.CommandStream._currentResponseDescription, System.Net.CommandStream._doRead, System.Net.CommandStream._doSend, System.Net.CommandStream._index, System.Net.CommandStream._isAsync, System.Net.CommandStream._recoverableFailure, and System.Net.CommandStream._request.

Referenced by System.Net.CommandStream.ClearState(), and System.Net.CommandStream.SubmitRequest().