Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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
- TextShapeableCharacters.cs
- ObjectSecurity.cs
- Registry.cs
- TimeoutTimer.cs
- GroupBox.cs
- Rect3D.cs
- NoPersistHandle.cs
- MessageBox.cs
- CompositeTypefaceMetrics.cs
- DesignerSerializationOptionsAttribute.cs
- Vector3DAnimationUsingKeyFrames.cs
- FileSystemWatcher.cs
- Int32Converter.cs
- _ConnectOverlappedAsyncResult.cs
- PlatformNotSupportedException.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- SimpleModelProvider.cs
- SafeTokenHandle.cs
- SolidColorBrush.cs
- DataServiceStreamResponse.cs
- SyndicationItem.cs
- CultureNotFoundException.cs
- BindingEntityInfo.cs
- DrawTreeNodeEventArgs.cs
- FixedPageProcessor.cs
- OperandQuery.cs
- ApplicationServicesHostFactory.cs
- IPAddress.cs
- EpmCustomContentDeSerializer.cs
- DataServiceHostFactory.cs
- XmlSchemaChoice.cs
- SqlTransaction.cs
- InfiniteIntConverter.cs
- AuthenticationServiceManager.cs
- Package.cs
- Shared.cs
- WsdlInspector.cs
- TextViewSelectionProcessor.cs
- SettingsPropertyIsReadOnlyException.cs
- ProtocolsSection.cs
- AccessDataSourceView.cs
- ValueQuery.cs
- DesignTimeParseData.cs
- RemoteArgument.cs
- HwndProxyElementProvider.cs
- DynamicHyperLink.cs
- RequestDescription.cs
- GorillaCodec.cs
- MouseButtonEventArgs.cs
- JournalNavigationScope.cs
- SafeTimerHandle.cs
- Tokenizer.cs
- SolidBrush.cs
- StringFormat.cs
- ClientFormsAuthenticationCredentials.cs
- SmtpClient.cs
- SystemIPv4InterfaceProperties.cs
- XmlSchemaValidationException.cs
- DrawingGroupDrawingContext.cs
- XpsResourceDictionary.cs
- InputReferenceExpression.cs
- LoginAutoFormat.cs
- webbrowsersite.cs
- FramingEncoders.cs
- Animatable.cs
- SortedDictionary.cs
- _AuthenticationState.cs
- FixedPageStructure.cs
- XPathDocument.cs
- AnnotationObservableCollection.cs
- XamlReaderConstants.cs
- SqlProcedureAttribute.cs
- DesignerDataConnection.cs
- XmlSchemaIdentityConstraint.cs
- IisTraceListener.cs
- SafeCryptoHandles.cs
- InfoCardKeyedHashAlgorithm.cs
- ServiceModelReg.cs
- XPathExpr.cs
- DataTableMappingCollection.cs
- StylusSystemGestureEventArgs.cs
- FrameworkElementAutomationPeer.cs
- JavaScriptSerializer.cs
- NavigationPropertyEmitter.cs
- CodeAccessSecurityEngine.cs
- UnsafeNativeMethods.cs
- EntityDataSourceWrapperCollection.cs
- ContextBase.cs
- WebScriptMetadataFormatter.cs
- TdsValueSetter.cs
- LinkedDataMemberFieldEditor.cs
- HelpKeywordAttribute.cs
- SetUserLanguageRequest.cs
- ObjectStateEntry.cs
- DispatcherExceptionEventArgs.cs
- EnumValidator.cs
- DSACryptoServiceProvider.cs
- DetailsViewCommandEventArgs.cs
- ToolboxService.cs
- PageThemeBuildProvider.cs