Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / clr / src / BCL / System / Runtime / InteropServices / COMException.cs / 1 / COMException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: COMException ** ** ** Purpose: Exception class for all errors from COM Interop where we don't ** recognize the HResult. ** ** =============================================================================*/ namespace System.Runtime.InteropServices { using System.Runtime.InteropServices; using System; using System.Runtime.Serialization; using System.Globalization; // Exception for COM Interop errors where we don't recognize the HResult. // [System.Runtime.InteropServices.ComVisible(true)] [Serializable()] public class COMException : ExternalException { public COMException() : base(Environment.GetResourceString("Arg_COMException")) { SetErrorCode(__HResults.E_FAIL); } public COMException(String message) : base(message) { SetErrorCode(__HResults.E_FAIL); } public COMException(String message, Exception inner) : base(message, inner) { SetErrorCode(__HResults.E_FAIL); } public COMException(String message,int errorCode) : base(message) { SetErrorCode(errorCode); } protected COMException(SerializationInfo info, StreamingContext context) : base(info, context) { } public override String ToString() { String message = Message; String s; String _className = GetType().ToString(); s = _className + " (0x" + HResult.ToString("X8", CultureInfo.InvariantCulture) + ")"; if (!(message == null || message.Length <= 0)) { s = s + ": " + message; } Exception _innerException = InnerException; if (_innerException!=null) { s = s + " ---> " + _innerException.ToString(); } if (StackTrace != null) s += Environment.NewLine + StackTrace; return s; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: COMException ** ** ** Purpose: Exception class for all errors from COM Interop where we don't ** recognize the HResult. ** ** =============================================================================*/ namespace System.Runtime.InteropServices { using System.Runtime.InteropServices; using System; using System.Runtime.Serialization; using System.Globalization; // Exception for COM Interop errors where we don't recognize the HResult. // [System.Runtime.InteropServices.ComVisible(true)] [Serializable()] public class COMException : ExternalException { public COMException() : base(Environment.GetResourceString("Arg_COMException")) { SetErrorCode(__HResults.E_FAIL); } public COMException(String message) : base(message) { SetErrorCode(__HResults.E_FAIL); } public COMException(String message, Exception inner) : base(message, inner) { SetErrorCode(__HResults.E_FAIL); } public COMException(String message,int errorCode) : base(message) { SetErrorCode(errorCode); } protected COMException(SerializationInfo info, StreamingContext context) : base(info, context) { } public override String ToString() { String message = Message; String s; String _className = GetType().ToString(); s = _className + " (0x" + HResult.ToString("X8", CultureInfo.InvariantCulture) + ")"; if (!(message == null || message.Length <= 0)) { s = s + ": " + message; } Exception _innerException = InnerException; if (_innerException!=null) { s = s + " ---> " + _innerException.ToString(); } if (StackTrace != null) s += Environment.NewLine + StackTrace; return s; } } } // 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
- Int32Rect.cs
- TiffBitmapDecoder.cs
- TextParentUndoUnit.cs
- LoadGrammarCompletedEventArgs.cs
- ExpressionQuoter.cs
- DataControlButton.cs
- Interfaces.cs
- XmlAnyAttributeAttribute.cs
- SafeNativeMethods.cs
- VirtualPath.cs
- Panel.cs
- XmlExceptionHelper.cs
- PrimaryKeyTypeConverter.cs
- DataGridViewCellStyleConverter.cs
- AssemblyCache.cs
- Closure.cs
- FieldToken.cs
- EntitySqlQueryBuilder.cs
- Vertex.cs
- SqlConnectionFactory.cs
- ForceCopyBuildProvider.cs
- Ray3DHitTestResult.cs
- ParallelTimeline.cs
- SystemInformation.cs
- ProxySimple.cs
- XmlSchemaFacet.cs
- _CookieModule.cs
- PointCollectionConverter.cs
- BitSet.cs
- KeyEvent.cs
- DataControlPagerLinkButton.cs
- ReferencedAssembly.cs
- PropertyConverter.cs
- XmlEncoding.cs
- DateTimeSerializationSection.cs
- ComboBoxRenderer.cs
- EventItfInfo.cs
- QueryAsyncResult.cs
- WorkflowEnvironment.cs
- Hash.cs
- CfgParser.cs
- MessageAction.cs
- InheritanceAttribute.cs
- Rotation3DAnimationBase.cs
- ContextMenuAutomationPeer.cs
- ProcessModule.cs
- Vector.cs
- RegisteredDisposeScript.cs
- SecurityPolicySection.cs
- UrlRoutingHandler.cs
- NullableDoubleMinMaxAggregationOperator.cs
- DynamicUpdateCommand.cs
- DataGridViewCellMouseEventArgs.cs
- ProcessHostConfigUtils.cs
- CodeIdentifier.cs
- HttpContextServiceHost.cs
- HtmlEncodedRawTextWriter.cs
- ProviderBase.cs
- RegexCode.cs
- FunctionOverloadResolver.cs
- SqlXml.cs
- Win32Native.cs
- InkCanvasSelectionAdorner.cs
- DocumentViewerBaseAutomationPeer.cs
- FragmentQueryKB.cs
- X509Chain.cs
- MediaTimeline.cs
- ResXDataNode.cs
- SafeFileMapViewHandle.cs
- QueryContinueDragEvent.cs
- TypeGeneratedEventArgs.cs
- HtmlInputPassword.cs
- XPathQueryGenerator.cs
- SecurityElement.cs
- InputLangChangeEvent.cs
- EngineSite.cs
- TdsParserStateObject.cs
- TTSEvent.cs
- ChineseLunisolarCalendar.cs
- DataTablePropertyDescriptor.cs
- AsyncPostBackTrigger.cs
- PolyBezierSegment.cs
- EventlogProvider.cs
- ControlsConfig.cs
- TypeUtil.cs
- SharedPerformanceCounter.cs
- AnimationClockResource.cs
- RichTextBoxConstants.cs
- RemotingHelper.cs
- compensatingcollection.cs
- ObjectDataSourceView.cs
- ToolBarPanel.cs
- DbConnectionPoolOptions.cs
- NetworkCredential.cs
- JsonDeserializer.cs
- AsyncDataRequest.cs
- ConnectionStringsExpressionBuilder.cs
- TextProperties.cs
- ModifiableIteratorCollection.cs
- RuntimeUtils.cs