Code:
/ DotNET / DotNET / 8.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
- AssemblyBuilder.cs
- CodeDOMProvider.cs
- GroupedContextMenuStrip.cs
- RunWorkerCompletedEventArgs.cs
- OperationParameterInfo.cs
- DebuggerService.cs
- DateTimeUtil.cs
- NonDualMessageSecurityOverHttp.cs
- CommonXSendMessage.cs
- ViewManager.cs
- CommandBinding.cs
- HttpRequestContext.cs
- FixedHighlight.cs
- IntermediatePolicyValidator.cs
- DataGridViewTextBoxCell.cs
- NativeMethods.cs
- TextDecoration.cs
- ObfuscationAttribute.cs
- ObjectComplexPropertyMapping.cs
- OptionalRstParameters.cs
- MenuEventArgs.cs
- SplitterEvent.cs
- DbDataReader.cs
- Margins.cs
- DetailsViewUpdatedEventArgs.cs
- SimpleWorkerRequest.cs
- WindowsTooltip.cs
- ADRole.cs
- ImageUrlEditor.cs
- AttributeUsageAttribute.cs
- UiaCoreProviderApi.cs
- HttpRequest.cs
- storepermissionattribute.cs
- ButtonBase.cs
- FamilyTypefaceCollection.cs
- ColumnWidthChangedEvent.cs
- HitTestDrawingContextWalker.cs
- MetafileHeaderEmf.cs
- DebugHandleTracker.cs
- PolicyLevel.cs
- SmtpFailedRecipientsException.cs
- CleanUpVirtualizedItemEventArgs.cs
- Rotation3DKeyFrameCollection.cs
- TraceSwitch.cs
- Select.cs
- DependencyPropertyConverter.cs
- controlskin.cs
- QueueException.cs
- Accessible.cs
- CrossSiteScriptingValidation.cs
- CheckBox.cs
- FileDataSourceCache.cs
- MetadataPropertyAttribute.cs
- PropertyEmitter.cs
- SurrogateSelector.cs
- ReadOnlyDataSource.cs
- PathParser.cs
- XPathMessageFilterElementCollection.cs
- ClientConfigPaths.cs
- DependencyObjectPropertyDescriptor.cs
- VectorAnimationUsingKeyFrames.cs
- IISMapPath.cs
- TemplateLookupAction.cs
- FixedPageProcessor.cs
- BaseWebProxyFinder.cs
- CharAnimationBase.cs
- ExternalDataExchangeService.cs
- UnsafeNativeMethodsPenimc.cs
- KeyTimeConverter.cs
- DataBindEngine.cs
- IfJoinedCondition.cs
- SystemIPv4InterfaceProperties.cs
- Range.cs
- EncoderExceptionFallback.cs
- PointValueSerializer.cs
- JapaneseLunisolarCalendar.cs
- WhitespaceRule.cs
- DataMisalignedException.cs
- RangeValidator.cs
- WebPartZone.cs
- ManualResetEvent.cs
- BuildResultCache.cs
- BooleanToVisibilityConverter.cs
- AlphabeticalEnumConverter.cs
- X509Extension.cs
- ListBindingHelper.cs
- HttpModuleActionCollection.cs
- IntersectQueryOperator.cs
- VisualProxy.cs
- RelatedPropertyManager.cs
- ObjectCloneHelper.cs
- EntityDataSourceMemberPath.cs
- HttpGetProtocolReflector.cs
- keycontainerpermission.cs
- DbException.cs
- ManagedWndProcTracker.cs
- AccessorTable.cs
- LeftCellWrapper.cs
- WebCategoryAttribute.cs
- XmlSiteMapProvider.cs