Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / TextOutput.cs / 1 / TextOutput.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Xsl.XsltOld { using Res = System.Xml.Utils.Res; using System; using System.IO; using System.Xml; using System.Xml.XPath; using System.Text; internal class TextOutput : SequentialOutput { private TextWriter writer; internal TextOutput(Processor processor, Stream stream) : base(processor) { if (stream == null) { throw new ArgumentNullException("stream"); } this.encoding = processor.Output.Encoding; this.writer = new StreamWriter(stream, this.encoding); } internal TextOutput(Processor processor, TextWriter writer) : base(processor) { if (writer == null) { throw new ArgumentNullException("writer"); } this.encoding = writer.Encoding; this.writer = writer; } internal override void Write(char outputChar) { this.writer.Write(outputChar); } internal override void Write(string outputText) { this.writer.Write(outputText); } internal override void Close() { this.writer.Flush(); this.writer = null; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Xsl.XsltOld { using Res = System.Xml.Utils.Res; using System; using System.IO; using System.Xml; using System.Xml.XPath; using System.Text; internal class TextOutput : SequentialOutput { private TextWriter writer; internal TextOutput(Processor processor, Stream stream) : base(processor) { if (stream == null) { throw new ArgumentNullException("stream"); } this.encoding = processor.Output.Encoding; this.writer = new StreamWriter(stream, this.encoding); } internal TextOutput(Processor processor, TextWriter writer) : base(processor) { if (writer == null) { throw new ArgumentNullException("writer"); } this.encoding = writer.Encoding; this.writer = writer; } internal override void Write(char outputChar) { this.writer.Write(outputChar); } internal override void Write(string outputText) { this.writer.Write(outputText); } internal override void Close() { this.writer.Flush(); this.writer = null; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DesignerDataSourceView.cs
- ApplicationDirectory.cs
- ClassValidator.cs
- ListBox.cs
- AnnouncementInnerClient11.cs
- HostExecutionContextManager.cs
- DbSetClause.cs
- ConfigurationStrings.cs
- MetricEntry.cs
- PrintDocument.cs
- BatchWriter.cs
- MenuItem.cs
- FormattedText.cs
- TabletDevice.cs
- NumberSubstitution.cs
- XmlQueryRuntime.cs
- OAVariantLib.cs
- MenuStrip.cs
- DurableEnlistmentState.cs
- NativeMethods.cs
- ParentControlDesigner.cs
- TextEffect.cs
- ExceptionUtility.cs
- DecimalConverter.cs
- EntityDataSourceDesignerHelper.cs
- Int64Storage.cs
- SoapSchemaExporter.cs
- TableDetailsRow.cs
- MessageQueueConverter.cs
- ElementHost.cs
- XmlSerializationGeneratedCode.cs
- AuthenticationSchemesHelper.cs
- ObjectSet.cs
- OfTypeExpression.cs
- ProfileGroupSettingsCollection.cs
- ToolStripMenuItemCodeDomSerializer.cs
- FieldNameLookup.cs
- SqlDataSourceDesigner.cs
- MemoryRecordBuffer.cs
- TypeSystem.cs
- RankException.cs
- Point3DAnimationBase.cs
- ComponentDispatcher.cs
- SafeFindHandle.cs
- EncryptedType.cs
- TableChangeProcessor.cs
- WaveHeader.cs
- SizeValueSerializer.cs
- StyleConverter.cs
- HasCopySemanticsAttribute.cs
- WebHttpSecurityModeHelper.cs
- HandlerWithFactory.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- CodeMemberEvent.cs
- GeometryCollection.cs
- KeyPressEvent.cs
- SmtpNtlmAuthenticationModule.cs
- ReflectionUtil.cs
- contentDescriptor.cs
- BoolExpressionVisitors.cs
- WebPartTracker.cs
- Content.cs
- FormViewModeEventArgs.cs
- LineMetrics.cs
- HashSetDebugView.cs
- ByteFacetDescriptionElement.cs
- PolygonHotSpot.cs
- DataList.cs
- GeometryGroup.cs
- XmlMessageFormatter.cs
- ObjectListDesigner.cs
- Int16Storage.cs
- SizeKeyFrameCollection.cs
- ChannelOptions.cs
- RoutedEventHandlerInfo.cs
- EncryptedReference.cs
- XPathDocumentBuilder.cs
- ObservableDictionary.cs
- wmiprovider.cs
- ProtocolsConfigurationHandler.cs
- DbConnectionOptions.cs
- SqlTypeSystemProvider.cs
- Button.cs
- StreamReader.cs
- ContentDisposition.cs
- BeginStoryboard.cs
- ServerType.cs
- AsymmetricKeyExchangeFormatter.cs
- Material.cs
- CopyNamespacesAction.cs
- FileVersion.cs
- SymbolMethod.cs
- PeerInvitationResponse.cs
- SchemaMerger.cs
- ExtenderHelpers.cs
- DefaultValueAttribute.cs
- mediaclock.cs
- StyleBamlRecordReader.cs
- DiscoveryDocumentSearchPattern.cs
- SoapProtocolReflector.cs