Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / Mail / BufferBuilder.cs / 1305376 / 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) { if (!String.IsNullOrEmpty(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, c)); 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; } } } // 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
- ValidationHelper.cs
- WebPartDeleteVerb.cs
- ConsoleTraceListener.cs
- StringUtil.cs
- DownloadProgressEventArgs.cs
- SocketInformation.cs
- BitmapPalette.cs
- WindowsScrollBarBits.cs
- PointAnimationClockResource.cs
- Facet.cs
- GregorianCalendarHelper.cs
- CodeDirectoryCompiler.cs
- DesignTimeParseData.cs
- InvalidComObjectException.cs
- MobileControlDesigner.cs
- RequestedSignatureDialog.cs
- Rules.cs
- SoapHeaderException.cs
- ListViewDataItem.cs
- RectangleGeometry.cs
- Queue.cs
- _OverlappedAsyncResult.cs
- FileSystemInfo.cs
- CleanUpVirtualizedItemEventArgs.cs
- ComplexTypeEmitter.cs
- MatrixAnimationUsingKeyFrames.cs
- SrgsElement.cs
- DesignColumnCollection.cs
- TextServicesContext.cs
- TypeUtils.cs
- RC2CryptoServiceProvider.cs
- CacheForPrimitiveTypes.cs
- HtmlFormWrapper.cs
- EntityDataSourceViewSchema.cs
- CodeMethodReturnStatement.cs
- Vector3DCollectionConverter.cs
- EventSourceCreationData.cs
- ProjectedSlot.cs
- AuthenticationService.cs
- CodeDefaultValueExpression.cs
- COM2IDispatchConverter.cs
- ModelUtilities.cs
- MemberMemberBinding.cs
- HtmlMeta.cs
- XmlMemberMapping.cs
- DoubleAnimationClockResource.cs
- ComplusEndpointConfigContainer.cs
- ResolvePPIDRequest.cs
- ServerValidateEventArgs.cs
- DefaultValueAttribute.cs
- SubMenuStyleCollection.cs
- DataTableNewRowEvent.cs
- MDIClient.cs
- X509PeerCertificateAuthentication.cs
- HtmlTableRow.cs
- AdPostCacheSubstitution.cs
- ZipIORawDataFileBlock.cs
- RemoteHelper.cs
- TraceFilter.cs
- InfoCardTrace.cs
- TimeoutHelper.cs
- IdentityNotMappedException.cs
- Int64KeyFrameCollection.cs
- DBSchemaTable.cs
- CodeMethodReturnStatement.cs
- _ListenerAsyncResult.cs
- DesignTimeDataBinding.cs
- UrlPath.cs
- ComplexLine.cs
- DoubleUtil.cs
- CharacterBufferReference.cs
- LinkLabelLinkClickedEvent.cs
- XmlSchemaValidator.cs
- ColorMatrix.cs
- PathFigureCollection.cs
- AuthenticationException.cs
- DoubleLink.cs
- ExpandSegmentCollection.cs
- rsa.cs
- precedingquery.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- FormViewRow.cs
- ServicePoint.cs
- EventNotify.cs
- Activity.cs
- ArgIterator.cs
- LabelTarget.cs
- NetworkInformationPermission.cs
- MimePart.cs
- ProfilePropertySettings.cs
- BitmapEffectInput.cs
- ConditionalAttribute.cs
- RetrieveVirtualItemEventArgs.cs
- NumericExpr.cs
- BitmapSourceSafeMILHandle.cs
- MethodImplAttribute.cs
- ConsoleCancelEventArgs.cs
- AnnotationHelper.cs
- XsdDuration.cs
- SqlAggregateChecker.cs