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