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

LoadPreserveSpace() private method

private LoadPreserveSpace ( NsDecl stylesheetNsList ) : void
stylesheetNsList NsDecl
return void
        private void LoadPreserveSpace(NsDecl stylesheetNsList)
        {
            ContextInfo ctxInfo = _input.GetAttributes(_loadStripSpaceAttributes);
            ctxInfo.nsList = MergeNamespaces(ctxInfo.nsList, stylesheetNsList);

            if (_input.MoveToXsltAttribute(0, _atoms.Elements))
            {
                ParseWhitespaceRules(_input.Value, true);
            }
            CheckNoContent();
        }