public HttpRequestMessage GetGalaxyContent(SystemCoordinate system) { return(_client.BuildPost(new Uri("/game/index.php?page=galaxyContent&ajax=1", UriKind.Relative), new[] { KeyValuePair.Create("galaxy", system.Galaxy.ToString()), KeyValuePair.Create("system", system.System.ToString()) })); }
public HttpRequestMessage PostPage(PageType page, KeyValuePair <string, string>[] postParameters) { string link = ((Page)page).Link; return(_client.BuildPost(new Uri($"/game/index.php?page={link}", UriKind.Relative), postParameters)); }