Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Fragment
string
System.UriBuilder.Fragment
get
set
Definition at line
157
of file
UriBuilder.cs
.
158
{
159
get
160
{
161
return
_fragment
;
162
}
163
[param: AllowNull]
164
set
165
{
166
if
(!
string
.IsNullOrEmpty(
value
) &&
value
[0] !=
'#'
)
167
{
168
value
=
"#"
+
value
;
169
}
170
_fragment
=
value
??
string
.Empty;
171
_changed
=
true
;
172
}
173
}
System.UriBuilder._changed
bool _changed
Definition
UriBuilder.cs:24
System.UriBuilder._fragment
string _fragment
Definition
UriBuilder.cs:22
System.ExceptionArgument.value
@ value
Referenced by
System.UriBuilder.ToString()
.
System
UriBuilder
Generated by
1.10.0