Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
MaxResponseDrainSize
int System.Net.Http.SocketsHttpHandler.MaxResponseDrainSize
get
set
Definition at line
176
of file
SocketsHttpHandler.cs
.
177
{
178
get
179
{
180
return
_settings
.
_maxResponseDrainSize
;
181
}
182
set
183
{
184
if
(
value
< 0)
185
{
186
throw
new
ArgumentOutOfRangeException(
"value"
,
value
,
System
.
SR
.
ArgumentOutOfRange_NeedNonNegativeNum
);
187
}
188
CheckDisposedOrStarted
();
189
_settings._maxResponseDrainSize =
value
;
190
}
191
}
System.Net.Http.HttpConnectionSettings._maxResponseDrainSize
int _maxResponseDrainSize
Definition
HttpConnectionSettings.cs:40
System.Net.Http.SocketsHttpHandler.CheckDisposedOrStarted
void CheckDisposedOrStarted()
Definition
SocketsHttpHandler.cs:463
System.Net.Http.SocketsHttpHandler._settings
readonly HttpConnectionSettings _settings
Definition
SocketsHttpHandler.cs:15
System.SR.ArgumentOutOfRange_NeedNonNegativeNum
static string ArgumentOutOfRange_NeedNonNegativeNum
Definition
SR.cs:126
System.SR
Definition
SR.cs:7
System.ExceptionArgument.value
@ value
System
Definition
BlockingCollection.cs:8
System
Net
Http
SocketsHttpHandler
Generated by
1.10.0