Пример #1
0
 public DebuggerEvent(Debugger debugger, CorEvent evt)
 {
     debugger.Dispatcher.VerifyAccess();
     this.debugger = debugger;
     this.evt      = evt;
     hashCode      = evt.GetHashCode();
     Token         = evt.Token;
     Name          = evt.GetName() ?? string.Empty;
     Attributes    = evt.GetAttributes();
 }
Пример #2
0
		public DebuggerEvent(Debugger debugger, CorEvent evt) {
			debugger.Dispatcher.VerifyAccess();
			this.debugger = debugger;
			this.evt = evt;
			this.hashCode = evt.GetHashCode();
			this.token = evt.Token;
			this.name = evt.GetName() ?? string.Empty;
			this.attributes = evt.GetAttributes();
		}