System\Net\FtpControlStream.cs (19)
491commandList.Add(new PipelineEntry(FormatFtpCommand("AUTH", "TLS")));
534commandList.Add(new PipelineEntry(FormatFtpCommand("USER", domainUserName)));
535commandList.Add(new PipelineEntry(FormatFtpCommand("PASS", password), PipelineEntryFlags.DontLogParameter));
542commandList.Add(new PipelineEntry(FormatFtpCommand("PBSZ", "0")));
543commandList.Add(new PipelineEntry(FormatFtpCommand("PROT", "P")));
546commandList.Add(new PipelineEntry(FormatFtpCommand("OPTS", "utf8 on")));
547commandList.Add(new PipelineEntry(FormatFtpCommand("PWD", null)));
576commandList.Add(new PipelineEntry(FormatFtpCommand("CWD", _loginDirectory), PipelineEntryFlags.UserCommand));
584commandList.Add(new PipelineEntry(FormatFtpCommand("CWD", requestDirectory), PipelineEntryFlags.UserCommand));
593commandList.Add(new PipelineEntry(FormatFtpCommand("TYPE", requestedTypeSetting)));
600commandList.Add(new PipelineEntry(FormatFtpCommand(passiveCommand, null), PipelineEntryFlags.CreateDataConnection));
606commandList.Add(new PipelineEntry(FormatFtpCommand(portCommand, GetPortCommandLine())));
612commandList.Add(new PipelineEntry(FormatFtpCommand("REST", request.ContentOffset.ToString(CultureInfo.InvariantCulture))));
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));
654commandList.Add(new PipelineEntry(FormatFtpCommand("QUIT", null)));