Mono.Debugger.Event.Event C# (CSharp) Method

Event() protected method

protected Event ( EventType type, int index, string name, ThreadGroup group ) : System
type EventType
index int
name string
group ThreadGroup
return System
        protected Event(EventType type, int index, string name, ThreadGroup group)
        {
            this.type = type;
            this.index = index;
            this.name = name;
            this.group = group;
            this.UniqueID = GetNextEventIndex ();

            if (group == null)
                throw new NullReferenceException ();
        }

Same methods

Event::Event ( EventType type, string name, ThreadGroup group ) : System