Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / BinHexEncoder.cs / 1 / BinHexEncoder.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml { internal abstract class BinHexEncoder { private const string s_hexDigits = "0123456789ABCDEF"; private const int CharsChunkSize = 128; internal static void Encode( byte[] buffer, int index, int count, XmlWriter writer ) { 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" ); } char[] chars = new char[ ( count * 2 ) < CharsChunkSize ? ( count * 2 ) : CharsChunkSize ]; int endIndex = index + count; while ( index < endIndex ) { int cnt = ( count < CharsChunkSize/2 ) ? count : CharsChunkSize/2; int charCount = Encode( buffer, index, cnt, chars ); writer.WriteRaw( chars, 0, charCount ); index += cnt; count -= cnt; } } internal static string Encode(byte[] inArray, int offsetIn, int count) { if (null == inArray) { throw new ArgumentNullException("inArray"); } if (0 > offsetIn) { throw new ArgumentOutOfRangeException("offsetIn"); } if (0 > count) { throw new ArgumentOutOfRangeException("count"); } if (count > inArray.Length - offsetIn) { throw new ArgumentOutOfRangeException("count"); } char[] outArray = new char[2 * count]; int lenOut = Encode(inArray, offsetIn, count, outArray); return new String(outArray, 0, lenOut); } private static int Encode(byte[] inArray, int offsetIn, int count, char[] outArray) { int curOffsetOut =0, offsetOut = 0; byte b; int lengthOut = outArray.Length; for (int j=0; j> 4]; if (curOffsetOut == lengthOut) { break; } outArray[curOffsetOut ++] = s_hexDigits[b & 0xF]; if (curOffsetOut == lengthOut) { break; } } return curOffsetOut - offsetOut; } // function } // class } // namespace // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AdornerPresentationContext.cs
- DbProviderManifest.cs
- InstancePersistence.cs
- LinqToSqlWrapper.cs
- ApplicationFileCodeDomTreeGenerator.cs
- PrintDocument.cs
- PolicyValidationException.cs
- ProxyAttribute.cs
- SystemKeyConverter.cs
- RuntimeArgumentHandle.cs
- OlePropertyStructs.cs
- EmptyEnumerator.cs
- ReadOnlyAttribute.cs
- PropertyCollection.cs
- SqlExpressionNullability.cs
- ClientProxyGenerator.cs
- DataObjectMethodAttribute.cs
- Quaternion.cs
- SortAction.cs
- SparseMemoryStream.cs
- ValueProviderWrapper.cs
- CodePageUtils.cs
- SplitterCancelEvent.cs
- DataBindingCollection.cs
- MailBnfHelper.cs
- CounterSampleCalculator.cs
- WsdlInspector.cs
- EmptyReadOnlyDictionaryInternal.cs
- InputReferenceExpression.cs
- ListViewGroupConverter.cs
- NotifyInputEventArgs.cs
- FragmentNavigationEventArgs.cs
- FileDialog.cs
- DbgCompiler.cs
- DefaultPrintController.cs
- GlyphRunDrawing.cs
- TypeValidationEventArgs.cs
- XmlComment.cs
- XmlSchemaAttributeGroupRef.cs
- SortExpressionBuilder.cs
- ToolStripHighContrastRenderer.cs
- AlignmentYValidation.cs
- SecurityChannel.cs
- ImageInfo.cs
- recordstatefactory.cs
- DesignDataSource.cs
- EventSetter.cs
- OdbcDataAdapter.cs
- TimerElapsedEvenArgs.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- TimeBoundedCache.cs
- IndexedEnumerable.cs
- StrokeSerializer.cs
- Visitors.cs
- IconBitmapDecoder.cs
- xsdvalidator.cs
- ViewgenContext.cs
- SmtpException.cs
- ClientSideQueueItem.cs
- ChildrenQuery.cs
- FileLoadException.cs
- CommandField.cs
- Boolean.cs
- TypeTypeConverter.cs
- ComponentDispatcher.cs
- ControlBuilder.cs
- FlowPosition.cs
- GridViewDeleteEventArgs.cs
- TypeSystemProvider.cs
- EventHandlers.cs
- SafeRightsManagementQueryHandle.cs
- Literal.cs
- ValueConversionAttribute.cs
- PlanCompiler.cs
- QueryAccessibilityHelpEvent.cs
- DataGridViewCellMouseEventArgs.cs
- HtmlToClrEventProxy.cs
- DoubleAnimationClockResource.cs
- SystemFonts.cs
- SelectionProcessor.cs
- Gdiplus.cs
- ToolStripRenderer.cs
- AutoGeneratedFieldProperties.cs
- OracleConnectionFactory.cs
- X509UI.cs
- ZoomComboBox.cs
- SecurityContextTokenValidationException.cs
- DataGridViewSelectedCellsAccessibleObject.cs
- BaseValidatorDesigner.cs
- DiscoveryUtility.cs
- CustomErrorsSectionWrapper.cs
- OutKeywords.cs
- Console.cs
- WarningException.cs
- PersonalizationProviderHelper.cs
- ListViewInsertEventArgs.cs
- DbCommandTree.cs
- Clause.cs
- ExceptionValidationRule.cs
- LinkUtilities.cs