Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Net / System / Net / Mail / SevenBitStream.cs / 1 / SevenBitStream.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Mime { using System; using System.IO; ////// This stream validates outgoing bytes to be within the /// acceptible range of 0 - 127. Writes will throw if a /// value > 127 is found. /// internal class SevenBitStream : DelegatedStream { ////// ctor. /// /// Underlying stream internal SevenBitStream(Stream stream) : base(stream) { } ////// Writes the specified content to the underlying stream /// /// Buffer to write /// Offset within buffer to start writing /// Count of bytes to write /// Callback to call when write completes /// State to pass to callback public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state) { if (buffer == null) throw new ArgumentNullException("buffer"); if (offset < 0 || offset >= buffer.Length) throw new ArgumentOutOfRangeException("offset"); if (offset + count > buffer.Length) throw new ArgumentOutOfRangeException("count"); CheckBytes(buffer, offset, count); IAsyncResult result = base.BeginWrite(buffer, offset, count, callback, state); return result; } ////// Writes the specified content to the underlying stream /// /// Buffer to write /// Offset within buffer to start writing /// Count of bytes to write public override void Write(byte[] buffer, int offset, int count) { if (buffer == null) throw new ArgumentNullException("buffer"); if (offset < 0 || offset >= buffer.Length) throw new ArgumentOutOfRangeException("offset"); if (offset + count > buffer.Length) throw new ArgumentOutOfRangeException("count"); CheckBytes(buffer, offset, count); base.Write(buffer, offset, count); } // helper methods ////// Checks the data in the buffer for bytes > 127. /// /// Buffer containing data /// Offset within buffer to start checking /// Count of bytes to check void CheckBytes(byte[] buffer, int offset, int count) { for (int i = count; i < offset + count; i++) { if (buffer[i] > 127) throw new FormatException(SR.GetString(SR.Mail7BitStreamInvalidCharacter)); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Mime { using System; using System.IO; ////// This stream validates outgoing bytes to be within the /// acceptible range of 0 - 127. Writes will throw if a /// value > 127 is found. /// internal class SevenBitStream : DelegatedStream { ////// ctor. /// /// Underlying stream internal SevenBitStream(Stream stream) : base(stream) { } ////// Writes the specified content to the underlying stream /// /// Buffer to write /// Offset within buffer to start writing /// Count of bytes to write /// Callback to call when write completes /// State to pass to callback public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state) { if (buffer == null) throw new ArgumentNullException("buffer"); if (offset < 0 || offset >= buffer.Length) throw new ArgumentOutOfRangeException("offset"); if (offset + count > buffer.Length) throw new ArgumentOutOfRangeException("count"); CheckBytes(buffer, offset, count); IAsyncResult result = base.BeginWrite(buffer, offset, count, callback, state); return result; } ////// Writes the specified content to the underlying stream /// /// Buffer to write /// Offset within buffer to start writing /// Count of bytes to write public override void Write(byte[] buffer, int offset, int count) { if (buffer == null) throw new ArgumentNullException("buffer"); if (offset < 0 || offset >= buffer.Length) throw new ArgumentOutOfRangeException("offset"); if (offset + count > buffer.Length) throw new ArgumentOutOfRangeException("count"); CheckBytes(buffer, offset, count); base.Write(buffer, offset, count); } // helper methods ////// Checks the data in the buffer for bytes > 127. /// /// Buffer containing data /// Offset within buffer to start checking /// Count of bytes to check void CheckBytes(byte[] buffer, int offset, int count) { for (int i = count; i < offset + count; i++) { if (buffer[i] > 127) throw new FormatException(SR.GetString(SR.Mail7BitStreamInvalidCharacter)); } } } } // 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
- XPathQueryGenerator.cs
- ObjectItemLoadingSessionData.cs
- MatrixCamera.cs
- TargetException.cs
- PrivateFontCollection.cs
- SpecialNameAttribute.cs
- WpfGeneratedKnownTypes.cs
- InvokeMethod.cs
- PointF.cs
- DataGridViewCellParsingEventArgs.cs
- XmlSchemaRedefine.cs
- DataGridColumnHeadersPresenterAutomationPeer.cs
- XmlCharType.cs
- RadioButtonBaseAdapter.cs
- RootNamespaceAttribute.cs
- TextContainer.cs
- RootBuilder.cs
- ExpressionBuilderCollection.cs
- AddIn.cs
- ClientOptions.cs
- CryptoKeySecurity.cs
- Geometry3D.cs
- EntityStoreSchemaFilterEntry.cs
- ContentPathSegment.cs
- METAHEADER.cs
- ResourceDescriptionAttribute.cs
- WebPartZoneAutoFormat.cs
- CounterSample.cs
- MetaDataInfo.cs
- RegistryPermission.cs
- MemberProjectedSlot.cs
- PlanCompiler.cs
- DataGridViewColumnCollection.cs
- ClientConfigurationHost.cs
- LineServices.cs
- TreeNodeStyle.cs
- MissingMethodException.cs
- TableLayoutPanel.cs
- XmlSchemaInferenceException.cs
- ValueConversionAttribute.cs
- WindowsImpersonationContext.cs
- UrlAuthFailedErrorFormatter.cs
- ObjectSerializerFactory.cs
- DbParameterCollection.cs
- SafeRegistryHandle.cs
- GPRECTF.cs
- COM2Enum.cs
- Rotation3DAnimationBase.cs
- ProxyGenerator.cs
- GroupByExpressionRewriter.cs
- OleDbTransaction.cs
- MessageQueueAccessControlEntry.cs
- StreamSecurityUpgradeInitiatorBase.cs
- TemplateBuilder.cs
- SoapObjectReader.cs
- EntitySetRetriever.cs
- ProfileInfo.cs
- HttpValueCollection.cs
- AsymmetricAlgorithm.cs
- ContainerControl.cs
- ProfileSection.cs
- KnownBoxes.cs
- VariableBinder.cs
- XmlWriterTraceListener.cs
- PresentationUIStyleResources.cs
- DefaultCommandExtensionCallback.cs
- InternalTypeHelper.cs
- SecurityTokenParametersEnumerable.cs
- XmlTextAttribute.cs
- mongolianshape.cs
- ExpressionBuilderContext.cs
- SymDocumentType.cs
- columnmapfactory.cs
- Formatter.cs
- wgx_render.cs
- ConfigurationSchemaErrors.cs
- IgnoreDeviceFilterElement.cs
- ToolboxComponentsCreatingEventArgs.cs
- Point.cs
- OneOf.cs
- ZoneButton.cs
- EntityDataSourceContextCreatingEventArgs.cs
- FileDialog.cs
- Utils.cs
- QilNode.cs
- DecodeHelper.cs
- ManifestSignatureInformation.cs
- SqlDeflator.cs
- BStrWrapper.cs
- PartialTrustVisibleAssembly.cs
- OpenFileDialog.cs
- TypeLibConverter.cs
- WsdlWriter.cs
- XmlILTrace.cs
- EventRoute.cs
- StringHandle.cs
- LineSegment.cs
- CqlGenerator.cs
- OperationParameterInfoCollection.cs
- FamilyCollection.cs