Steamworks.SteamHTMLSurface.AllowStartRequest C# (CSharp) Method

AllowStartRequest() public static method

CALLBACKS

These set of functions are used as responses to callback requests

You MUST call this in response to a HTML_StartRequest_t callback

Set bAllowed to true to allow this navigation, false to cancel it and stay

on the current page. You can use this feature to limit the valid pages

allowed in your HTML surface.

public static AllowStartRequest ( HHTMLBrowser unBrowserHandle, bool bAllowed ) : void
unBrowserHandle HHTMLBrowser
bAllowed bool
return void
		public static void AllowStartRequest(HHTMLBrowser unBrowserHandle, bool bAllowed) {
			InteropHelp.TestIfAvailableClient();
			NativeMethods.ISteamHTMLSurface_AllowStartRequest(unBrowserHandle, bAllowed);
		}