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

◆ this[string key]

object? IDictionary<string, object>. System.Net.Http.HttpRequestOptions.this[string key]
getsetprivate

Definition at line 12 of file HttpRequestOptions.cs.

13 {
14 get
15 {
16 return Options[key];
17 }
18 set
19 {
20 Options[key] = value;
21 }
22 }
Dictionary< string, object?> Options