Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- MarkerProperties.cs
- HeaderedContentControl.cs
- ArgIterator.cs
- NativeMethods.cs
- KeyValuePair.cs
- CollectionExtensions.cs
- FilterInvalidBodyAccessException.cs
- RsaSecurityKey.cs
- CanonicalizationDriver.cs
- Span.cs
- RoutingBehavior.cs
- InputScopeAttribute.cs
- EntitySetRetriever.cs
- XpsFilter.cs
- CDSsyncETWBCLProvider.cs
- JoinCqlBlock.cs
- DataControlLinkButton.cs
- DataListItem.cs
- PackagingUtilities.cs
- DragStartedEventArgs.cs
- CodeGroup.cs
- TextSelectionHelper.cs
- IisTraceWebEventProvider.cs
- BrowserDefinitionCollection.cs
- DecimalStorage.cs
- ComPlusInstanceContextInitializer.cs
- MailAddress.cs
- EntityDataSourceMemberPath.cs
- RepeaterItemEventArgs.cs
- ReliabilityContractAttribute.cs
- DataMemberFieldConverter.cs
- RbTree.cs
- DataTableReader.cs
- _SSPIWrapper.cs
- SafeNativeMethodsCLR.cs
- SerTrace.cs
- BatchParser.cs
- UntypedNullExpression.cs
- ProfilePropertyNameValidator.cs
- SafeBitVector32.cs
- SignerInfo.cs
- RenderingBiasValidation.cs
- WebPartDisplayMode.cs
- BindableTemplateBuilder.cs
- GPRECT.cs
- TreeViewCancelEvent.cs
- codemethodreferenceexpression.cs
- TypeHelpers.cs
- ParallelEnumerable.cs
- CodeEventReferenceExpression.cs
- LinkButton.cs
- LinearKeyFrames.cs
- DataGridRowHeaderAutomationPeer.cs
- ZipIOExtraFieldPaddingElement.cs
- AllMembershipCondition.cs
- Transform.cs
- BitStack.cs
- Renderer.cs
- CompModSwitches.cs
- CachedPathData.cs
- HtmlImageAdapter.cs
- safelink.cs
- SQLInt64.cs
- WindowsFormsSynchronizationContext.cs
- TextLineBreak.cs
- SafeEventHandle.cs
- DoubleStorage.cs
- FileIOPermission.cs
- RootProfilePropertySettingsCollection.cs
- JournalEntry.cs
- GenericIdentity.cs
- DiagnosticsConfigurationHandler.cs
- HtmlEmptyTagControlBuilder.cs
- TraceLevelStore.cs
- IgnorePropertiesAttribute.cs
- Message.cs
- ForceCopyBuildProvider.cs
- SqlClientWrapperSmiStreamChars.cs
- Native.cs
- QuaternionAnimation.cs
- Icon.cs
- MLangCodePageEncoding.cs
- SizeConverter.cs
- Registry.cs
- UInt16.cs
- MD5.cs
- PLINQETWProvider.cs
- ProfileProvider.cs
- FormDocumentDesigner.cs
- BamlBinaryReader.cs
- RemotingServices.cs
- MailAddressCollection.cs
- CellIdBoolean.cs
- DefaultEvaluationContext.cs
- WebPartConnection.cs
- NamedPermissionSet.cs
- SimpleType.cs
- WSSecurityOneDotZeroSendSecurityHeader.cs
- XmlWellformedWriter.cs
- DataControlFieldCell.cs