net\System\Net\_FtpControlStream.cs (9)
511commandList.Add(new PipelineEntry(FormatFtpCommand("PASS", password), PipelineEntryFlags.DontLogParameter));
552commandList.Add(new PipelineEntry(FormatFtpCommand("CWD", m_LoginDirectory), PipelineEntryFlags.UserCommand));
560commandList.Add(new PipelineEntry(FormatFtpCommand("CWD", requestDirectory), PipelineEntryFlags.UserCommand));
580commandList.Add(new PipelineEntry(FormatFtpCommand(passiveCommand, null), PipelineEntryFlags.CreateDataConnection));
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));