Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Fragment

string System.UriBuilder.Fragment
getset

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 }

Referenced by System.UriBuilder.ToString().