System.Xml.XmlReader.IsName C# (CSharp) 메소드

IsName() 공개 정적인 메소드

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