2016-08-03 10:59:49 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// <copyright file="TextEvent.cs" company="Microsoft">
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
// </copyright>
|
2017-08-21 15:34:15 +00:00
|
|
|
// <owner current="true" primary="true">Microsoft</owner>
|
2016-08-03 10:59:49 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace System.Xml.Xsl.XsltOld {
|
|
|
|
using Res = System.Xml.Utils.Res;
|
|
|
|
using System;
|
|
|
|
using System.Diagnostics;
|
|
|
|
using System.Xml;
|
|
|
|
using System.Xml.XPath;
|
|
|
|
|
|
|
|
internal class TextEvent : Event {
|
|
|
|
private string text;
|
|
|
|
|
|
|
|
protected TextEvent() {}
|
|
|
|
|
|
|
|
public TextEvent(string text) {
|
|
|
|
Debug.Assert(text != null);
|
|
|
|
this.text = text;
|
|
|
|
}
|
|
|
|
|
|
|
|
public TextEvent(Compiler compiler) {
|
|
|
|
NavigatorInput input = compiler.Input;
|
|
|
|
Debug.Assert(input.NodeType == XPathNodeType.Text || input.NodeType == XPathNodeType.SignificantWhitespace);
|
|
|
|
this.text = input.Value;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override bool Output(Processor processor, ActionFrame frame) {
|
|
|
|
return processor.TextEvent(this.text);
|
|
|
|
}
|
|
|
|
|
|
|
|
public virtual string Evaluate(Processor processor, ActionFrame frame) {
|
|
|
|
return this.text;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|