示例#1
0
 void IMDException.GetInnerException(out IMDException ppException)
 {
     if (m_ex.Inner != null)
     {
         ppException = new MDException(m_ex.Inner);
     }
     else
     {
         ppException = null;
     }
 }
示例#2
0
 public void GetCurrentException(out IMDException ppException)
 {
     if (m_thread.CurrentException != null)
     {
         ppException = new MDException(m_thread.CurrentException);
     }
     else
     {
         ppException = null;
     }
 }
示例#3
0
 public void GetExceptionObject(ulong addr, out IMDException ppExcep)
 {
     ppExcep = new MDException(m_heap.GetExceptionObject(addr));
 }
示例#4
0
 public void GetExceptionObject(ulong addr, out IMDException ppExcep)
 {
     ppExcep = new MDException(m_heap.GetExceptionObject(addr));
 }
示例#5
0
 void IMDException.GetInnerException(out IMDException ppException)
 {
     if (m_ex.Inner != null)
         ppException = new MDException(m_ex.Inner);
     else
         ppException = null;
 }
示例#6
0
 public void GetCurrentException(out IMDException ppException)
 {
     if (m_thread.CurrentException != null)
         ppException = new MDException(m_thread.CurrentException);
     else
         ppException = null;
 }