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
- LOSFormatter.cs
- MonthChangedEventArgs.cs
- SqlDataSourceQueryEditor.cs
- SecurityException.cs
- PerfService.cs
- WhitespaceRuleReader.cs
- ZipIOBlockManager.cs
- Mappings.cs
- BitmapEffectGroup.cs
- ResolveMatchesCD1.cs
- ResetableIterator.cs
- SrgsNameValueTag.cs
- CqlLexer.cs
- XhtmlTextWriter.cs
- BlockUIContainer.cs
- DbgCompiler.cs
- __TransparentProxy.cs
- XmlSchemaFacet.cs
- WebEncodingValidator.cs
- MatrixTransform3D.cs
- ParsedAttributeCollection.cs
- UIElementParaClient.cs
- shaperfactory.cs
- TypeFieldSchema.cs
- CorePropertiesFilter.cs
- WasAdminWrapper.cs
- HeaderCollection.cs
- MultiAsyncResult.cs
- BitmapEffectDrawingContent.cs
- Closure.cs
- PreloadedPackages.cs
- Win32.cs
- UserNameSecurityToken.cs
- TreeNodeSelectionProcessor.cs
- ExpressionReplacer.cs
- NewArray.cs
- ConstNode.cs
- LinkedList.cs
- LoadWorkflowAsyncResult.cs
- CompositeActivityTypeDescriptorProvider.cs
- StylusCollection.cs
- GeometryHitTestResult.cs
- IIS7UserPrincipal.cs
- TableSectionStyle.cs
- ValueUtilsSmi.cs
- SafeSecurityHandles.cs
- FileDetails.cs
- DataGridColumn.cs
- NamespaceInfo.cs
- ContextMenuStrip.cs
- SafeLocalMemHandle.cs
- Timer.cs
- ProfilePropertySettings.cs
- UIAgentMonitorHandle.cs
- HandlerBase.cs
- LabelTarget.cs
- DataServiceQueryException.cs
- ClaimSet.cs
- Condition.cs
- DataControlField.cs
- ParameterRefs.cs
- ScrollItemPatternIdentifiers.cs
- TemplateParser.cs
- ApplicationDirectoryMembershipCondition.cs
- ObsoleteAttribute.cs
- CommandEventArgs.cs
- RowToFieldTransformer.cs
- BulletedList.cs
- FilteredSchemaElementLookUpTable.cs
- ReferenceEqualityComparer.cs
- SortAction.cs
- BindableTemplateBuilder.cs
- SystemIcons.cs
- DoubleConverter.cs
- PasswordPropertyTextAttribute.cs
- RelationshipManager.cs
- RoleGroup.cs
- TypeConverterHelper.cs
- EmptyImpersonationContext.cs
- ValueTable.cs
- WorkflowRuntimeSection.cs
- SelectionWordBreaker.cs
- MetadataCacheItem.cs
- PrimitiveSchema.cs
- FacetDescriptionElement.cs
- DependencyObjectPropertyDescriptor.cs
- WebConfigurationHost.cs
- RegularExpressionValidator.cs
- SystemUdpStatistics.cs
- PerfCounters.cs
- ScriptMethodAttribute.cs
- SmiEventSink.cs
- Win32.cs
- FileNotFoundException.cs
- NavigationEventArgs.cs
- DefaultMemberAttribute.cs
- InstanceBehavior.cs
- ClassImporter.cs
- MemoryFailPoint.cs
- XmlDataSourceNodeDescriptor.cs