System.Xml.Xsl.XsltOld.Processor.EvaluateString C# (CSharp) 메소드

EvaluateString() 개인적인 메소드

private EvaluateString ( ActionFrame context, int key ) : string
context ActionFrame
key int
리턴 string
        internal string EvaluateString(ActionFrame context, int key) {
            object objValue = Evaluate(context, key);
            string value = null;
            if (objValue != null)
                value = XmlConvert.ToXPathString(objValue);
            if (value == null)
                value = string.Empty;
            return value;
        }

Usage Example

예제 #1
0
 public override string Evaluate(Processor processor, ActionFrame frame) {
     return processor.EvaluateString(frame, this.key);
 }
All Usage Examples Of System.Xml.Xsl.XsltOld.Processor::EvaluateString