Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / Mail / SevenBitStream.cs / 1305376 / SevenBitStream.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Mime { using System; using System.IO; using System.Text; ////// 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, IEncodableStream { ////// 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)); } } public int DecodeBytes(byte[] buffer, int offset, int count) { throw new NotImplementedException(); } //nothing to "encode" here so all we're actually doing is folding public int EncodeBytes(byte[] buffer, int offset, int count) { throw new NotImplementedException(); } public Stream GetStream() { return this; } public string GetEncodedString() { throw new NotImplementedException(); } } } // 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; using System.Text; ////// 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, IEncodableStream { ////// 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)); } } public int DecodeBytes(byte[] buffer, int offset, int count) { throw new NotImplementedException(); } //nothing to "encode" here so all we're actually doing is folding public int EncodeBytes(byte[] buffer, int offset, int count) { throw new NotImplementedException(); } public Stream GetStream() { return this; } public string GetEncodedString() { throw new NotImplementedException(); } } } // 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
- CmsUtils.cs
- TextElement.cs
- DataRowComparer.cs
- ConfigurationManagerHelper.cs
- Single.cs
- BaseValidator.cs
- ContainerControl.cs
- DesignerTextViewAdapter.cs
- SqlLiftWhereClauses.cs
- IntAverageAggregationOperator.cs
- X509CertificateCollection.cs
- ErrorInfoXmlDocument.cs
- ChtmlMobileTextWriter.cs
- UserPreferenceChangedEventArgs.cs
- XmlCDATASection.cs
- SupportingTokenProviderSpecification.cs
- TextEditorSpelling.cs
- CryptoKeySecurity.cs
- WpfKnownMember.cs
- OpenTypeCommon.cs
- GridViewCellAutomationPeer.cs
- mda.cs
- EncoderFallback.cs
- SmiMetaData.cs
- PropertyTabChangedEvent.cs
- SubtreeProcessor.cs
- SoundPlayerAction.cs
- Hashtable.cs
- ValidatorUtils.cs
- AutomationPatternInfo.cs
- TemplateBindingExtensionConverter.cs
- Validator.cs
- WebPartActionVerb.cs
- CodeTypeMember.cs
- ProfileService.cs
- Utility.cs
- FontInfo.cs
- WebPart.cs
- UnmanagedMarshal.cs
- Predicate.cs
- BindValidationContext.cs
- Monitor.cs
- _NegoStream.cs
- ErrorStyle.cs
- SystemDiagnosticsSection.cs
- Identifier.cs
- HttpHeaderCollection.cs
- UnaryOperationBinder.cs
- AssemblyCacheEntry.cs
- CollectionViewProxy.cs
- RegexCapture.cs
- ProgressiveCrcCalculatingStream.cs
- ToolboxItemFilterAttribute.cs
- RuleSetReference.cs
- BaseInfoTable.cs
- WebDescriptionAttribute.cs
- SettingsBindableAttribute.cs
- ItemCheckEvent.cs
- DispatcherObject.cs
- WeakEventManager.cs
- WebPartUtil.cs
- BinaryReader.cs
- ButtonColumn.cs
- XDRSchema.cs
- SqlSelectStatement.cs
- SslStreamSecurityElement.cs
- PassportAuthentication.cs
- ValueUtilsSmi.cs
- XamlFigureLengthSerializer.cs
- DataGridViewCellStyleContentChangedEventArgs.cs
- ConfigurationProviderException.cs
- RouteParametersHelper.cs
- X509SecurityTokenProvider.cs
- XmlDomTextWriter.cs
- RegexParser.cs
- ToolStripGrip.cs
- SmiConnection.cs
- TextEmbeddedObject.cs
- FileLogRecordStream.cs
- SizeChangedEventArgs.cs
- OSFeature.cs
- KeyValuePair.cs
- CustomCredentialPolicy.cs
- SamlSecurityTokenAuthenticator.cs
- HttpResponse.cs
- SequentialOutput.cs
- ListViewCommandEventArgs.cs
- ExpressionBuilderContext.cs
- XmlMapping.cs
- LinqDataSourceValidationException.cs
- DataGridViewCellCancelEventArgs.cs
- TextEffectResolver.cs
- Constraint.cs
- ImageDrawing.cs
- EventBuilder.cs
- ValidatorCollection.cs
- TranslateTransform3D.cs
- ServerValidateEventArgs.cs
- ImageField.cs
- EventArgs.cs