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

◆ GetMethodInfo()

static FtpMethodInfo System.Net.FtpMethodInfo.GetMethodInfo ( string method)
inlinestaticpackage

Definition at line 51 of file FtpMethodInfo.cs.

52 {
53 method = method.ToUpperInvariant();
55 foreach (FtpMethodInfo ftpMethodInfo in array)
56 {
57 if (method == ftpMethodInfo.Method)
58 {
59 return ftpMethodInfo;
60 }
61 }
63 }
static readonly FtpMethodInfo[] s_knownMethodInfo
FtpMethodInfo(string method, FtpOperation operation, FtpMethodFlags flags, string httpCommand)
static string net_ftp_unsupported_method
Definition SR.cs:102
Definition SR.cs:7

References System.array, System.Net.FtpMethodInfo.Method, System.SR.net_ftp_unsupported_method, and System.Net.FtpMethodInfo.s_knownMethodInfo.

Referenced by System.Net.FtpWebRequest.FtpWebRequest().