TargetInvocationException.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / Reflection / TargetInvocationException.cs / 1 / TargetInvocationException.cs

                            // ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 
////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////// 
// 
// TargetInvocationException is used to report an exception that was thrown
//	by the target of an invocation. 
//
//
//
// 
namespace System.Reflection {
 
 
 	using System;
	using System.Runtime.Serialization; 
	[Serializable()]
[System.Runtime.InteropServices.ComVisible(true)]
    public sealed class TargetInvocationException : ApplicationException {
 
		// This exception is not creatable without specifying the
 		//	inner exception. 
    	private TargetInvocationException() 
	        : base(Environment.GetResourceString("Arg_TargetInvocationException")) {
    		SetErrorCode(__HResults.COR_E_TARGETINVOCATION); 
    	}

 		// This is called from within the runtime.
        private TargetInvocationException(String message) : base(message) { 
    		SetErrorCode(__HResults.COR_E_TARGETINVOCATION);
        }   	 
    	 
        public TargetInvocationException(System.Exception inner)
 			: base(Environment.GetResourceString("Arg_TargetInvocationException"), inner) { 
    		SetErrorCode(__HResults.COR_E_TARGETINVOCATION);
        }

        public TargetInvocationException(String message, Exception inner) : base(message, inner) { 
    		SetErrorCode(__HResults.COR_E_TARGETINVOCATION);
        } 
 
        internal TargetInvocationException(SerializationInfo info, StreamingContext context) : base (info, context) {
        } 
    }
}


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK