Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Xml / System / Xml / Base64Encoder.cs / 1 / Base64Encoder.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System.Text; using System.Diagnostics; namespace System.Xml { internal abstract class Base64Encoder { byte[] leftOverBytes; int leftOverBytesCount; char[] charsLine; internal const int Base64LineSize = 76; internal const int LineSizeInBytes = Base64LineSize/4*3; internal Base64Encoder() { charsLine = new char[Base64LineSize]; } internal abstract void WriteChars( char[] chars, int index, int count ); internal void Encode( byte[] buffer, int index, int count ) { if ( buffer == null ) { throw new ArgumentNullException( "buffer" ); } if ( index < 0 ) { throw new ArgumentOutOfRangeException( "index" ); } if ( count < 0 ) { throw new ArgumentOutOfRangeException( "count" ); } if ( count > buffer.Length - index ) { throw new ArgumentOutOfRangeException( "count" ); } // encode left-over buffer if( leftOverBytesCount > 0 ) { int i = leftOverBytesCount; while ( i < 3 && count > 0 ) { leftOverBytes[i++] = buffer[index++]; count--; } // the total number of buffer we have is less than 3 -> return if ( count == 0 && i < 3 ) { leftOverBytesCount = i; return; } // encode the left-over buffer and write out int leftOverChars = Convert.ToBase64CharArray( leftOverBytes, 0, 3, charsLine, 0 ); WriteChars( charsLine, 0, leftOverChars ); } // store new left-over buffer leftOverBytesCount = count % 3; if ( leftOverBytesCount > 0 ) { count -= leftOverBytesCount; if ( leftOverBytes == null ) { leftOverBytes = new byte[3]; } for( int i = 0; i < leftOverBytesCount; i++ ) { leftOverBytes[i] = buffer[ index + count + i ]; } } // encode buffer in 76 character long chunks int endIndex = index + count; int chunkSize = LineSizeInBytes; while( index < endIndex ) { if ( index + chunkSize > endIndex ) { chunkSize = endIndex - index; } int charCount = Convert.ToBase64CharArray( buffer, index, chunkSize, charsLine, 0 ); WriteChars( charsLine, 0, charCount ); index += chunkSize; } } internal void Flush() { if ( leftOverBytesCount > 0 ) { int leftOverChars = Convert.ToBase64CharArray( leftOverBytes, 0, leftOverBytesCount, charsLine, 0 ); WriteChars( charsLine, 0, leftOverChars ); leftOverBytesCount = 0; } } } internal class XmlRawWriterBase64Encoder : Base64Encoder { XmlRawWriter rawWriter; internal XmlRawWriterBase64Encoder( XmlRawWriter rawWriter ) { this.rawWriter = rawWriter; } internal override void WriteChars( char[] chars, int index, int count ) { rawWriter.WriteRaw( chars, index, count ); } } internal class XmlTextWriterBase64Encoder : Base64Encoder { XmlTextEncoder xmlTextEncoder; internal XmlTextWriterBase64Encoder( XmlTextEncoder xmlTextEncoder ) { this.xmlTextEncoder = xmlTextEncoder; } internal override void WriteChars( char[] chars, int index, int count ) { xmlTextEncoder.WriteRaw( chars, index, count ); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System.Text; using System.Diagnostics; namespace System.Xml { internal abstract class Base64Encoder { byte[] leftOverBytes; int leftOverBytesCount; char[] charsLine; internal const int Base64LineSize = 76; internal const int LineSizeInBytes = Base64LineSize/4*3; internal Base64Encoder() { charsLine = new char[Base64LineSize]; } internal abstract void WriteChars( char[] chars, int index, int count ); internal void Encode( byte[] buffer, int index, int count ) { if ( buffer == null ) { throw new ArgumentNullException( "buffer" ); } if ( index < 0 ) { throw new ArgumentOutOfRangeException( "index" ); } if ( count < 0 ) { throw new ArgumentOutOfRangeException( "count" ); } if ( count > buffer.Length - index ) { throw new ArgumentOutOfRangeException( "count" ); } // encode left-over buffer if( leftOverBytesCount > 0 ) { int i = leftOverBytesCount; while ( i < 3 && count > 0 ) { leftOverBytes[i++] = buffer[index++]; count--; } // the total number of buffer we have is less than 3 -> return if ( count == 0 && i < 3 ) { leftOverBytesCount = i; return; } // encode the left-over buffer and write out int leftOverChars = Convert.ToBase64CharArray( leftOverBytes, 0, 3, charsLine, 0 ); WriteChars( charsLine, 0, leftOverChars ); } // store new left-over buffer leftOverBytesCount = count % 3; if ( leftOverBytesCount > 0 ) { count -= leftOverBytesCount; if ( leftOverBytes == null ) { leftOverBytes = new byte[3]; } for( int i = 0; i < leftOverBytesCount; i++ ) { leftOverBytes[i] = buffer[ index + count + i ]; } } // encode buffer in 76 character long chunks int endIndex = index + count; int chunkSize = LineSizeInBytes; while( index < endIndex ) { if ( index + chunkSize > endIndex ) { chunkSize = endIndex - index; } int charCount = Convert.ToBase64CharArray( buffer, index, chunkSize, charsLine, 0 ); WriteChars( charsLine, 0, charCount ); index += chunkSize; } } internal void Flush() { if ( leftOverBytesCount > 0 ) { int leftOverChars = Convert.ToBase64CharArray( leftOverBytes, 0, leftOverBytesCount, charsLine, 0 ); WriteChars( charsLine, 0, leftOverChars ); leftOverBytesCount = 0; } } } internal class XmlRawWriterBase64Encoder : Base64Encoder { XmlRawWriter rawWriter; internal XmlRawWriterBase64Encoder( XmlRawWriter rawWriter ) { this.rawWriter = rawWriter; } internal override void WriteChars( char[] chars, int index, int count ) { rawWriter.WriteRaw( chars, index, count ); } } internal class XmlTextWriterBase64Encoder : Base64Encoder { XmlTextEncoder xmlTextEncoder; internal XmlTextWriterBase64Encoder( XmlTextEncoder xmlTextEncoder ) { this.xmlTextEncoder = xmlTextEncoder; } internal override void WriteChars( char[] chars, int index, int count ) { xmlTextEncoder.WriteRaw( chars, index, count ); } } } // 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
- FileDialogCustomPlace.cs
- ValidationRule.cs
- PeerNameResolver.cs
- XmlEnumAttribute.cs
- ThreadExceptionDialog.cs
- TextReader.cs
- XPathNavigatorKeyComparer.cs
- HitTestResult.cs
- DocumentSequenceHighlightLayer.cs
- MethodBuilder.cs
- WebControl.cs
- DataBoundControl.cs
- XmlDocument.cs
- MimeObjectFactory.cs
- SqlRecordBuffer.cs
- TdsParserSafeHandles.cs
- MD5HashHelper.cs
- StringFormat.cs
- AsyncOperation.cs
- RequestQueue.cs
- FileVersionInfo.cs
- URLString.cs
- __ComObject.cs
- PropertyValue.cs
- ToolStripPanel.cs
- ExportOptions.cs
- FixedPageStructure.cs
- WebPageTraceListener.cs
- ToolStripOverflow.cs
- QuestionEventArgs.cs
- PeerTransportBindingElement.cs
- ViewBase.cs
- OdbcParameterCollection.cs
- BindingCollection.cs
- ProcessInputEventArgs.cs
- FloaterParagraph.cs
- Deserializer.cs
- StylusCaptureWithinProperty.cs
- SiteMapHierarchicalDataSourceView.cs
- fixedPageContentExtractor.cs
- AutoGeneratedFieldProperties.cs
- wgx_render.cs
- ObjectDataSourceView.cs
- TextChangedEventArgs.cs
- ActivatableWorkflowsQueryResult.cs
- DebugHandleTracker.cs
- SplitterDesigner.cs
- SessionPageStateSection.cs
- HtmlTextArea.cs
- HMACMD5.cs
- TextBlockAutomationPeer.cs
- GridViewUpdateEventArgs.cs
- MarkerProperties.cs
- PenCursorManager.cs
- SqlException.cs
- ListDictionary.cs
- XmlNamedNodeMap.cs
- ToolStrip.cs
- Menu.cs
- SignatureResourceHelper.cs
- Window.cs
- IteratorDescriptor.cs
- RayMeshGeometry3DHitTestResult.cs
- X509Chain.cs
- CommandConverter.cs
- DataSourceXmlTextReader.cs
- ADMembershipUser.cs
- DispatcherProcessingDisabled.cs
- Int32EqualityComparer.cs
- Rect.cs
- ProfilePropertySettings.cs
- TextBox.cs
- TextDecorationCollection.cs
- ListBindableAttribute.cs
- MediaSystem.cs
- DataGridLengthConverter.cs
- GridViewUpdatedEventArgs.cs
- GenericIdentity.cs
- ContentTypeSettingClientMessageFormatter.cs
- OperationInfo.cs
- ToolStripArrowRenderEventArgs.cs
- WebDescriptionAttribute.cs
- returneventsaver.cs
- SingleObjectCollection.cs
- CommentGlyph.cs
- UserControlBuildProvider.cs
- GroupItem.cs
- InfoCardRSAPKCS1KeyExchangeDeformatter.cs
- EmptyImpersonationContext.cs
- PhonemeConverter.cs
- ObjectCloneHelper.cs
- RichListBox.cs
- WebEvents.cs
- ProgressBarAutomationPeer.cs
- StylusPointProperty.cs
- FlowLayoutPanelDesigner.cs
- HierarchicalDataBoundControl.cs
- ActivityExecutionContextCollection.cs
- Int16AnimationUsingKeyFrames.cs
- _Connection.cs