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

◆ GetLengthWithoutTrailingSpaces()

void System.Uri.GetLengthWithoutTrailingSpaces ( string str,
ref int length,
int idx )
inlineprivate

Definition at line 2205 of file Uri.cs.

2206 {
2207 int num = length;
2208 while (num > idx && UriHelper.IsLWS(str[num - 1]))
2209 {
2210 num--;
2211 }
2212 length = num;
2213 }

References System.UriHelper.IsLWS(), System.length, and System.str.

Referenced by System.Uri.ParseRemaining().