public CanStop (IDebugCodeContext2 codeContext, IDebugDocumentContext2 documentContext, enum_CANSTOP_REASON reason)
      {
        m_codeContext = codeContext;

        m_documentContext = documentContext;

        m_canStop = false;

        m_canStopReason = reason;
      }
      int IDebugCanStopEvent2.GetReason (enum_CANSTOP_REASON [] pcr)
      {
        pcr [0] = m_canStopReason;

        return Constants.S_OK;
      }
 public int GetReason(enum_CANSTOP_REASON[] pcr)
 {
     throw new NotImplementedException();
 }