Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
BaseAddress
Uri
? System.Net.Http.HttpClient.BaseAddress
get
set
Definition at line
79
of file
HttpClient.cs
.
80
{
81
get
82
{
83
return
_baseAddress
;
84
}
85
set
86
{
87
if
((
object
)
value
!=
null
&& !
value
.IsAbsoluteUri)
88
{
89
throw
new
ArgumentException
(
System
.
SR
.
net_http_client_absolute_baseaddress_required
,
"value"
);
90
}
91
CheckDisposedOrStarted
();
92
if
(
System
.
Net
.
NetEventSource
.
Log
.IsEnabled())
93
{
94
System
.
Net
.
NetEventSource
.
UriBaseAddress
(
this
,
value
);
95
}
96
_baseAddress
=
value
;
97
}
98
}
System.Net.Http.HttpClient._baseAddress
Uri _baseAddress
Definition
HttpClient.cs:33
System.Net.Http.HttpClient.CheckDisposedOrStarted
void CheckDisposedOrStarted()
Definition
HttpClient.cs:708
System.Net.NetEventSource.Log
static readonly System.Net.NetEventSource Log
Definition
NetEventSource.cs:20
System.Net.NetEventSource.UriBaseAddress
static void UriBaseAddress(object obj, Uri baseAddress)
Definition
NetEventSource.cs:23
System.Net.NetEventSource
Definition
NetEventSource.cs:12
System.SR.net_http_client_absolute_baseaddress_required
static string net_http_client_absolute_baseaddress_required
Definition
SR.cs:60
System.SR
Definition
SR.cs:7
System.Net
Definition
HttpClientJsonExtensions.cs:8
System.Xml.ExceptionType.ArgumentException
@ ArgumentException
System.ExceptionArgument.value
@ value
System
Definition
BlockingCollection.cs:8
System
Net
Http
HttpClient
Generated by
1.10.0