Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / Text / DecoderExceptionFallback.cs / 1 / DecoderExceptionFallback.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // DecoderExceptionFallback.cs // namespace System.Text { using System; using System.Runtime.Serialization; using System.Globalization; [Serializable] public sealed class DecoderExceptionFallback : DecoderFallback { // Construction public DecoderExceptionFallback() { } public override DecoderFallbackBuffer CreateFallbackBuffer() { return new DecoderExceptionFallbackBuffer(); } // Maximum number of characters that this instance of this fallback could return public override int MaxCharCount { get { return 0; } } public override bool Equals(Object value) { DecoderExceptionFallback that = value as DecoderExceptionFallback; if (that != null) { return (true); } return (false); } public override int GetHashCode() { return 879; } } public sealed class DecoderExceptionFallbackBuffer : DecoderFallbackBuffer { public override bool Fallback(byte[] bytesUnknown, int index) { Throw(bytesUnknown, index); return true; } public override char GetNextChar() { return (char)0; } public override bool MovePrevious() { // Exception fallback doesn't have anywhere to back up to. return false; } // Exceptions are always empty public override int Remaining { get { return 0; } } private void Throw(byte[] bytesUnknown, int index) { // Create a string representation of our bytes. StringBuilder strBytes = new StringBuilder(bytesUnknown.Length * 3); int i; for (i = 0; i < bytesUnknown.Length && i < 20; i++) { strBytes.Append("["); strBytes.Append(bytesUnknown[i].ToString("X2", CultureInfo.InvariantCulture)); strBytes.Append("]"); } // In case the string's really long if (i == 20) strBytes.Append(" ..."); // Known index throw new DecoderFallbackException( Environment.GetResourceString("Argument_InvalidCodePageBytesIndex", strBytes, index), bytesUnknown, index); } } // Exception for decoding unknown byte sequences. [Serializable] public sealed class DecoderFallbackException : ArgumentException { byte[] bytesUnknown = null; int index = 0; public DecoderFallbackException() : base(Environment.GetResourceString("Arg_ArgumentException")) { SetErrorCode(__HResults.COR_E_ARGUMENT); } public DecoderFallbackException(String message) : base(message) { SetErrorCode(__HResults.COR_E_ARGUMENT); } public DecoderFallbackException(String message, Exception innerException) : base(message, innerException) { SetErrorCode(__HResults.COR_E_ARGUMENT); } internal DecoderFallbackException(SerializationInfo info, StreamingContext context) : base(info, context) { } public DecoderFallbackException( String message, byte[] bytesUnknown, int index) : base(message) { this.bytesUnknown = bytesUnknown; this.index = index; } public byte[] BytesUnknown { get { return (bytesUnknown); } } public int Index { get { return this.index; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SvcMapFile.cs
- DataServiceRequestException.cs
- Base64Decoder.cs
- InheritanceAttribute.cs
- AuthenticationConfig.cs
- CheckBoxRenderer.cs
- Style.cs
- OdbcConnectionString.cs
- BuildManagerHost.cs
- HeaderElement.cs
- Exceptions.cs
- ProjectionCamera.cs
- DataGridToolTip.cs
- RegexCapture.cs
- Expression.cs
- ToolStripDropDownMenu.cs
- ScrollPattern.cs
- WebException.cs
- TransportConfigurationTypeElement.cs
- UnsafeNativeMethods.cs
- DependencyObjectType.cs
- CngKeyCreationParameters.cs
- TransformerInfoCollection.cs
- COM2IDispatchConverter.cs
- PolyLineSegmentFigureLogic.cs
- EntitySqlQueryBuilder.cs
- SettingsSavedEventArgs.cs
- WindowsFormsHelpers.cs
- XmlProcessingInstruction.cs
- AddingNewEventArgs.cs
- PointCollectionConverter.cs
- ScriptDescriptor.cs
- ProjectionCamera.cs
- FilterEventArgs.cs
- DataControlCommands.cs
- WebBaseEventKeyComparer.cs
- SqlException.cs
- DBSchemaRow.cs
- xmlsaver.cs
- ActivityAction.cs
- KeyNotFoundException.cs
- HttpDigestClientCredential.cs
- Membership.cs
- PartitionResolver.cs
- CredentialCache.cs
- RegexFCD.cs
- Action.cs
- SelectionWordBreaker.cs
- InternalResources.cs
- IDispatchConstantAttribute.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- IndentedTextWriter.cs
- XmlDictionary.cs
- GlyphTypeface.cs
- IISUnsafeMethods.cs
- mansign.cs
- InvalidPrinterException.cs
- TraceUtility.cs
- PatternMatcher.cs
- InertiaExpansionBehavior.cs
- XmlFileEditor.cs
- StatusBarItem.cs
- WebBrowserPermission.cs
- RolePrincipal.cs
- CopyAction.cs
- HttpVersion.cs
- SqlTriggerAttribute.cs
- DateTimePicker.cs
- ItemCheckedEvent.cs
- FullTextBreakpoint.cs
- KnownBoxes.cs
- TypeValidationEventArgs.cs
- XamlReaderHelper.cs
- IISUnsafeMethods.cs
- SerializerWriterEventHandlers.cs
- WebBrowserContainer.cs
- FontDialog.cs
- ClearTypeHintValidation.cs
- WebUtil.cs
- Encoder.cs
- Group.cs
- ConfigurationSettings.cs
- SmiEventSink_DeferedProcessing.cs
- InkSerializer.cs
- MSHTMLHostUtil.cs
- WSHttpSecurityElement.cs
- JoinGraph.cs
- DocobjHost.cs
- Globals.cs
- InkCanvasAutomationPeer.cs
- FormView.cs
- WindowsFont.cs
- TextDecorationCollection.cs
- EventProviderBase.cs
- DataMemberFieldConverter.cs
- WebDescriptionAttribute.cs
- TypeBuilderInstantiation.cs
- DataRecordInfo.cs
- ImportStoreException.cs
- ProfileSection.cs