System\Net\FtpControlStream.cs (10)
493commandList.Add(new PipelineEntry(FormatFtpCommand("AUTH", "TLS")));
536commandList.Add(new PipelineEntry(FormatFtpCommand("USER", domainUserName)));
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)));
595commandList.Add(new PipelineEntry(FormatFtpCommand("TYPE", requestedTypeSetting)));
608commandList.Add(new PipelineEntry(FormatFtpCommand(portCommand, GetPortCommandLine())));
614commandList.Add(new PipelineEntry(FormatFtpCommand("REST", request.ContentOffset.ToString(CultureInfo.InvariantCulture))));
656commandList.Add(new PipelineEntry(FormatFtpCommand("QUIT", null)));