23 instantiations of PipelineEntry
System (23)
net\System\Net\_FtpControlStream.cs (23)
476
commandList.Add(new
PipelineEntry
(FormatFtpCommand("AUTH", "TLS")));
510
commandList.Add(new
PipelineEntry
(FormatFtpCommand("USER", domainUserName)));
511
commandList.Add(new
PipelineEntry
(FormatFtpCommand("PASS", password), PipelineEntryFlags.DontLogParameter));
518
commandList.Add(new
PipelineEntry
(FormatFtpCommand("PBSZ", "0")));
519
commandList.Add(new
PipelineEntry
(FormatFtpCommand("PROT", "P")));
522
commandList.Add(new
PipelineEntry
(FormatFtpCommand("OPTS", "utf8 on")));
523
commandList.Add(new
PipelineEntry
(FormatFtpCommand("PWD", null)));
552
commandList.Add(new
PipelineEntry
(FormatFtpCommand("CWD", m_LoginDirectory), PipelineEntryFlags.UserCommand));
560
commandList.Add(new
PipelineEntry
(FormatFtpCommand("CWD", requestDirectory), PipelineEntryFlags.UserCommand));
565
commandList.Add(new
PipelineEntry
(FormatFtpCommand("MDTM", requestPath)));
574
commandList.Add(new
PipelineEntry
(FormatFtpCommand("TYPE", requestedTypeSetting)));
580
commandList.Add(new
PipelineEntry
(FormatFtpCommand(passiveCommand, null), PipelineEntryFlags.CreateDataConnection));
584
commandList.Add(new
PipelineEntry
(FormatFtpCommand(portCommand, GetPortCommandLine(request))));
591
commandList.Add(new
PipelineEntry
(FormatFtpCommand("REST", request.CacheProtocol.Validator.CacheEntry.StreamSize.ToString(CultureInfo.InvariantCulture))));
595
commandList.Add(new
PipelineEntry
(FormatFtpCommand("REST", request.ContentOffset.ToString(CultureInfo.InvariantCulture))));
601
commandList.Add(new
PipelineEntry
(FormatFtpCommand("SIZE", requestPath)));
602
commandList.Add(new
PipelineEntry
(FormatFtpCommand("MDTM", requestPath)));
623
commandList.Add(new
PipelineEntry
(FormatFtpCommand("RNFR", baseDir + requestFilename), flags));
635
commandList.Add(new
PipelineEntry
(FormatFtpCommand("RNTO", renameTo), flags));
639
commandList.Add(new
PipelineEntry
(FormatFtpCommand(request.Method, string.Empty), flags));
643
commandList.Add(new
PipelineEntry
(FormatFtpCommand(request.Method, requestFilename), flags));
647
commandList.Add(new
PipelineEntry
(FormatFtpCommand(request.Method, requestPath), flags));
652
commandList.Add(new
PipelineEntry
(FormatFtpCommand("QUIT", null)));
12 references to PipelineEntry
System (12)
net\System\Net\_CommandStream.cs (7)
44
protected
PipelineEntry
[] m_Commands;
143
PipelineEntry
[] commands = BuildCommandsList(request);
156
protected virtual
PipelineEntry
[] BuildCommandsList(WebRequest request) {
176
protected void InitCommandPipeline(WebRequest request,
PipelineEntry
[] commands, bool async) {
292
PipelineEntry
[] commands = m_Commands;
322
PipelineEntry
entry;
417
protected virtual PipelineInstruction PipelineCallback(
PipelineEntry
entry, ResponseDescription response, bool timeout, ref Stream stream) {
net\System\Net\_FtpControlStream.cs (5)
244
protected override PipelineInstruction PipelineCallback(
PipelineEntry
entry, ResponseDescription response, bool timeout, ref Stream stream)
455
protected override
PipelineEntry
[] BuildCommandsList(WebRequest req) {
656
return (
PipelineEntry
[]) commandList.ToArray(typeof(
PipelineEntry
));
659
private PipelineInstruction QueueOrCreateDataConection(
PipelineEntry
entry, ResponseDescription response, bool timeout, ref Stream stream, out bool isSocketReady)