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
- _FixedSizeReader.cs
- Padding.cs
- IApplicationTrustManager.cs
- Funcletizer.cs
- SessionStateUtil.cs
- ConstrainedDataObject.cs
- TextStore.cs
- WebAdminConfigurationHelper.cs
- XDRSchema.cs
- HttpBrowserCapabilitiesBase.cs
- IdnElement.cs
- JulianCalendar.cs
- ConsoleKeyInfo.cs
- CodeIterationStatement.cs
- UnicodeEncoding.cs
- TypeForwardedToAttribute.cs
- AspNetSynchronizationContext.cs
- XmlMemberMapping.cs
- AdornerLayer.cs
- FilteredAttributeCollection.cs
- RootBrowserWindow.cs
- KeyInstance.cs
- ReadOnlyDictionary.cs
- DataTableCollection.cs
- PanelDesigner.cs
- XmlSchemaException.cs
- CompilerInfo.cs
- SystemKeyConverter.cs
- HtmlContainerControl.cs
- Model3DCollection.cs
- TextBoxBase.cs
- DeploymentSection.cs
- XmlName.cs
- ValidationHelper.cs
- EndOfStreamException.cs
- Properties.cs
- NumericExpr.cs
- ResetableIterator.cs
- AllMembershipCondition.cs
- RSAPKCS1KeyExchangeFormatter.cs
- BamlRecords.cs
- SQlBooleanStorage.cs
- DeploymentSectionCache.cs
- EnumerableRowCollectionExtensions.cs
- LocationFactory.cs
- DataGridHeaderBorder.cs
- WebResponse.cs
- ToolStripPanelRow.cs
- SignedPkcs7.cs
- Rights.cs
- TextSearch.cs
- CharEnumerator.cs
- DataTableExtensions.cs
- TextComposition.cs
- IdleTimeoutMonitor.cs
- ScrollContentPresenter.cs
- ViewManager.cs
- HttpCookie.cs
- JsonSerializer.cs
- Parser.cs
- EditorZone.cs
- TableRow.cs
- PropertyDescriptorCollection.cs
- MediaTimeline.cs
- BooleanFunctions.cs
- InfoCardTrace.cs
- ExpressionQuoter.cs
- SerializableReadOnlyDictionary.cs
- SiteMapNodeItemEventArgs.cs
- Token.cs
- RowUpdatedEventArgs.cs
- _NetRes.cs
- Models.cs
- ToolZoneDesigner.cs
- ResourcesGenerator.cs
- CategoryEditor.cs
- QueryCorrelationInitializer.cs
- XmlMemberMapping.cs
- HwndSubclass.cs
- MaskedTextProvider.cs
- KeyValuePairs.cs
- TypeToken.cs
- TextTreeText.cs
- ModulesEntry.cs
- ProjectionCamera.cs
- SearchForVirtualItemEventArgs.cs
- WorkerRequest.cs
- TraceListener.cs
- DesigntimeLicenseContextSerializer.cs
- PropertyChangedEventArgs.cs
- DrawingState.cs
- ObjectTag.cs
- XmlHierarchicalEnumerable.cs
- SafeProcessHandle.cs
- BinaryObjectReader.cs
- SessionEndingEventArgs.cs
- RoleManagerSection.cs
- KeySpline.cs
- FullTrustAssembliesSection.cs
- AssemblyBuilder.cs