Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Method

override string System.Net.FtpWebRequest.Method
getset

Definition at line 109 of file FtpWebRequest.cs.

110 {
111 get
112 {
113 return _methodInfo.Method;
114 }
115 set
116 {
117 if (string.IsNullOrEmpty(value))
118 {
120 }
121 if (InUse)
122 {
124 }
125 try
126 {
127 _methodInfo = FtpMethodInfo.GetMethodInfo(value);
128 }
129 catch (ArgumentException)
130 {
132 }
133 }
134 }
static FtpMethodInfo GetMethodInfo(string method)
static string net_reqsubmitted
Definition SR.cs:16
static string net_ftp_invalid_method_name
Definition SR.cs:86
static string net_ftp_unsupported_method
Definition SR.cs:102
Definition SR.cs:7