コード例 #1
0
 public static FtpWebRequest Create(string ftpPath, FtpRequestType ftpRequestMethod, IFtpServerConnection ftpServerConnection, IProxySettings proxy)
 {
     return(Create(ftpPath, ftpRequestMethod, ftpServerConnection, proxy.ToWebProxy()));
 }
コード例 #2
0
ファイル: FtpProvider.cs プロジェクト: Skripachcpp/RobotInput
 public FtpProvider(IFtpServerConnection server, IProxySettings proxy = null)
     : this(server, proxy.ToWebProxy())
 {
 }
コード例 #3
0
 public static WebRequest Create(string url, string method, ILoginPass credentials, IProxySettings proxy)
 {
     return(Create(url, method, credentials, proxy.ToWebProxy()));
 }