1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
//------------------------------------------------------------------------------
// <copyright file="StringOutput.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
// <owner current="true" primary="true">Microsoft</owner>
//------------------------------------------------------------------------------
namespace System.Xml.Xsl.XsltOld {
using Res = System.Xml.Utils.Res;
using System;
using System.Xml;
using System.Text;
internal class StringOutput : SequentialOutput {
private StringBuilder builder;
private string result;
internal string Result {
get {
return this.result;
}
}
internal StringOutput(Processor processor)
: base(processor) {
this.builder = new StringBuilder();
}
internal override void Write(char outputChar) {
this.builder.Append(outputChar);
#if DEBUG
this.result = this.builder.ToString();
#endif
}
internal override void Write(string outputText) {
this.builder.Append(outputText);
#if DEBUG
this.result = this.builder.ToString();
#endif
}
internal override void Close() {
this.result = this.builder.ToString();
}
}
}
|