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

XslComment() private method

private XslComment ( ) : XslNode
return XslNode
        private XslNode XslComment()
        {
            ContextInfo ctxInfo = _input.GetAttributes(_commentAttributes);
            string select = ParseStringAttribute(0, "select");
            if (select != null) ReportNYI("xsl:comment/@select");

            return SetInfo(f.Comment(), LoadContent(select != null), ctxInfo);
        }