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

◆ Method

HttpMethod System.Net.Http.HttpRequestMessage.Method
getset

Definition at line 86 of file HttpRequestMessage.cs.

87 {
88 get
89 {
90 return _method;
91 }
92 set
93 {
94 if (value == null)
95 {
96 throw new ArgumentNullException("value");
97 }
99 _method = value;
100 }
101 }

Referenced by System.Net.Http.RedirectHandler.SendAsync(), and System.Net.Http.HttpClient.ShouldBufferResponse().