System.Xml.Xsl.IlGen.XmlILConstructInfo.XmlILConstructInfo C# (CSharp) Method

XmlILConstructInfo() private method

Default to worst possible construction information.
private XmlILConstructInfo ( QilNodeType nodeType ) : System
nodeType QilNodeType
return System
        private XmlILConstructInfo(QilNodeType nodeType) {
            this.nodeType = nodeType;
            this.xstatesInitial = this.xstatesFinal = PossibleXmlStates.Any;
            this.xstatesBeginLoop = this.xstatesEndLoop = PossibleXmlStates.None;
            this.isNmspInScope = false;
            this.mightHaveNmsp = true;
            this.mightHaveAttrs = true;
            this.mightHaveDupAttrs = true;
            this.mightHaveNmspAfterAttrs = true;
            this.constrMeth = XmlILConstructMethod.Iterator;
            this.parentInfo = null;
        }