System\Net\FtpControlStream.cs (19)
493commandList.Add(new PipelineEntry(FormatFtpCommand("AUTH", "TLS")));
536commandList.Add(new PipelineEntry(FormatFtpCommand("USER", domainUserName)));
537commandList.Add(new PipelineEntry(FormatFtpCommand("PASS", password), PipelineEntryFlags.DontLogParameter));
544commandList.Add(new PipelineEntry(FormatFtpCommand("PBSZ", "0")));
545commandList.Add(new PipelineEntry(FormatFtpCommand("PROT", "P")));
548commandList.Add(new PipelineEntry(FormatFtpCommand("OPTS", "utf8 on")));
549commandList.Add(new PipelineEntry(FormatFtpCommand("PWD", null)));
578commandList.Add(new PipelineEntry(FormatFtpCommand("CWD", _loginDirectory), PipelineEntryFlags.UserCommand));
586commandList.Add(new PipelineEntry(FormatFtpCommand("CWD", requestDirectory), PipelineEntryFlags.UserCommand));
595commandList.Add(new PipelineEntry(FormatFtpCommand("TYPE", requestedTypeSetting)));
602commandList.Add(new PipelineEntry(FormatFtpCommand(passiveCommand, null), PipelineEntryFlags.CreateDataConnection));
608commandList.Add(new PipelineEntry(FormatFtpCommand(portCommand, GetPortCommandLine())));
614commandList.Add(new PipelineEntry(FormatFtpCommand("REST", request.ContentOffset.ToString(CultureInfo.InvariantCulture))));
630commandList.Add(new PipelineEntry(FormatFtpCommand("RNFR", baseDir + requestFilename), flags));
641commandList.Add(new PipelineEntry(FormatFtpCommand("RNTO", renameTo), flags));
645commandList.Add(new PipelineEntry(FormatFtpCommand(request.Method, string.Empty), flags));
649commandList.Add(new PipelineEntry(FormatFtpCommand(request.Method, requestFilename), flags));
653commandList.Add(new PipelineEntry(FormatFtpCommand(request.Method, requestPath), flags));
656commandList.Add(new PipelineEntry(FormatFtpCommand("QUIT", null)));