System.Uri.CheckForColonInFirstPathSegment C# (CSharp) 메소드

CheckForColonInFirstPathSegment() 개인적인 정적인 메소드

private static CheckForColonInFirstPathSegment ( string uriString ) : bool
uriString string
리턴 bool
        private static bool CheckForColonInFirstPathSegment(string uriString)
        {
            int index = uriString.IndexOfAny(s_pathDelims);

            return (index >= 0 && uriString[index] == ':');
        }