19 instantiations of PipelineEntry
System.Net.Requests (19)
System\Net\FtpControlStream.cs (19)
491commandList.Add(new PipelineEntry(FormatFtpCommand("AUTH", "TLS"))); 534commandList.Add(new PipelineEntry(FormatFtpCommand("USER", domainUserName))); 535commandList.Add(new PipelineEntry(FormatFtpCommand("PASS", password), PipelineEntryFlags.DontLogParameter)); 542commandList.Add(new PipelineEntry(FormatFtpCommand("PBSZ", "0"))); 543commandList.Add(new PipelineEntry(FormatFtpCommand("PROT", "P"))); 546commandList.Add(new PipelineEntry(FormatFtpCommand("OPTS", "utf8 on"))); 547commandList.Add(new PipelineEntry(FormatFtpCommand("PWD", null))); 576commandList.Add(new PipelineEntry(FormatFtpCommand("CWD", _loginDirectory), PipelineEntryFlags.UserCommand)); 584commandList.Add(new PipelineEntry(FormatFtpCommand("CWD", requestDirectory), PipelineEntryFlags.UserCommand)); 593commandList.Add(new PipelineEntry(FormatFtpCommand("TYPE", requestedTypeSetting))); 600commandList.Add(new PipelineEntry(FormatFtpCommand(passiveCommand, null), PipelineEntryFlags.CreateDataConnection)); 606commandList.Add(new PipelineEntry(FormatFtpCommand(portCommand, GetPortCommandLine()))); 612commandList.Add(new PipelineEntry(FormatFtpCommand("REST", request.ContentOffset.ToString(CultureInfo.InvariantCulture)))); 628commandList.Add(new PipelineEntry(FormatFtpCommand("RNFR", baseDir + requestFilename), flags)); 639commandList.Add(new PipelineEntry(FormatFtpCommand("RNTO", renameTo), flags)); 643commandList.Add(new PipelineEntry(FormatFtpCommand(request.Method, string.Empty), flags)); 647commandList.Add(new PipelineEntry(FormatFtpCommand(request.Method, requestFilename), flags)); 651commandList.Add(new PipelineEntry(FormatFtpCommand(request.Method, requestPath), flags)); 654commandList.Add(new PipelineEntry(FormatFtpCommand("QUIT", null)));
11 references to PipelineEntry
System.Net.Requests (11)
System\Net\CommandStream.cs (7)
32protected PipelineEntry[]? _commands; 113PipelineEntry[]? commands = BuildCommandsList(request); 128protected virtual PipelineEntry[]? BuildCommandsList(WebRequest request) 148protected void InitCommandPipeline(WebRequest? request, PipelineEntry[]? commands, bool isAsync) 265PipelineEntry[] commands = _commands!; 299PipelineEntry? entry; 395protected virtual PipelineInstruction PipelineCallback(PipelineEntry? entry, ResponseDescription? response, bool timeout, ref Stream? stream)
System\Net\FtpControlStream.cs (4)
238protected override PipelineInstruction PipelineCallback(PipelineEntry? entry, ResponseDescription? response, bool timeout, ref Stream? stream) 478protected override PipelineEntry[] BuildCommandsList(WebRequest req) 487var commandList = new List<PipelineEntry>(); 659private PipelineInstruction QueueOrCreateDataConection(PipelineEntry entry, ResponseDescription response, out bool isSocketReady)