Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Internal.cs
- UserInitiatedRoutedEventPermissionAttribute.cs
- CircleHotSpot.cs
- TextBoxRenderer.cs
- DependencyPropertyKey.cs
- TypeResolvingOptions.cs
- LocatorBase.cs
- ExpressionBuilder.cs
- WizardPanel.cs
- IItemContainerGenerator.cs
- SymmetricCryptoHandle.cs
- DebuggerAttributes.cs
- FlowchartDesigner.xaml.cs
- BackoffTimeoutHelper.cs
- ResourceAssociationSetEnd.cs
- SqlInternalConnectionSmi.cs
- SettingsProviderCollection.cs
- PrivateFontCollection.cs
- PolicyValidationException.cs
- DynamicScriptObject.cs
- QilName.cs
- QueryActivatableWorkflowsCommand.cs
- LineBreak.cs
- EdmError.cs
- SelectionProcessor.cs
- ViewSimplifier.cs
- PasswordTextNavigator.cs
- ViewStateModeByIdAttribute.cs
- SqlCaseSimplifier.cs
- RequestContext.cs
- InheritanceContextChangedEventManager.cs
- RegexCompilationInfo.cs
- PropertyConverter.cs
- NavigationProperty.cs
- KeyTimeConverter.cs
- WaveHeader.cs
- PointLight.cs
- UIElementIsland.cs
- EntryPointNotFoundException.cs
- MultitargetUtil.cs
- PointValueSerializer.cs
- CollectionBuilder.cs
- EntitySqlQueryCacheEntry.cs
- CompilationUtil.cs
- ZipIOCentralDirectoryBlock.cs
- PropertyTabAttribute.cs
- WebConfigurationManager.cs
- base64Transforms.cs
- Compiler.cs
- CursorConverter.cs
- CaseInsensitiveComparer.cs
- NetMsmqSecurity.cs
- BaseInfoTable.cs
- serverconfig.cs
- LambdaCompiler.Binary.cs
- SafeThemeHandle.cs
- PrintDialogDesigner.cs
- Brush.cs
- ReadOnlyObservableCollection.cs
- ProgressChangedEventArgs.cs
- ChangeBlockUndoRecord.cs
- DetailsViewModeEventArgs.cs
- DataGridViewCellStyle.cs
- WeakReferenceEnumerator.cs
- RoleProviderPrincipal.cs
- DataView.cs
- IBuiltInEvidence.cs
- OleDbReferenceCollection.cs
- BasicViewGenerator.cs
- Win32MouseDevice.cs
- autovalidator.cs
- ParseNumbers.cs
- ToolStripItemEventArgs.cs
- SettingsAttributes.cs
- MenuItem.cs
- CancelEventArgs.cs
- DesignerVerb.cs
- SQLByte.cs
- ListDictionaryInternal.cs
- SplineQuaternionKeyFrame.cs
- FileCodeGroup.cs
- DataGridRow.cs
- CommonXSendMessage.cs
- ProfilePropertySettings.cs
- basenumberconverter.cs
- DetailsViewUpdatedEventArgs.cs
- ModelVisual3D.cs
- DocumentViewerBase.cs
- Oid.cs
- TemplatedMailWebEventProvider.cs
- HTMLTextWriter.cs
- FixedDocumentSequencePaginator.cs
- mediaeventshelper.cs
- XmlSchemaObjectCollection.cs
- Binding.cs
- GridSplitterAutomationPeer.cs
- PathNode.cs
- CompilerResults.cs
- MimeReturn.cs
- ClientTarget.cs