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
- XXXInfos.cs
- LinkedList.cs
- XmlFileEditor.cs
- FreeFormPanel.cs
- CaseExpr.cs
- ExpressionBindings.cs
- ProgressBarBrushConverter.cs
- WebPartMinimizeVerb.cs
- SqlTransaction.cs
- XPathCompileException.cs
- ItemContainerGenerator.cs
- ReferenceConverter.cs
- TransactionOptions.cs
- DataGridCaption.cs
- ColumnWidthChangedEvent.cs
- Misc.cs
- HtmlInputFile.cs
- ImpersonationContext.cs
- WebPartEditVerb.cs
- VersionedStreamOwner.cs
- SoapTypeAttribute.cs
- DefaultPropertyAttribute.cs
- RawStylusInputCustomDataList.cs
- listitem.cs
- NTAccount.cs
- TransformerInfoCollection.cs
- EmptyStringExpandableObjectConverter.cs
- TableRow.cs
- EntityCollectionChangedParams.cs
- Utils.cs
- SqlGenerator.cs
- BindingList.cs
- recordstatefactory.cs
- HttpRuntimeSection.cs
- QilPatternFactory.cs
- EditingMode.cs
- XmlNodeList.cs
- LowerCaseStringConverter.cs
- TypeUnloadedException.cs
- XmlUnspecifiedAttribute.cs
- ObservableCollection.cs
- PageParser.cs
- MimeTextImporter.cs
- BindingExpressionBase.cs
- BooleanExpr.cs
- IdSpace.cs
- DesignerOptionService.cs
- DetailsViewRow.cs
- Peer.cs
- CardSpacePolicyElement.cs
- DataGridViewCell.cs
- Error.cs
- ObjectStateManager.cs
- DataGridPagerStyle.cs
- SpecialFolderEnumConverter.cs
- HttpInputStream.cs
- RegexWriter.cs
- TimeoutValidationAttribute.cs
- HtmlInputControl.cs
- ErrorHandler.cs
- Version.cs
- ScriptServiceAttribute.cs
- linebase.cs
- EarlyBoundInfo.cs
- LinkLabelLinkClickedEvent.cs
- _NtlmClient.cs
- NamespaceCollection.cs
- EnumBuilder.cs
- PlaceHolder.cs
- InvokeBase.cs
- DataObjectSettingDataEventArgs.cs
- AccessibilityHelperForVista.cs
- ActivityDesigner.cs
- XmlDataLoader.cs
- DataRecordInfo.cs
- XmlSecureResolver.cs
- DbConvert.cs
- XmlILTrace.cs
- BufferedStream.cs
- ConfigurationStrings.cs
- InstancePersistenceEvent.cs
- NativeMethodsOther.cs
- EntityKey.cs
- ComEventsMethod.cs
- DrawingContext.cs
- WebPartConnectionsCloseVerb.cs
- AbsoluteQuery.cs
- XmlFormatWriterGenerator.cs
- DataGridViewAdvancedBorderStyle.cs
- AdRotator.cs
- NavigatingCancelEventArgs.cs
- ArrangedElementCollection.cs
- TextElementEnumerator.cs
- DocumentGridContextMenu.cs
- NativeMethods.cs
- FlagsAttribute.cs
- ObjectListDataBindEventArgs.cs
- ExtensionQuery.cs
- DefaultEventAttribute.cs
- PeerNameRecordCollection.cs