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

GetCountry() private method

private GetCountry ( int country_id ) : Country
country_id int
return Country
        internal Country GetCountry(int country_id)
        {
            Response rsp = Util.Get ("country.getInfo", new UpcomingParam ("country_id", country_id));
            SetConnection (rsp.Countries);

            return rsp.Countries[0];
        }