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
- XmlTextAttribute.cs
- HttpCachePolicyElement.cs
- PrintDialog.cs
- RemotingConfigParser.cs
- ChangePassword.cs
- Geometry3D.cs
- WebProxyScriptElement.cs
- ActivityStateRecord.cs
- ContourSegment.cs
- Timer.cs
- DataGridViewCheckBoxCell.cs
- UnmanagedMemoryStreamWrapper.cs
- HandleInitializationContext.cs
- bidPrivateBase.cs
- ConstNode.cs
- DesignerTextBoxAdapter.cs
- EditorAttribute.cs
- RbTree.cs
- SerialErrors.cs
- ThemeDirectoryCompiler.cs
- FontUnitConverter.cs
- BamlBinaryWriter.cs
- CircleEase.cs
- PageVisual.cs
- EncryptedKey.cs
- ClientUrlResolverWrapper.cs
- SatelliteContractVersionAttribute.cs
- Events.cs
- OptimizedTemplateContentHelper.cs
- PackWebRequestFactory.cs
- ArrayList.cs
- ReadOnlyTernaryTree.cs
- ExtendedProtectionPolicyTypeConverter.cs
- VirtualDirectoryMappingCollection.cs
- XPathConvert.cs
- SystemResourceKey.cs
- AnnotationHighlightLayer.cs
- ListViewCancelEventArgs.cs
- SynchronizingStream.cs
- KeyValueConfigurationCollection.cs
- ObjectDataSourceDisposingEventArgs.cs
- CommonDialog.cs
- CollectionsUtil.cs
- PolyLineSegment.cs
- ProfilePropertySettings.cs
- ProgressBar.cs
- QilInvokeEarlyBound.cs
- JumpTask.cs
- SqlDataSourceQueryConverter.cs
- StylusButtonCollection.cs
- HtmlObjectListAdapter.cs
- DesignerActionTextItem.cs
- WebMessageEncoderFactory.cs
- HtmlTextArea.cs
- PageRouteHandler.cs
- CancelRequestedRecord.cs
- SafeEventLogReadHandle.cs
- SubtreeProcessor.cs
- Splitter.cs
- CodeLabeledStatement.cs
- OletxTransactionManager.cs
- HistoryEventArgs.cs
- DecimalAnimationUsingKeyFrames.cs
- DataGridViewDataConnection.cs
- SqlConnectionString.cs
- WebPartEditorApplyVerb.cs
- SchemaNotation.cs
- BinaryMethodMessage.cs
- ItemChangedEventArgs.cs
- RegisteredScript.cs
- TemplateBamlRecordReader.cs
- AllowedAudienceUriElement.cs
- DataBindingValueUIHandler.cs
- ObjectReferenceStack.cs
- Guid.cs
- CellTreeNodeVisitors.cs
- Size.cs
- CrossSiteScriptingValidation.cs
- XmlArrayItemAttributes.cs
- NullRuntimeConfig.cs
- AddInToken.cs
- MessageBox.cs
- X509Extension.cs
- RelationshipType.cs
- XXXInfos.cs
- GeneralTransform.cs
- ApplicationActivator.cs
- UriWriter.cs
- TextDocumentView.cs
- ByteStorage.cs
- SafeProcessHandle.cs
- JsonFormatGeneratorStatics.cs
- WebPartZoneAutoFormat.cs
- DoubleLink.cs
- DataColumn.cs
- XmlResolver.cs
- FormsIdentity.cs
- EntityProxyTypeInfo.cs
- PathData.cs
- InputScopeConverter.cs