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

◆ Headers

WebHeaderCollection System.Net.WebClient.Headers
getset

Definition at line 196 of file WebClient.cs.

197 {
198 get
199 {
200 return _headers ?? (_headers = new WebHeaderCollection());
201 }
202 [param: AllowNull]
203 set
204 {
205 _headers = value;
206 }
207 }
WebHeaderCollection _headers
Definition WebClient.cs:70

Referenced by System.Net.WebClient.GetValuesToUpload(), and System.Net.WebClient.OpenFileInternal().