Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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. // //[....] //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- InlineCollection.cs
- OrderByBuilder.cs
- DbRetry.cs
- LinqDataSourceDeleteEventArgs.cs
- EngineSite.cs
- MappingModelBuildProvider.cs
- OutputCacheSettings.cs
- XmlNullResolver.cs
- SoundPlayer.cs
- HwndSourceKeyboardInputSite.cs
- DbTypeMap.cs
- ObjectDataSource.cs
- SafeProcessHandle.cs
- HierarchicalDataSourceConverter.cs
- GeneralTransform.cs
- SqlGenericUtil.cs
- PackagePartCollection.cs
- ActivationServices.cs
- ObjectQueryExecutionPlan.cs
- QueryOperator.cs
- Calendar.cs
- HttpCacheParams.cs
- HttpListenerElement.cs
- RIPEMD160Managed.cs
- AutomationPropertyInfo.cs
- UnsafeNativeMethods.cs
- TableSectionStyle.cs
- StrongNameKeyPair.cs
- XmlAttribute.cs
- TdsParserSafeHandles.cs
- ContextMarshalException.cs
- UpdatePanel.cs
- _NegotiateClient.cs
- ContextBase.cs
- EpmTargetPathSegment.cs
- MSHTMLHost.cs
- SapiRecognizer.cs
- PropertyGroupDescription.cs
- CultureInfo.cs
- RemotingAttributes.cs
- JapaneseCalendar.cs
- TiffBitmapDecoder.cs
- recordstatescratchpad.cs
- HttpModuleAction.cs
- MessageSmuggler.cs
- WindowsScrollBar.cs
- SessionStateSection.cs
- TreeNodeStyle.cs
- Policy.cs
- WebBrowserNavigatingEventHandler.cs
- ErrorFormatterPage.cs
- TextBox.cs
- ListMarkerLine.cs
- WebPartActionVerb.cs
- UriTemplateHelpers.cs
- XmlDictionary.cs
- LogAppendAsyncResult.cs
- CookielessHelper.cs
- GridViewPageEventArgs.cs
- CompressedStack.cs
- SqlBooleanMismatchVisitor.cs
- RequestQueryProcessor.cs
- PrintPageEvent.cs
- XmlTextAttribute.cs
- SqlTriggerContext.cs
- Invariant.cs
- BitmapEffectInputData.cs
- GAC.cs
- IdentifierCollection.cs
- AsyncResult.cs
- SimpleType.cs
- CompositeCollectionView.cs
- CollectionViewSource.cs
- RegistrySecurity.cs
- NewArray.cs
- XamlDebuggerXmlReader.cs
- SchemaElementLookUpTable.cs
- Point3DCollectionValueSerializer.cs
- SecurityPermission.cs
- EntityParameter.cs
- EncoderReplacementFallback.cs
- VirtualPath.cs
- TransformPattern.cs
- TextTreeTextNode.cs
- Semaphore.cs
- DataGridColumnStyleMappingNameEditor.cs
- EllipticalNodeOperations.cs
- StructuredType.cs
- GatewayDefinition.cs
- MethodBuilderInstantiation.cs
- Buffer.cs
- safex509handles.cs
- RemoveStoryboard.cs
- HtmlContainerControl.cs
- FunctionImportElement.cs
- MultiTouchSystemGestureLogic.cs
- DataSourceDescriptorCollection.cs
- XmlSortKeyAccumulator.cs
- XPathNodeList.cs
- TextRange.cs