16 references to Evaluate
System.Data.SqlXml (16)
System\Xml\Xsl\XsltOld\AttributeAction.cs (2)
111this.nameAvt == null ? this.name : this.nameAvt.Evaluate(processor, frame), 112this.nsAvt == null ? this.nsUri : this.nsAvt .Evaluate(processor, frame),
System\Xml\Xsl\XsltOld\CompiledAction.cs (1)
54result = avt.Evaluate(null, null);
System\Xml\Xsl\XsltOld\ElementAction.cs (2)
100this.nameAvt == null ? this.name : this.nameAvt.Evaluate(processor, frame), 101this.nsAvt == null ? this.nsUri : this.nsAvt .Evaluate(processor, frame),
System\Xml\Xsl\XsltOld\NumberAction.cs (5)
380this.formatAvt == null ? this.formatTokens : ParseFormat(this.formatAvt.Evaluate(processor, frame)), 381this.langAvt == null ? this.lang : this.langAvt .Evaluate(processor, frame), 382this.letterAvt == null ? this.letter : ParseLetter(this.letterAvt.Evaluate(processor, frame)), 383this.groupingSepAvt == null ? this.groupingSep : this.groupingSepAvt .Evaluate(processor, frame), 384this.groupingSizeAvt == null ? this.groupingSize : this.groupingSizeAvt.Evaluate(processor, frame)
System\Xml\Xsl\XsltOld\ProcessingInstructionAction.cs (2)
37this.name = this.nameAvt.Evaluate(null, null); 78frame.StoredOutput = this.nameAvt.Evaluate(processor, frame);
System\Xml\Xsl\XsltOld\SortAction.cs (4)
153this.langAvt == null ? this.lang : ParseLang( this.langAvt .Evaluate(processor, frame)), 154this.dataTypeAvt == null ? this.dataType : ParseDataType( this.dataTypeAvt .Evaluate(processor, frame), manager), 155this.orderAvt == null ? this.order : ParseOrder( this.orderAvt .Evaluate(processor, frame)), 156this.caseOrderAvt == null ? this.caseOrder : ParseCaseOrder(this.caseOrderAvt.Evaluate(processor, frame))