Steamworks.SteamUnifiedMessages.GetMethodResponseInfo C# (CSharp) Méthode

GetMethodResponseInfo() public static méthode

Gets the size of the response and the EResult. Returns false if the response is not ready yet.

public static GetMethodResponseInfo ( ClientUnifiedMessageHandle hHandle, uint &punResponseSize, EResult &peResult ) : bool
hHandle ClientUnifiedMessageHandle
punResponseSize uint
peResult EResult
Résultat bool
		public static bool GetMethodResponseInfo(ClientUnifiedMessageHandle hHandle, out uint punResponseSize, out EResult peResult) {
			InteropHelp.TestIfAvailableClient();
			return NativeMethods.ISteamUnifiedMessages_GetMethodResponseInfo(hHandle, out punResponseSize, out peResult);
		}