Steamworks.SteamHTMLSurface.JSDialogResponse C# (CSharp) Method

JSDialogResponse() public static method

You MUST call this in response to a HTML_JSAlert_t or HTML_JSConfirm_t callback

Set bResult to true for the OK option of a confirm, use false otherwise

public static JSDialogResponse ( HHTMLBrowser unBrowserHandle, bool bResult ) : void
unBrowserHandle HHTMLBrowser
bResult bool
return void
		public static void JSDialogResponse(HHTMLBrowser unBrowserHandle, bool bResult) {
			InteropHelp.TestIfAvailableClient();
			NativeMethods.ISteamHTMLSurface_JSDialogResponse(unBrowserHandle, bResult);
		}