Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// 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; } } } // 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
- GridLength.cs
- QueryOpeningEnumerator.cs
- PopupRoot.cs
- TextModifier.cs
- ScriptIgnoreAttribute.cs
- OracleNumber.cs
- SubMenuStyleCollection.cs
- ImportContext.cs
- CaseInsensitiveHashCodeProvider.cs
- DisposableCollectionWrapper.cs
- ECDiffieHellmanPublicKey.cs
- EncryptedType.cs
- ImageSource.cs
- RemotingAttributes.cs
- XmlDictionaryString.cs
- PersonalizationEntry.cs
- DoWorkEventArgs.cs
- DataGridLengthConverter.cs
- DynamicDataManager.cs
- PreservationFileReader.cs
- PKCS1MaskGenerationMethod.cs
- TraceEventCache.cs
- BaseTreeIterator.cs
- DispatchChannelSink.cs
- TransportSecurityProtocolFactory.cs
- GeometryCombineModeValidation.cs
- ColorTransform.cs
- LinkDescriptor.cs
- ProcessThreadCollection.cs
- DataBinding.cs
- Scalars.cs
- AuthenticationException.cs
- EventLogTraceListener.cs
- SqlParameter.cs
- EncryptedReference.cs
- AliasGenerator.cs
- DbTransaction.cs
- Attachment.cs
- SignatureDescription.cs
- MarkupCompilePass1.cs
- ConfigurationLockCollection.cs
- Context.cs
- TriggerAction.cs
- objectresult_tresulttype.cs
- TextEncodedRawTextWriter.cs
- FamilyMapCollection.cs
- IDReferencePropertyAttribute.cs
- SearchForVirtualItemEventArgs.cs
- CodeMethodReturnStatement.cs
- DBSqlParser.cs
- ComponentEvent.cs
- MemoryPressure.cs
- StandardToolWindows.cs
- _HTTPDateParse.cs
- EncoderFallback.cs
- SystemWebSectionGroup.cs
- nulltextnavigator.cs
- RootNamespaceAttribute.cs
- safelinkcollection.cs
- ColumnMap.cs
- SettingsBase.cs
- TheQuery.cs
- __Error.cs
- XmlSignificantWhitespace.cs
- MaskedTextBox.cs
- BooleanKeyFrameCollection.cs
- BinaryUtilClasses.cs
- TaskExceptionHolder.cs
- DiagnosticsConfigurationHandler.cs
- UpdateTranslator.cs
- AutoScrollHelper.cs
- Line.cs
- ToolStripItemRenderEventArgs.cs
- Menu.cs
- IResourceProvider.cs
- AssociationEndMember.cs
- MatrixStack.cs
- InternalEnumValidatorAttribute.cs
- CollectionEditor.cs
- DataGridPreparingCellForEditEventArgs.cs
- SetStateDesigner.cs
- JoinElimination.cs
- ListViewItemEventArgs.cs
- SynchronizationContextHelper.cs
- ItemCollectionEditor.cs
- DependencyProperty.cs
- AttributeTable.cs
- ResourceContainer.cs
- ShapeTypeface.cs
- ResXDataNode.cs
- SmiSettersStream.cs
- TypeUtils.cs
- GreenMethods.cs
- LinkDescriptor.cs
- TextOutput.cs
- BindingMAnagerBase.cs
- DataGridViewRowsAddedEventArgs.cs
- ResourceDisplayNameAttribute.cs
- TileBrush.cs
- EventLog.cs