Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Query
string
? System.UriBuilder.Query
get
set
Definition at line
139
of file
UriBuilder.cs
.
140
{
141
get
142
{
143
return
_query
;
144
}
145
[param: AllowNull]
146
set
147
{
148
if
(!
string
.IsNullOrEmpty(
value
) &&
value
[0] !=
'?'
)
149
{
150
value
=
"?"
+
value
;
151
}
152
_query
=
value
??
string
.Empty;
153
_changed
=
true
;
154
}
155
}
System.UriBuilder._changed
bool _changed
Definition
UriBuilder.cs:24
System.UriBuilder._query
string _query
Definition
UriBuilder.cs:20
System.ExceptionArgument.value
@ value
Referenced by
System.UriBuilder.ToString()
.
System
UriBuilder
Generated by
1.10.0