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
- WebConfigurationHost.cs
- indexingfiltermarshaler.cs
- CodeMethodReturnStatement.cs
- SerializableAttribute.cs
- WindowsAuthenticationEventArgs.cs
- FormsAuthenticationUserCollection.cs
- EncryptedType.cs
- HtmlInputText.cs
- DesignerRegion.cs
- GridSplitterAutomationPeer.cs
- CurrentChangingEventArgs.cs
- CodeDomComponentSerializationService.cs
- DWriteFactory.cs
- Int64Animation.cs
- InlineObject.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- ListViewHitTestInfo.cs
- InteropBitmapSource.cs
- BindingCompleteEventArgs.cs
- ToolboxComponentsCreatingEventArgs.cs
- MasterPageCodeDomTreeGenerator.cs
- NTAccount.cs
- VariantWrapper.cs
- PolyLineSegmentFigureLogic.cs
- XmlQueryRuntime.cs
- UserControlParser.cs
- FontInfo.cs
- DragDeltaEventArgs.cs
- AnimationLayer.cs
- OdbcEnvironment.cs
- MouseActionValueSerializer.cs
- DataGridBoundColumn.cs
- Control.cs
- UnicodeEncoding.cs
- ClientSettingsStore.cs
- SymbolEqualComparer.cs
- TreeNodeCollectionEditor.cs
- MobileControlDesigner.cs
- DrawingAttributes.cs
- PersonalizationProviderHelper.cs
- XmlConverter.cs
- cookieexception.cs
- PasswordTextContainer.cs
- Buffer.cs
- KeyValuePairs.cs
- EdmItemCollection.cs
- XmlChoiceIdentifierAttribute.cs
- SHA1.cs
- SiteMapNodeItemEventArgs.cs
- ToolBar.cs
- KeyTimeConverter.cs
- QueryResult.cs
- TransformPatternIdentifiers.cs
- DocumentViewerAutomationPeer.cs
- RangeValidator.cs
- CalendarKeyboardHelper.cs
- CodeExporter.cs
- DataConnectionHelper.cs
- SecureStringHasher.cs
- PrePostDescendentsWalker.cs
- _NetRes.cs
- DependencyObjectProvider.cs
- FontCacheUtil.cs
- RecipientInfo.cs
- SafeSecurityHelper.cs
- ForeignKeyFactory.cs
- XamlTypeWithExplicitNamespace.cs
- StandardCommands.cs
- XmlImplementation.cs
- ObjectQueryExecutionPlan.cs
- Mapping.cs
- RIPEMD160.cs
- ParenthesizePropertyNameAttribute.cs
- ToolboxItemLoader.cs
- XmlDataCollection.cs
- EdmFunctions.cs
- VirtualPathUtility.cs
- UnsafeNativeMethods.cs
- OnOperation.cs
- FieldNameLookup.cs
- ObjectDisposedException.cs
- SequentialOutput.cs
- WorkflowTerminatedException.cs
- OptimizedTemplateContentHelper.cs
- UIElement3D.cs
- EntityDataSourceWrapperPropertyDescriptor.cs
- TextHidden.cs
- ClientEventManager.cs
- CodeTypeOfExpression.cs
- QueueProcessor.cs
- PenLineCapValidation.cs
- TextElementCollectionHelper.cs
- Application.cs
- SolidColorBrush.cs
- PropertyPushdownHelper.cs
- InfiniteTimeSpanConverter.cs
- CollectionAdapters.cs
- TextChangedEventArgs.cs
- Point4DConverter.cs
- PersistNameAttribute.cs