コード例 #1
0
ファイル: AD7Exceptions.cs プロジェクト: naughtywoods23/PTVS
 int IDebugExceptionDetails.GetFormattedDescription(out string pbstrDescription)
 {
     pbstrDescription = _exception.GetDescription(true);
     return(VSConstants.S_OK);
 }
コード例 #2
0
ファイル: AD7Exceptions.cs プロジェクト: naughtywoods23/PTVS
 int IDebugExceptionEvent2.GetExceptionDescription(out string pbstrDescription)
 {
     pbstrDescription = _exception.GetDescription(false);
     return(VSConstants.S_OK);
 }
コード例 #3
0
ファイル: AD7Exceptions.cs プロジェクト: zhangjinxing/PTVS
 int IDebugExceptionDetails.GetFormattedDescription(IDebugStackFrame2 pStackFrameContext, out string pbstrDescription)
 {
     pbstrDescription = _exception.GetDescription(true);
     return(VSConstants.S_OK);
 }