Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataWeb / Server / System / Data / Services / Serializers / BinarySerializer.cs / 1305376 / BinarySerializer.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Provides a serializer for binary content. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services.Serializers { using System.Diagnostics; using System.IO; using System.Xml; ///Provides support for serializing responses in binary format. ////// The file histroy should show a BinaryExceptionTextWriter which is no longer used. /// internal struct BinarySerializer : IExceptionWriter { ///Stream to which output is sent. private readonly Stream outputStream; ///Initializes a new /// Stream to which output should be sent. internal BinarySerializer(Stream output) { Debug.Assert(output != null, "output != null"); this.outputStream = output; } ///for the specified stream. Serializes exception information. /// Description of exception to serialize. public void WriteException(HandleExceptionArgs args) { Debug.Assert(args != null, "args != null"); XmlWriter xmlWriter = XmlWriter.Create(this.outputStream); ErrorHandler.SerializeXmlError(args, xmlWriter); xmlWriter.Flush(); } ///Handles the complete serialization for the specified content. /// Single Content to write.. ///internal void WriteRequest(object content) { Debug.Assert(content != null, "content != null"); // The metadata layer should only accept byte arrays as binary-serialized values. byte[] bytes; if (content is byte[]) { bytes = (byte[])content; } else { bytes = (byte[])((System.Data.Linq.Binary)content).ToArray(); } this.outputStream.Write(bytes, 0, bytes.Length); } /// should be a byte array. Handles the complete serialization for the specified stream. /// Input stream to write out. /// Buffer size to use during copying. internal void WriteRequest(Stream inputStream, int bufferSize) { Debug.Assert(inputStream != null, "stream != null"); WebUtil.CopyStream(inputStream, this.outputStream, bufferSize); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Provides a serializer for binary content. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services.Serializers { using System.Diagnostics; using System.IO; using System.Xml; ///Provides support for serializing responses in binary format. ////// The file histroy should show a BinaryExceptionTextWriter which is no longer used. /// internal struct BinarySerializer : IExceptionWriter { ///Stream to which output is sent. private readonly Stream outputStream; ///Initializes a new /// Stream to which output should be sent. internal BinarySerializer(Stream output) { Debug.Assert(output != null, "output != null"); this.outputStream = output; } ///for the specified stream. Serializes exception information. /// Description of exception to serialize. public void WriteException(HandleExceptionArgs args) { Debug.Assert(args != null, "args != null"); XmlWriter xmlWriter = XmlWriter.Create(this.outputStream); ErrorHandler.SerializeXmlError(args, xmlWriter); xmlWriter.Flush(); } ///Handles the complete serialization for the specified content. /// Single Content to write.. ///internal void WriteRequest(object content) { Debug.Assert(content != null, "content != null"); // The metadata layer should only accept byte arrays as binary-serialized values. byte[] bytes; if (content is byte[]) { bytes = (byte[])content; } else { bytes = (byte[])((System.Data.Linq.Binary)content).ToArray(); } this.outputStream.Write(bytes, 0, bytes.Length); } /// should be a byte array. Handles the complete serialization for the specified stream. /// Input stream to write out. /// Buffer size to use during copying. internal void WriteRequest(Stream inputStream, int bufferSize) { Debug.Assert(inputStream != null, "stream != null"); WebUtil.CopyStream(inputStream, this.outputStream, bufferSize); } } } // 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
- BitmapImage.cs
- CodeLinePragma.cs
- Context.cs
- InplaceBitmapMetadataWriter.cs
- Highlights.cs
- TagNameToTypeMapper.cs
- DataDesignUtil.cs
- DataView.cs
- AssemblyBuilderData.cs
- CssStyleCollection.cs
- ExtentCqlBlock.cs
- BindableTemplateBuilder.cs
- Utils.cs
- RestClientProxyHandler.cs
- TagNameToTypeMapper.cs
- DataGridColumnCollection.cs
- TreeViewDataItemAutomationPeer.cs
- TraceData.cs
- smtppermission.cs
- GeometryConverter.cs
- Tuple.cs
- HighlightVisual.cs
- RenderingEventArgs.cs
- EditorZone.cs
- AndCondition.cs
- DecimalConverter.cs
- Activity.cs
- BuildResultCache.cs
- XmlElement.cs
- ConvertersCollection.cs
- HttpListenerElement.cs
- XmlResolver.cs
- ApplicationActivator.cs
- PartitionedStream.cs
- QuotedPrintableStream.cs
- OleDbParameter.cs
- RunWorkerCompletedEventArgs.cs
- DbException.cs
- Image.cs
- ServiceDescriptionSerializer.cs
- LoginUtil.cs
- WpfXamlMember.cs
- GeometryHitTestResult.cs
- NumberAction.cs
- RegisteredArrayDeclaration.cs
- OptimizerPatterns.cs
- ProxyElement.cs
- TextServicesContext.cs
- SR.cs
- AttributeEmitter.cs
- WindowsFormsHostPropertyMap.cs
- WindowsFormsLinkLabel.cs
- OleDbRowUpdatingEvent.cs
- AuthenticationService.cs
- CqlBlock.cs
- ZipFileInfoCollection.cs
- XMLSyntaxException.cs
- TlsnegoTokenAuthenticator.cs
- LayoutUtils.cs
- FlowDocument.cs
- Compiler.cs
- ConnectionPoint.cs
- AuthenticationServiceManager.cs
- DataGridTextBoxColumn.cs
- CardSpaceSelector.cs
- GlyphInfoList.cs
- HMACSHA256.cs
- UpdateEventArgs.cs
- XmlDsigSep2000.cs
- QueryAccessibilityHelpEvent.cs
- RegistrationServices.cs
- DataBindingsDialog.cs
- ListView.cs
- Point4DConverter.cs
- QuaternionKeyFrameCollection.cs
- NullReferenceException.cs
- ComPlusServiceLoader.cs
- XPathAncestorIterator.cs
- ConfigXmlWhitespace.cs
- DecimalConstantAttribute.cs
- _Win32.cs
- Environment.cs
- BuildResult.cs
- Label.cs
- DbException.cs
- CookieProtection.cs
- contentDescriptor.cs
- UrlMappingsSection.cs
- Collection.cs
- Int32Converter.cs
- TableStyle.cs
- WpfPayload.cs
- ButtonField.cs
- CacheForPrimitiveTypes.cs
- TypeBuilderInstantiation.cs
- SectionVisual.cs
- XPathExpr.cs
- TimeSpanSecondsConverter.cs
- OptimisticConcurrencyException.cs
- RichTextBoxAutomationPeer.cs