19 instantiations of PipelineEntry
System.Net.Requests (19)
System\Net\FtpControlStream.cs (19)
493commandList.Add(new PipelineEntry(FormatFtpCommand("AUTH", "TLS"))); 536commandList.Add(new PipelineEntry(FormatFtpCommand("USER", domainUserName))); 537commandList.Add(new PipelineEntry(FormatFtpCommand("PASS", password), PipelineEntryFlags.DontLogParameter)); 544commandList.Add(new PipelineEntry(FormatFtpCommand("PBSZ", "0"))); 545commandList.Add(new PipelineEntry(FormatFtpCommand("PROT", "P"))); 548commandList.Add(new PipelineEntry(FormatFtpCommand("OPTS", "utf8 on"))); 549commandList.Add(new PipelineEntry(FormatFtpCommand("PWD", null))); 578commandList.Add(new PipelineEntry(FormatFtpCommand("CWD", _loginDirectory), PipelineEntryFlags.UserCommand)); 586commandList.Add(new PipelineEntry(FormatFtpCommand("CWD", requestDirectory), PipelineEntryFlags.UserCommand)); 595commandList.Add(new PipelineEntry(FormatFtpCommand("TYPE", requestedTypeSetting))); 602commandList.Add(new PipelineEntry(FormatFtpCommand(passiveCommand, null), PipelineEntryFlags.CreateDataConnection)); 608commandList.Add(new PipelineEntry(FormatFtpCommand(portCommand, GetPortCommandLine()))); 614commandList.Add(new PipelineEntry(FormatFtpCommand("REST", request.ContentOffset.ToString(CultureInfo.InvariantCulture)))); 630commandList.Add(new PipelineEntry(FormatFtpCommand("RNFR", baseDir + requestFilename), flags)); 641commandList.Add(new PipelineEntry(FormatFtpCommand("RNTO", renameTo), flags)); 645commandList.Add(new PipelineEntry(FormatFtpCommand(request.Method, string.Empty), flags)); 649commandList.Add(new PipelineEntry(FormatFtpCommand(request.Method, requestFilename), flags)); 653commandList.Add(new PipelineEntry(FormatFtpCommand(request.Method, requestPath), flags)); 656commandList.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)
240protected override PipelineInstruction PipelineCallback(PipelineEntry? entry, ResponseDescription? response, bool timeout, ref Stream? stream) 480protected override PipelineEntry[] BuildCommandsList(WebRequest req) 489var commandList = new List<PipelineEntry>(); 661private PipelineInstruction QueueOrCreateDataConection(PipelineEntry entry, ResponseDescription response, out bool isSocketReady)