Inheritance: SteamWebRequest
 public async Task<SteamServerInfo> GetServerInfoAsync()
 {
     SteamWebAPIUtil steamWebUtil = new SteamWebAPIUtil(this.developerKey);
     return await steamWebUtil.GetServerInfoAsync();
 }
 public async Task<List<SteamInterface>> GetSupportedInterfacesAsync()
 {
     SteamWebAPIUtil steamWebUtil = new SteamWebAPIUtil(this.developerKey);
     return await steamWebUtil.GetSupportedAPIListAsync();
 }