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

◆ Query

string? System.UriBuilder.Query
getset

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 }

Referenced by System.UriBuilder.ToString().