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

IsName() public static method

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