Call to open a new modal browser window.

Namespace:  RedCritterV1
Assembly:  RedCritterV1 (in RedCritterV1.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

      
 C#  Visual Basic 
public bool ShowModalBrowser(
	string title,
	Uri absoluteURI,
	string requestID,
	bool appendContext
)
Public Function ShowModalBrowser ( _
	title As String, _
	absoluteURI As Uri, _
	requestID As String, _
	appendContext As Boolean _
) As Boolean

Parameters

title
String
The Window's caption.
absoluteURI
Uri
The absolute URL to open. The URL must begin with http:// or https://.
requestID
String
Set to any value, this will be returned to OnModalBrowserClosed() when the dialog is closed.
appendContext
Boolean
Set to true to have the Player append credentials and context to the querystring.

Return Value

True if the window was successfully opened.

Remarks

This method will only be successful if the App currently has focus.

See Also