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