Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Net / System / Net / Mail / BufferBuilder.cs / 1 / BufferBuilder.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net { using System; using System.IO; using System.Globalization; internal class BufferBuilder { byte[] buffer; int offset; internal BufferBuilder() : this(256) { } internal BufferBuilder(int initialSize) { this.buffer = new byte[initialSize]; } void EnsureBuffer(int count) { if (count > this.buffer.Length - this.offset) { byte[] newBuffer = new byte[((buffer.Length * 2)>(buffer.Length + count))?(buffer.Length*2):(buffer.Length + count)]; Buffer.BlockCopy(this.buffer, 0, newBuffer, 0, this.offset); this.buffer = newBuffer; } } internal void Append(byte value) { EnsureBuffer(1); this.buffer[this.offset++] = value; } internal void Append(byte[] value) { Append(value, 0, value.Length); } internal void Append(byte[] value, int offset, int count) { EnsureBuffer(count); Buffer.BlockCopy(value, offset, this.buffer, this.offset, count); this.offset += count; } internal void Append(string value) { Append(value, 0, value.Length); } internal void Append(string value, int offset, int count) { EnsureBuffer(count); for (int i = 0; i < count; i++) { char c = value[offset+i]; if ((ushort)c > 0xFF) throw new FormatException(SR.GetString(SR.MailHeaderFieldInvalidCharacter)); this.buffer[this.offset + i] = (byte)c; } this.offset += count; } internal int Length { get { return this.offset; } } internal byte[] GetBuffer() { return this.buffer; } internal void Reset() { this.offset = 0; } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- IISUnsafeMethods.cs
- ColorKeyFrameCollection.cs
- XomlSerializationHelpers.cs
- ValidationSummaryDesigner.cs
- SafeRightsManagementQueryHandle.cs
- DbCommandTree.cs
- Normalization.cs
- RegexGroupCollection.cs
- DataPagerCommandEventArgs.cs
- CalendarAutoFormat.cs
- Select.cs
- DataChangedEventManager.cs
- DocumentPaginator.cs
- Point3DAnimation.cs
- SafeNativeMethods.cs
- SourceFilter.cs
- ProtocolsConfiguration.cs
- Psha1DerivedKeyGenerator.cs
- SqlConnection.cs
- AnimatedTypeHelpers.cs
- SoapHeaderException.cs
- ProviderManager.cs
- SessionPageStatePersister.cs
- TreeIterators.cs
- DataTableReaderListener.cs
- ArraySegment.cs
- Interfaces.cs
- ResourceManager.cs
- PanelDesigner.cs
- CdpEqualityComparer.cs
- SourceChangedEventArgs.cs
- DateBoldEvent.cs
- clipboard.cs
- TableLayoutPanelCellPosition.cs
- HttpProfileBase.cs
- ApplicationId.cs
- IODescriptionAttribute.cs
- AttributeUsageAttribute.cs
- CodeTypeParameter.cs
- ConfigurationManagerHelper.cs
- QilSortKey.cs
- TypeExtensionConverter.cs
- TextServicesCompartment.cs
- HashHelper.cs
- AddressingProperty.cs
- AutomationAttributeInfo.cs
- UrlPropertyAttribute.cs
- ErrorStyle.cs
- StringReader.cs
- ConfigXmlComment.cs
- TableLayoutPanelDesigner.cs
- ClientTarget.cs
- UrlAuthFailedErrorFormatter.cs
- DesignBinding.cs
- TypeReference.cs
- Executor.cs
- TypeResolvingOptionsAttribute.cs
- TextDocumentView.cs
- SessionEndedEventArgs.cs
- MemberPathMap.cs
- LogReservationCollection.cs
- ControlIdConverter.cs
- Int16Animation.cs
- SingletonConnectionReader.cs
- SafePEFileHandle.cs
- Bidi.cs
- BinaryQueryOperator.cs
- TextContainerChangedEventArgs.cs
- CompositeCollectionView.cs
- GeneralTransform3DTo2D.cs
- KeyTimeConverter.cs
- Animatable.cs
- ScalarType.cs
- EntityDataSourceConfigureObjectContext.cs
- And.cs
- WebPartEventArgs.cs
- AsymmetricKeyExchangeFormatter.cs
- ClientSponsor.cs
- ServiceNameCollection.cs
- IDReferencePropertyAttribute.cs
- x509utils.cs
- TextAnchor.cs
- StorageMappingItemCollection.cs
- CodeDOMProvider.cs
- ConnectionConsumerAttribute.cs
- FilePresentation.cs
- ServiceOperationWrapper.cs
- Compensation.cs
- Clause.cs
- ConfigurationStrings.cs
- ClearTypeHintValidation.cs
- Misc.cs
- ProfilePropertyNameValidator.cs
- BooleanExpr.cs
- TimeSpanValidatorAttribute.cs
- LineProperties.cs
- GenerateScriptTypeAttribute.cs
- GridViewRowCollection.cs
- QueryExpr.cs
- SystemColors.cs