Skip to content

Instantly share code, notes, and snippets.

@voided
Created September 14, 2015 20:57
Show Gist options
  • Save voided/4dbb78bf4e4e6d78254c to your computer and use it in GitHub Desktop.
Save voided/4dbb78bf4e4e6d78254c to your computer and use it in GitHub Desktop.
Awaitable jobs
static async void OnLoggedOn( SteamUser.LoggedOnCallback callback )
{
var query = new SteamMasterServer.QueryDetails
{
// ...
};
SteamMasterServer.QueryCallback result = await steamGms.ServerQuery( query );
// do whatever
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment