System.Xml.Xsl.IlGen.XmlILVisitor.VisitStrLength C# (CSharp) Method

VisitStrLength() protected method

Generate code for QilNodeType.StrLength.
protected VisitStrLength ( QilUnary ndLen ) : QilNode
ndLen QilUnary
return QilNode
        protected override QilNode VisitStrLength(QilUnary ndLen) {
            NestedVisitEnsureStack(ndLen.Child);
            this.helper.Call(XmlILMethods.StrLen);
            this.iterCurr.Storage = StorageDescriptor.Stack(typeof(int), false);
            return ndLen;
        }
XmlILVisitor