public void onServerFailedToRespond() { SteamworksServerInfoRequestResult result = new SteamworksServerInfoRequestResult(null); this.triggerCallback(result); this.cleanupQuery(); SteamworksMatchmakingService.serverInfoRequestHandles.Remove(this); }
public void onServerResponded(gameserveritem_t server) { SteamworksServerInfo newServerInfo = new SteamworksServerInfo(server); SteamworksServerInfoRequestResult result = new SteamworksServerInfoRequestResult(newServerInfo); this.triggerCallback(result); this.cleanupQuery(); SteamworksMatchmakingService.serverInfoRequestHandles.Remove(this); }