2009-11-02 Zoltan Varga <vargaz@gmail.com>
[mcs.git] / class / Mono.Debugger.Soft / Mono.Debugger / MethodExitEvent.cs
blob785958d94b7bef77b0e818b05ded6701c23658d5
2 namespace Mono.Debugger
4 public class MethodExitEvent : Event {
5 MethodMirror method;
6 long id;
8 internal MethodExitEvent (VirtualMachine vm, int req_id, long thread_id, long id) : base (EventType.MethodExit, vm, req_id, thread_id) {
9 this.id = id;
12 public MethodMirror Method {
13 get {
14 if (method == null)
15 method = vm.GetMethod (id);
16 return method;