Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
this[HttpResponseHeader header]
string
? System.Net.WebHeaderCollection.this[
HttpResponseHeader
header
]
get
set
Definition at line
85
of file
WebHeaderCollection.cs
.
86
{
87
get
88
{
89
if
(!
AllowHttpResponseHeader
)
90
{
91
throw
new
InvalidOperationException
(
System
.
SR
.
net_headers_rsp
);
92
}
93
return
base
[
header
.GetName()];
94
}
95
set
96
{
97
if
(!
AllowHttpResponseHeader
)
98
{
99
throw
new
InvalidOperationException
(
System
.
SR
.
net_headers_rsp
);
100
}
101
base
[
header
.GetName()] =
value
;
102
}
103
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.Net.WebHeaderCollection.AllowHttpResponseHeader
bool AllowHttpResponseHeader
Definition
WebHeaderCollection.cs:54
System.SR.net_headers_rsp
static string net_headers_rsp
Definition
SR.cs:16
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