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