예제 #1
0
 int IDebugExceptionDetails.GetFormattedDescription(out string pbstrDescription)
 {
     pbstrDescription = _exception.GetDescription(true);
     return(VSConstants.S_OK);
 }
예제 #2
0
 int IDebugExceptionEvent2.GetExceptionDescription(out string pbstrDescription)
 {
     pbstrDescription = _exception.GetDescription(false);
     return(VSConstants.S_OK);
 }
예제 #3
0
 int IDebugExceptionDetails.GetFormattedDescription(IDebugStackFrame2 pStackFrameContext, out string pbstrDescription)
 {
     pbstrDescription = _exception.GetDescription(true);
     return(VSConstants.S_OK);
 }