System\Net\FtpControlStream.cs (9)
535commandList.Add(new PipelineEntry(FormatFtpCommand("PASS", password), PipelineEntryFlags.DontLogParameter));
576commandList.Add(new PipelineEntry(FormatFtpCommand("CWD", _loginDirectory), PipelineEntryFlags.UserCommand));
584commandList.Add(new PipelineEntry(FormatFtpCommand("CWD", requestDirectory), PipelineEntryFlags.UserCommand));
600commandList.Add(new PipelineEntry(FormatFtpCommand(passiveCommand, null), PipelineEntryFlags.CreateDataConnection));
628commandList.Add(new PipelineEntry(FormatFtpCommand("RNFR", baseDir + requestFilename), flags));
639commandList.Add(new PipelineEntry(FormatFtpCommand("RNTO", renameTo), flags));
643commandList.Add(new PipelineEntry(FormatFtpCommand(request.Method, string.Empty), flags));
647commandList.Add(new PipelineEntry(FormatFtpCommand(request.Method, requestFilename), flags));
651commandList.Add(new PipelineEntry(FormatFtpCommand(request.Method, requestPath), flags));