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