Mono.Upcoming.UpcomingConnection.GetGroups C# (CSharp) Method

GetGroups() private method

private GetGroups ( int event_id ) : Mono.Upcoming.Group[]
event_id int
return Mono.Upcoming.Group[]
        internal virtual Group[] GetGroups(int event_id)
        {
            Response rsp = Util.Get ("event.getGroups", new UpcomingParam ("event_id", event_id));
            SetConnection (rsp.Groups);

            return rsp.Groups;
        }