Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- PhonemeEventArgs.cs
- ConnectionPoint.cs
- figurelength.cs
- ThreadAttributes.cs
- XamlSerializerUtil.cs
- FloaterParagraph.cs
- DetailsViewPageEventArgs.cs
- IconHelper.cs
- CounterSample.cs
- DataGridHeaderBorder.cs
- ExtenderControl.cs
- ToolStripComboBox.cs
- ReadOnlyObservableCollection.cs
- HttpCachePolicy.cs
- HtmlToClrEventProxy.cs
- ContextProperty.cs
- ControlBindingsConverter.cs
- FileAccessException.cs
- WindowsGrip.cs
- InvalidComObjectException.cs
- _CookieModule.cs
- PropertyGroupDescription.cs
- BrowsableAttribute.cs
- FromReply.cs
- DataSourceCache.cs
- TimeoutException.cs
- EdmEntityTypeAttribute.cs
- CompositeControl.cs
- LocatorPart.cs
- BaseServiceProvider.cs
- TextBoxBase.cs
- DataColumnChangeEvent.cs
- XmlFileEditor.cs
- BindingMAnagerBase.cs
- StyleSheetDesigner.cs
- GraphicsState.cs
- DataMisalignedException.cs
- EntityDataSourceChangingEventArgs.cs
- DeclaredTypeValidator.cs
- DescendentsWalkerBase.cs
- MailBnfHelper.cs
- EmbossBitmapEffect.cs
- SimpleBitVector32.cs
- ComContractElement.cs
- CollectionBase.cs
- TrackingRecord.cs
- PersistChildrenAttribute.cs
- AutomationElementCollection.cs
- TemplateBindingExtensionConverter.cs
- CipherData.cs
- RelatedEnd.cs
- ToolCreatedEventArgs.cs
- DbParameterCollectionHelper.cs
- ToolboxDataAttribute.cs
- CacheSection.cs
- BinHexDecoder.cs
- TextPointer.cs
- ParserExtension.cs
- GetMemberBinder.cs
- ServicePoint.cs
- CodeIdentifier.cs
- OLEDB_Enum.cs
- Enum.cs
- CoTaskMemSafeHandle.cs
- SQLConvert.cs
- VirtualPathProvider.cs
- NativeStructs.cs
- MultipleViewProviderWrapper.cs
- BaseTemplateCodeDomTreeGenerator.cs
- DoubleIndependentAnimationStorage.cs
- AccessibilityHelperForXpWin2k3.cs
- DashStyles.cs
- ipaddressinformationcollection.cs
- XmlDictionaryString.cs
- NumberFormatInfo.cs
- WindowsStatusBar.cs
- AttributeUsageAttribute.cs
- Delegate.cs
- PocoPropertyAccessorStrategy.cs
- UndirectedGraph.cs
- MemberRelationshipService.cs
- SingleSelectRootGridEntry.cs
- ColorConvertedBitmapExtension.cs
- Guid.cs
- ProofTokenCryptoHandle.cs
- PersonalizationState.cs
- ObjectDataSourceStatusEventArgs.cs
- DataGridPagerStyle.cs
- ProfileBuildProvider.cs
- TimeSpan.cs
- SchemaMerger.cs
- mediapermission.cs
- XmlMemberMapping.cs
- DetailsViewDeletedEventArgs.cs
- WindowsToolbarItemAsMenuItem.cs
- LocationReference.cs
- XmlSchemaAnnotated.cs
- Point3DValueSerializer.cs
- ToolStripControlHost.cs
- MatcherBuilder.cs