Implemented interface member:
method
GetBaseException
System.Runtime.InteropServices._Exception.GetBaseException()
1 override of GetBaseException
mscorlib (1)
system\AggregateException.cs (1)
308public override Exception GetBaseException()
18 references to GetBaseException
ComSvcConfig (7)
ComplusTypeValidator.cs (7)
46if (e.GetBaseException() is System.IO.FileNotFoundException) 103if (e.GetBaseException() is System.IO.FileNotFoundException) 104throw CreateDescriptiveException((System.IO.FileNotFoundException)e.GetBaseException()); 179if (e.GetBaseException() is System.IO.FileNotFoundException) 180throw CreateDescriptiveException((System.IO.FileNotFoundException)e.GetBaseException()); 229if (e.GetBaseException() is System.IO.FileNotFoundException) 230throw CreateDescriptiveException((System.IO.FileNotFoundException)e.GetBaseException());
PresentationFramework (1)
src\Framework\System\Windows\Navigation\NavigationService.cs (1)
3086SecurityException se = we.GetBaseException() as SecurityException;
System.Data.Linq (1)
DbConvert.cs (1)
173throw t.GetBaseException();
System.ServiceModel (8)
System\ServiceModel\ComIntegration\DispatchProxy.cs (2)
282e = e.GetBaseException(); 340e = e.GetBaseException();
System\ServiceModel\ComIntegration\ProxyManager.cs (2)
113e = e.GetBaseException(); 183e = e.GetBaseException();
System\ServiceModel\ComIntegration\TearOffProxy.cs (4)
45return new ReturnMessage(DiagnosticUtility.ExceptionUtility.ThrowHelperError(new COMException(e.GetBaseException().Message, Marshal.GetHRForException(e.GetBaseException()))), msg); 61return new ReturnMessage(DiagnosticUtility.ExceptionUtility.ThrowHelperError(new COMException(returnMsg.Exception.GetBaseException().Message, Marshal.GetHRForException(returnMsg.Exception.GetBaseException()))), msg);
System.Windows.Forms (1)
winforms\Managed\System\WinForms\Control.cs (1)
7495current.exception = t.GetBaseException();