System.Xml.Xsl.Xslt.XsltLoader.ParseNCNameAttribute C# (CSharp) Method

ParseNCNameAttribute() private method

private ParseNCNameAttribute ( int attNum ) : string
attNum int
return string
        private string ParseNCNameAttribute(int attNum)
        {
            Debug.Assert(_input.IsRequiredAttribute(attNum), "It happened that @name as NCName is always required attribute");
            if (_input.MoveToXsltAttribute(attNum, "name"))
            {
                return _input.Value;
            }
            return _compiler.PhantomNCName;
        }