Example #1
0
 int IDebugExceptionDetails.GetInnerExceptionDetails(out IDebugExceptionDetails ppDetails)
 {
     if (_exception.InnerException != null)
     {
         ppDetails = new AD7DebugExceptionDetails(_exception.InnerException);
         return(VSConstants.S_OK);
     }
     else
     {
         ppDetails = null;
         return(VSConstants.S_FALSE);
     }
 }
Example #2
0
 int IDebugExceptionEvent150.GetExceptionDetails(out IDebugExceptionDetails ppDetails)
 {
     ppDetails = new AD7DebugExceptionDetails(_exception);
     return(VSConstants.S_OK);
 }
Example #3
0
 int IDebugExceptionEvent150.GetExceptionDetails(out IDebugExceptionDetails ppDetails) {
     ppDetails = new AD7DebugExceptionDetails(_exception);
     return VSConstants.S_OK;
 }
Example #4
0
 int IDebugExceptionDetails.GetInnerExceptionDetails(out IDebugExceptionDetails ppDetails) {
     if (_exception.InnerException != null) {
         ppDetails = new AD7DebugExceptionDetails(_exception.InnerException);
         return VSConstants.S_OK;
     } else {
         ppDetails = null;
         return VSConstants.S_FALSE;
     }
 }