public int GetThread(out IDebugThread100 ppThread)
 {
     ppThread = _thread;
     return(VSConstants.S_OK);
 }
 public int GetThread(out IDebugThread100 ppThread)
 {
     ppThread = _thread;
     return VSConstants.S_OK;
 }
 public DebugThreadDisplayNameChangeEvent(enum_EVENTATTRIBUTES attributes, IDebugThread100 thread)
     : base(attributes)
 {
     Contract.Requires <ArgumentNullException>(thread != null, "thread");
     _thread = thread;
 }
 public DebugThreadSuspendChangeEvent(enum_EVENTATTRIBUTES attributes, IDebugThread100 thread)
     : base(attributes)
 {
     Contract.Requires<ArgumentNullException>(thread != null, "thread");
     _thread = thread;
 }