Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // 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; } } } } // 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
- LicFileLicenseProvider.cs
- AssociativeAggregationOperator.cs
- ContractMapping.cs
- FillRuleValidation.cs
- Command.cs
- CommandTreeTypeHelper.cs
- CapacityStreamGeometryContext.cs
- DbMetaDataColumnNames.cs
- BehaviorService.cs
- PersonalizationProviderCollection.cs
- ToolStripItemTextRenderEventArgs.cs
- AutomationTextAttribute.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- CompilerScopeManager.cs
- TextAdaptor.cs
- Size.cs
- TextSelectionProcessor.cs
- RightsDocument.cs
- XhtmlBasicImageAdapter.cs
- LogAppendAsyncResult.cs
- ConfigurationManager.cs
- AssemblyNameProxy.cs
- DesignerLabelAdapter.cs
- SessionStateSection.cs
- PlaceHolder.cs
- CodeMemberMethod.cs
- UseLicense.cs
- clipboard.cs
- PageCodeDomTreeGenerator.cs
- hresults.cs
- SqlCommandBuilder.cs
- LicenseProviderAttribute.cs
- FlowNode.cs
- VirtualPathUtility.cs
- XmlExtensionFunction.cs
- EnumerableRowCollection.cs
- MulticastOption.cs
- ScrollItemPatternIdentifiers.cs
- ProcessHostConfigUtils.cs
- IsolatedStorageFilePermission.cs
- EncoderExceptionFallback.cs
- X509ChainPolicy.cs
- EndPoint.cs
- XmlParser.cs
- RIPEMD160.cs
- DSACryptoServiceProvider.cs
- PolyBezierSegmentFigureLogic.cs
- ReadContentAsBinaryHelper.cs
- ActiveXContainer.cs
- SelectorAutomationPeer.cs
- WindowsListViewItem.cs
- MailWriter.cs
- PeerName.cs
- NativeMethods.cs
- CriticalExceptions.cs
- OpenCollectionAsyncResult.cs
- SmtpFailedRecipientsException.cs
- StylusPointProperty.cs
- Baml6Assembly.cs
- Crypto.cs
- SqlParameterCollection.cs
- ViewGenerator.cs
- TaskFormBase.cs
- DataConnectionHelper.cs
- StreamGeometry.cs
- Clause.cs
- SafeSystemMetrics.cs
- unsafenativemethodstextservices.cs
- JsonMessageEncoderFactory.cs
- ToolboxItemLoader.cs
- StylusLogic.cs
- CompiledAction.cs
- Assembly.cs
- DataSourceXmlTextReader.cs
- Popup.cs
- NetworkAddressChange.cs
- AuthenticationSection.cs
- IconBitmapDecoder.cs
- DataExchangeServiceBinder.cs
- NameSpaceExtractor.cs
- TextFormattingConverter.cs
- PolicyLevel.cs
- WebPartZoneBaseDesigner.cs
- DelimitedListTraceListener.cs
- ToolboxItemFilterAttribute.cs
- Geometry3D.cs
- DataSysAttribute.cs
- ListDictionaryInternal.cs
- EntityDataSourceDataSelection.cs
- ButtonPopupAdapter.cs
- InternalCache.cs
- StringUtil.cs
- Line.cs
- CompositeActivityMarkupSerializer.cs
- XmlCollation.cs
- DiagnosticEventProvider.cs
- TableLayoutRowStyleCollection.cs
- TypeConverterValueSerializer.cs
- _CommandStream.cs
- XamlFilter.cs