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)));