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

◆ Method

override string System.Net.HttpWebRequest.Method
getset

Definition at line 748 of file HttpWebRequest.cs.

749 {
750 get
751 {
752 return _originVerb;
753 }
754 set
755 {
756 if (string.IsNullOrEmpty(value))
757 {
758 throw new ArgumentException(System.SR.net_badmethod, "value");
759 }
761 {
762 throw new ArgumentException(System.SR.net_badmethod, "value");
763 }
765 }
766 }
static bool IsInvalidMethodOrHeaderString(string stringValue)
static string net_badmethod
Definition SR.cs:22
Definition SR.cs:7