System.Xml.Xsl.XsltOld.TemplateLookupAction.Initialize C# (CSharp) Method

Initialize() private method

private Initialize ( XmlQualifiedName mode, Stylesheet importsOf ) : void
mode System.Xml.XmlQualifiedName
importsOf Stylesheet
return void
        internal void Initialize(XmlQualifiedName mode, Stylesheet importsOf) {
            this.mode      = mode;
            this.importsOf = importsOf;
        }

Usage Example

Ejemplo n.º 1
0
 internal void PushTemplateLookup(XPathNodeIterator?nodeSet, XmlQualifiedName?mode, Stylesheet?importsOf)
 {
     Debug.Assert(_templateLookup != null);
     _templateLookup.Initialize(mode, importsOf);
     PushActionFrame(_templateLookup, nodeSet);
 }