System.Net.CommandStream.InitCommandPipeline C# (CSharp) Method

InitCommandPipeline() protected method

protected InitCommandPipeline ( WebRequest request, PipelineEntry commands, bool isAsync ) : void
request WebRequest
commands PipelineEntry
isAsync bool
return void
        protected void InitCommandPipeline(WebRequest request, PipelineEntry[] commands, bool isAsync)
        {
            _commands = commands;
            _index = 0;
            _request = request;
            _aborted = false;
            _doRead = true;
            _doSend = true;
            _currentResponseDescription = null;
            _isAsync = isAsync;
            _recoverableFailure = false;
            _abortReason = string.Empty;
        }