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

◆ CheckForColonInFirstPathSegment()

static bool System.Uri.CheckForColonInFirstPathSegment ( string uriString)
inlinestaticprivate

Definition at line 1300 of file Uri.cs.

1301 {
1302 int num = uriString.IndexOfAny(s_pathDelims);
1303 if (num >= 0)
1304 {
1305 return uriString[num] == ':';
1306 }
1307 return false;
1308 }
static readonly char[] s_pathDelims
Definition Uri.cs:199

References System.Uri.s_pathDelims.

Referenced by System.Uri.InternalIsWellFormedOriginalString(), and System.Uri.MakeRelativeUri().