Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / BinHexEncoder.cs / 1305376 / BinHexEncoder.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml { internal static 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. // //[....] //----------------------------------------------------------------------------- namespace System.Xml { internal static 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataAdapter.cs
- SecurityDocument.cs
- TransformGroup.cs
- WebPartDisplayMode.cs
- LambdaCompiler.Lambda.cs
- oledbconnectionstring.cs
- InternalConfigSettingsFactory.cs
- XslException.cs
- XsdBuilder.cs
- InvalidProgramException.cs
- EnumerableCollectionView.cs
- XsdCachingReader.cs
- ToolStripRendererSwitcher.cs
- PolyBezierSegment.cs
- DrawingGroupDrawingContext.cs
- JsonEnumDataContract.cs
- KnownIds.cs
- DriveInfo.cs
- RadioButton.cs
- ActivationServices.cs
- WebPartDisplayModeCancelEventArgs.cs
- QilValidationVisitor.cs
- HttpPostedFileWrapper.cs
- AndCondition.cs
- Light.cs
- Binding.cs
- Button.cs
- GetPageCompletedEventArgs.cs
- InputLanguageCollection.cs
- Script.cs
- ConfigurationValidatorAttribute.cs
- _SafeNetHandles.cs
- HttpBufferlessInputStream.cs
- ByteViewer.cs
- SoapSchemaImporter.cs
- DoubleAnimationUsingPath.cs
- EditCommandColumn.cs
- AbandonedMutexException.cs
- CheckBoxStandardAdapter.cs
- IsolatedStorageFileStream.cs
- DataIdProcessor.cs
- RoleGroupCollection.cs
- Win32.cs
- StackBuilderSink.cs
- SpellerError.cs
- Label.cs
- DataMisalignedException.cs
- GetPageNumberCompletedEventArgs.cs
- Comparer.cs
- GridErrorDlg.cs
- XmlLoader.cs
- DesignerEditorPartChrome.cs
- InputBinder.cs
- EnumConverter.cs
- NamespaceDisplay.xaml.cs
- PolyQuadraticBezierSegment.cs
- TextTreeRootNode.cs
- Util.cs
- WindowsToolbarItemAsMenuItem.cs
- odbcmetadatacollectionnames.cs
- NumberAction.cs
- SectionVisual.cs
- HiddenField.cs
- Win32Native.cs
- Parser.cs
- HandleValueEditor.cs
- XmlCompatibilityReader.cs
- RoutedEventConverter.cs
- UshortList2.cs
- QuestionEventArgs.cs
- ParseNumbers.cs
- BackStopAuthenticationModule.cs
- EntityContainerRelationshipSetEnd.cs
- DataBindingList.cs
- ReadWriteObjectLock.cs
- SynchronizationFilter.cs
- TextSelectionProcessor.cs
- SingleConverter.cs
- EnumerableCollectionView.cs
- AggregateNode.cs
- CanonicalXml.cs
- shaperfactoryquerycachekey.cs
- LongMinMaxAggregationOperator.cs
- TextSpanModifier.cs
- CellPartitioner.cs
- EditorPartCollection.cs
- CodeSubDirectory.cs
- GPPOINTF.cs
- Stacktrace.cs
- DrawingContextDrawingContextWalker.cs
- MenuItem.cs
- PngBitmapEncoder.cs
- DataGridViewComboBoxEditingControl.cs
- FixedDocument.cs
- ConfigurationValues.cs
- RepeatInfo.cs
- FrameworkContentElementAutomationPeer.cs
- DbException.cs
- PrintPreviewControl.cs
- ToolTip.cs