Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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)); } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PrintController.cs
- EventLogTraceListener.cs
- XsltFunctions.cs
- DispatcherTimer.cs
- CodeNamespace.cs
- JoinCqlBlock.cs
- Boolean.cs
- ErrorFormatterPage.cs
- ScriptDescriptor.cs
- RoutingExtension.cs
- LinearGradientBrush.cs
- DataControlExtensions.cs
- XmlSchemaValidator.cs
- FontNameConverter.cs
- UxThemeWrapper.cs
- GC.cs
- COM2EnumConverter.cs
- SqlDataRecord.cs
- WebPartManagerInternals.cs
- CodeParameterDeclarationExpressionCollection.cs
- CodeStatement.cs
- DataDocumentXPathNavigator.cs
- TagNameToTypeMapper.cs
- LockedHandleGlyph.cs
- RecognizerBase.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- StringBuilder.cs
- StronglyTypedResourceBuilder.cs
- XmlSchemaException.cs
- AspCompat.cs
- FunctionCommandText.cs
- DesignerTransactionCloseEvent.cs
- nulltextnavigator.cs
- webeventbuffer.cs
- InputLanguageProfileNotifySink.cs
- BStrWrapper.cs
- TdsParserStateObject.cs
- ResourceManager.cs
- DataGridViewComboBoxCell.cs
- XmlSchemaException.cs
- EditCommandColumn.cs
- DataViewManager.cs
- PropertyMetadata.cs
- ClickablePoint.cs
- XamlRtfConverter.cs
- FileReader.cs
- NullableDoubleSumAggregationOperator.cs
- ObsoleteAttribute.cs
- DisableDpiAwarenessAttribute.cs
- ScriptResourceInfo.cs
- SqlTrackingWorkflowInstance.cs
- StandardToolWindows.cs
- XhtmlBasicPhoneCallAdapter.cs
- ToolStripItemClickedEventArgs.cs
- CompressedStack.cs
- TextBreakpoint.cs
- WhiteSpaceTrimStringConverter.cs
- RichTextBox.cs
- SimpleWorkerRequest.cs
- Type.cs
- DecoratedNameAttribute.cs
- HyperLinkStyle.cs
- ArrayTypeMismatchException.cs
- querybuilder.cs
- IRCollection.cs
- ContainerFilterService.cs
- TimeoutException.cs
- RetrieveVirtualItemEventArgs.cs
- ButtonColumn.cs
- CheckBox.cs
- XmlDataFileEditor.cs
- ControlCachePolicy.cs
- FastPropertyAccessor.cs
- ToolStripRenderer.cs
- SQLInt32Storage.cs
- Matrix3DConverter.cs
- TimeIntervalCollection.cs
- LineUtil.cs
- TreeBuilder.cs
- ContextProperty.cs
- ContentPlaceHolder.cs
- InkCanvas.cs
- TimeSpanMinutesConverter.cs
- AutoFocusStyle.xaml.cs
- _StreamFramer.cs
- HttpTransportSecurityElement.cs
- MenuItemStyleCollectionEditor.cs
- Identity.cs
- KeyValuePairs.cs
- RequestCacheValidator.cs
- XamlReader.cs
- SafePipeHandle.cs
- DetailsViewAutoFormat.cs
- ObfuscateAssemblyAttribute.cs
- CollectionDataContractAttribute.cs
- DefaultAsyncDataDispatcher.cs
- COM2ColorConverter.cs
- SelectionEditor.cs
- IIS7WorkerRequest.cs
- QueryCacheKey.cs