Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataWeb / Server / System / Data / Services / Serializers / TextSerializer.cs / 1 / TextSerializer.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Provides a serializer for text content. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services.Serializers { #region Namespaces. using System.Diagnostics; using System.IO; using System.Text; using System.Xml; #endregion Namespaces. ////// Provides support for serializing responses in text format. /// internal struct TextSerializer : IExceptionWriter { ///Writer to which output is sent. private readonly TextWriter writer; ///Initializes a new /// Stream to which output should be sent. /// Encoding to be used to write the result. internal TextSerializer(Stream output, Encoding encoding) { Debug.Assert(output != null, "output != null"); Debug.Assert(encoding != null, "encoding != null"); this.writer = new StreamWriter(output, encoding); } ///for the specified stream. Serializes exception information. /// Description of exception to serialize. public void WriteException(HandleExceptionArgs args) { XmlWriter xmlWriter = XmlWriter.Create(this.writer); ErrorHandler.SerializeXmlError(args, xmlWriter); this.writer.Flush(); } ///Handles the complete serialization for the specified content. /// Single Content to write.. ///internal void WriteRequest(object content) { Debug.Assert(content != null, "content != null"); string contentAsText; if (!System.Data.Services.Parsing.WebConvert.TryXmlPrimitiveToString(content, out contentAsText)) { throw new InvalidOperationException(Strings.Serializer_CannotConvertValue(content)); } Debug.Assert(contentAsText != null, "contentAsText != null"); this.writer.Write(contentAsText); this.writer.Flush(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- // should be a byte array. // Copyright (c) Microsoft Corporation. All rights reserved. // //// Provides a serializer for text content. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services.Serializers { #region Namespaces. using System.Diagnostics; using System.IO; using System.Text; using System.Xml; #endregion Namespaces. ////// Provides support for serializing responses in text format. /// internal struct TextSerializer : IExceptionWriter { ///Writer to which output is sent. private readonly TextWriter writer; ///Initializes a new /// Stream to which output should be sent. /// Encoding to be used to write the result. internal TextSerializer(Stream output, Encoding encoding) { Debug.Assert(output != null, "output != null"); Debug.Assert(encoding != null, "encoding != null"); this.writer = new StreamWriter(output, encoding); } ///for the specified stream. Serializes exception information. /// Description of exception to serialize. public void WriteException(HandleExceptionArgs args) { XmlWriter xmlWriter = XmlWriter.Create(this.writer); ErrorHandler.SerializeXmlError(args, xmlWriter); this.writer.Flush(); } ///Handles the complete serialization for the specified content. /// Single Content to write.. ///internal void WriteRequest(object content) { Debug.Assert(content != null, "content != null"); string contentAsText; if (!System.Data.Services.Parsing.WebConvert.TryXmlPrimitiveToString(content, out contentAsText)) { throw new InvalidOperationException(Strings.Serializer_CannotConvertValue(content)); } Debug.Assert(contentAsText != null, "contentAsText != null"); this.writer.Write(contentAsText); this.writer.Flush(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. should be a byte array.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FormatSettings.cs
- XmlUtil.cs
- ContextQuery.cs
- WebCodeGenerator.cs
- OutputCacheProfileCollection.cs
- AstTree.cs
- JsonGlobals.cs
- SoapConverter.cs
- SingleSelectRootGridEntry.cs
- FtpCachePolicyElement.cs
- Group.cs
- XmlTextWriter.cs
- DependencyObjectProvider.cs
- BatchWriter.cs
- SqlEnums.cs
- MultilineStringConverter.cs
- UnknownBitmapEncoder.cs
- CounterSetInstance.cs
- ControlCollection.cs
- ProfilePropertyMetadata.cs
- CollectionChangedEventManager.cs
- HtmlInputPassword.cs
- Rfc2898DeriveBytes.cs
- WebBaseEventKeyComparer.cs
- NotConverter.cs
- DataTableMapping.cs
- shaperfactoryquerycacheentry.cs
- TableColumn.cs
- NamespaceDecl.cs
- XNodeValidator.cs
- log.cs
- PackageDigitalSignature.cs
- EventMemberCodeDomSerializer.cs
- SHA256Managed.cs
- UInt16.cs
- MenuItemAutomationPeer.cs
- RuntimeEnvironment.cs
- WebPageTraceListener.cs
- PassportPrincipal.cs
- StreamGeometryContext.cs
- TableLayoutPanelCellPosition.cs
- WebServiceErrorEvent.cs
- TypeInfo.cs
- GroupBoxRenderer.cs
- GroupDescription.cs
- XmlTypeMapping.cs
- SystemParameters.cs
- DocumentCollection.cs
- GroupLabel.cs
- XmlUtf8RawTextWriter.cs
- RegexRunner.cs
- BrushConverter.cs
- Rights.cs
- ObjectDataSourceEventArgs.cs
- QilStrConcat.cs
- TreeView.cs
- NameTable.cs
- NativeCppClassAttribute.cs
- FreezableCollection.cs
- DBDataPermissionAttribute.cs
- DiagnosticStrings.cs
- Rfc2898DeriveBytes.cs
- WebRequestModuleElementCollection.cs
- StreamGeometryContext.cs
- SctClaimSerializer.cs
- OLEDB_Enum.cs
- BrushValueSerializer.cs
- ConfigXmlAttribute.cs
- SharedStatics.cs
- DeadCharTextComposition.cs
- MetaType.cs
- Button.cs
- CqlLexer.cs
- HtmlMeta.cs
- BackgroundWorker.cs
- LinqDataSourceContextEventArgs.cs
- DataBindingCollection.cs
- IgnoreFileBuildProvider.cs
- StringFreezingAttribute.cs
- SmiMetaDataProperty.cs
- CryptoHelper.cs
- PathData.cs
- DataTable.cs
- ReadOnlyCollectionBase.cs
- ScrollItemProviderWrapper.cs
- Attributes.cs
- TextChange.cs
- Selection.cs
- AdapterUtil.cs
- CompoundFileStorageReference.cs
- Int16.cs
- AccessDataSourceView.cs
- TableLayoutPanelCellPosition.cs
- DbConnectionClosed.cs
- Accessible.cs
- SqlCommand.cs
- PartialList.cs
- CodePrimitiveExpression.cs
- StandardOleMarshalObject.cs
- EmptyImpersonationContext.cs