System.Xml.XmlReader.IsName C# (CSharp) Méthode

IsName() public static méthode

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