Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- Evaluator.cs
- SettingsProperty.cs
- ScopelessEnumAttribute.cs
- SqlBulkCopyColumnMappingCollection.cs
- EntityDesignerBuildProvider.cs
- CodeBlockBuilder.cs
- DataGridRelationshipRow.cs
- SqlFormatter.cs
- HorizontalAlignConverter.cs
- ValidationEventArgs.cs
- localization.cs
- DrawItemEvent.cs
- ToolStripDropDownClosingEventArgs.cs
- UDPClient.cs
- VisualStateChangedEventArgs.cs
- PolyLineSegmentFigureLogic.cs
- TerminatorSinks.cs
- FileSecurity.cs
- Viewport2DVisual3D.cs
- SortQuery.cs
- EmptyQuery.cs
- cookiecontainer.cs
- WsiProfilesElementCollection.cs
- FileIOPermission.cs
- TableHeaderCell.cs
- RegexFCD.cs
- Win32SafeHandles.cs
- DataSourceCacheDurationConverter.cs
- Ref.cs
- ButtonStandardAdapter.cs
- RawUIStateInputReport.cs
- BmpBitmapDecoder.cs
- XslCompiledTransform.cs
- WindowsUpDown.cs
- EventProviderWriter.cs
- JournalNavigationScope.cs
- ConnectionStringsSection.cs
- ComponentDesigner.cs
- XmlNullResolver.cs
- AudioFormatConverter.cs
- ServiceDesigner.cs
- XmlQualifiedName.cs
- ForceCopyBuildProvider.cs
- TrackingRecordPreFilter.cs
- Process.cs
- ScriptingJsonSerializationSection.cs
- EllipticalNodeOperations.cs
- LoadGrammarCompletedEventArgs.cs
- IncrementalReadDecoders.cs
- MetafileHeader.cs
- CustomPopupPlacement.cs
- ObjectParameter.cs
- XsdBuilder.cs
- Utils.cs
- OrCondition.cs
- BitVec.cs
- BeginStoryboard.cs
- ClipboardProcessor.cs
- VersionedStreamOwner.cs
- BufferCache.cs
- EventRoute.cs
- DriveInfo.cs
- EditorPartDesigner.cs
- WasAdminWrapper.cs
- BevelBitmapEffect.cs
- Error.cs
- WebSysDisplayNameAttribute.cs
- WaitForChangedResult.cs
- VectorAnimation.cs
- CatalogUtil.cs
- LogReservationCollection.cs
- ToolStripPanelSelectionBehavior.cs
- PrintingPermissionAttribute.cs
- AssemblyResourceLoader.cs
- CultureInfo.cs
- Vector3dCollection.cs
- NTAccount.cs
- Transform.cs
- PrintDialog.cs
- ClientSettingsSection.cs
- ComponentCollection.cs
- DataGridViewLayoutData.cs
- ServiceProviders.cs
- CatalogZoneBase.cs
- SmiXetterAccessMap.cs
- ScopelessEnumAttribute.cs
- SelectionItemPatternIdentifiers.cs
- CaseInsensitiveComparer.cs
- InputScopeAttribute.cs
- PriorityBinding.cs
- DigitalSignatureProvider.cs
- CompModSwitches.cs
- XmlSchemaSimpleTypeRestriction.cs
- OutOfProcStateClientManager.cs
- QueryContinueDragEvent.cs
- SizeAnimation.cs
- PenThreadWorker.cs
- KeyPullup.cs
- CursorConverter.cs
- DesignerVerbCollection.cs