Steamworks.SteamMatchmakingServers.CancelServerQuery C# (CSharp) Method

CancelServerQuery() public static method

Cancel an outstanding Ping/Players/Rules query from above. You should call this to cancel

any in-progress requests before destructing a callback object that may have been passed

to one of the above calls to avoid crashing when callbacks occur.

public static CancelServerQuery ( HServerQuery hServerQuery ) : void
hServerQuery HServerQuery
return void
		public static void CancelServerQuery(HServerQuery hServerQuery) {
			InteropHelp.TestIfAvailableClient();
			NativeMethods.ISteamMatchmakingServers_CancelServerQuery(hServerQuery);
		}
	}