System.Xml.Xsl.XsltOld.RecordBuilder.BeginProcessingInstruction C# (CSharp) Method

BeginProcessingInstruction() private method

private BeginProcessingInstruction ( string prefix, string name, string nspace ) : bool
prefix string
name string
nspace string
return bool
        private bool BeginProcessingInstruction(string prefix, string name, string nspace) {
            this.currentInfo.NodeType     = XmlNodeType.ProcessingInstruction;
            this.currentInfo.Prefix       = prefix;
            this.currentInfo.LocalName    = name;
            this.currentInfo.NamespaceURI = nspace;
            this.currentInfo.Depth  = this.recordDepth;
            return true;
        }