Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
this[HttpRequestHeader header]
string
? System.Net.WebHeaderCollection.this[
HttpRequestHeader
header
]
get
set
Definition at line
65
of file
WebHeaderCollection.cs
.
66
{
67
get
68
{
69
if
(!
AllowHttpRequestHeader
)
70
{
71
throw
new
InvalidOperationException
(
System
.
SR
.
net_headers_req
);
72
}
73
return
base
[
header
.GetName()];
74
}
75
set
76
{
77
if
(!
AllowHttpRequestHeader
)
78
{
79
throw
new
InvalidOperationException
(
System
.
SR
.
net_headers_req
);
80
}
81
base
[
header
.GetName()] =
value
;
82
}
83
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.Net.WebHeaderCollection.AllowHttpRequestHeader
bool AllowHttpRequestHeader
Definition
WebHeaderCollection.cs:18
System.SR.net_headers_req
static string net_headers_req
Definition
SR.cs:14
System.SR
Definition
SR.cs:7
System.Transactions.TransactionExceptionType.InvalidOperationException
@ InvalidOperationException
System.ExceptionArgument.value
@ value
System
Definition
BlockingCollection.cs:8
System
Net
WebHeaderCollection
Generated by
1.10.0