Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- DiscoveryMessageProperty.cs
- StickyNote.cs
- PackageDigitalSignature.cs
- Int32Collection.cs
- ObfuscationAttribute.cs
- FormViewRow.cs
- TransformerConfigurationWizardBase.cs
- CodeDelegateCreateExpression.cs
- xdrvalidator.cs
- ContextProperty.cs
- Parsers.cs
- Models.cs
- SystemUdpStatistics.cs
- Size.cs
- FormViewPageEventArgs.cs
- ServiceChannelFactory.cs
- XmlnsCache.cs
- CompositeDataBoundControl.cs
- KnownTypes.cs
- KoreanLunisolarCalendar.cs
- MultipleViewProviderWrapper.cs
- SerializationSectionGroup.cs
- WebServiceFault.cs
- VectorKeyFrameCollection.cs
- DecoderFallback.cs
- PenContext.cs
- WindowsListBox.cs
- WorkflowDesigner.cs
- metadatamappinghashervisitor.cs
- CompositeKey.cs
- SynchronizingStream.cs
- httpapplicationstate.cs
- SqlClientWrapperSmiStream.cs
- XmlAutoDetectWriter.cs
- DbProviderServices.cs
- Material.cs
- XmlBoundElement.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- StringBlob.cs
- WebServicesSection.cs
- ClientFormsIdentity.cs
- SimpleHandlerFactory.cs
- IHttpResponseInternal.cs
- ToolboxItemWrapper.cs
- PropertyDescriptorCollection.cs
- Pair.cs
- SelectorAutomationPeer.cs
- DataQuery.cs
- DropShadowBitmapEffect.cs
- SelectQueryOperator.cs
- MediaContext.cs
- EndEvent.cs
- DispatcherHooks.cs
- EventMappingSettings.cs
- ProfileGroupSettingsCollection.cs
- EventRecord.cs
- ErrorRuntimeConfig.cs
- IMembershipProvider.cs
- TreePrinter.cs
- DescendantBaseQuery.cs
- TypeConverterValueSerializer.cs
- MenuItemBinding.cs
- ZipArchive.cs
- TileBrush.cs
- XmlDocumentFragment.cs
- ContextBase.cs
- DbConnectionClosed.cs
- SqlDataReader.cs
- TitleStyle.cs
- LingerOption.cs
- DiscreteKeyFrames.cs
- DeclaredTypeValidatorAttribute.cs
- ListItemCollection.cs
- GuidTagList.cs
- QilVisitor.cs
- DrawingBrush.cs
- FixedDSBuilder.cs
- CommunicationObject.cs
- CompilerCollection.cs
- UserControlCodeDomTreeGenerator.cs
- BaseAutoFormat.cs
- GenericUriParser.cs
- XmlElement.cs
- IApplicationTrustManager.cs
- DataGridViewCellStyleChangedEventArgs.cs
- GraphicsPath.cs
- SqlInfoMessageEvent.cs
- SchemaTypeEmitter.cs
- BitConverter.cs
- EventData.cs
- WpfWebRequestHelper.cs
- BidirectionalDictionary.cs
- Variable.cs
- CodeTypeDeclarationCollection.cs
- DbConnectionPoolGroupProviderInfo.cs
- CodeCatchClause.cs
- SerializableAttribute.cs
- LineServices.cs
- CapacityStreamGeometryContext.cs
- filewebrequest.cs