System.Xml.XmlReader.IsNameToken C# (CSharp) Method

IsNameToken() public static method

public static IsNameToken ( string str ) : bool
str string
return bool
        public static bool IsNameToken(string str)
        {
            if (str == null)
            {
                throw new NullReferenceException();
            }
            return ValidateNames.IsNmtokenNoNamespaces(str);
        }