Click or drag to resize

IFrameLoadUrl Method (String)

Navigates the frame to a resource identified by the given url.

Namespace:  DotNetBrowser.Frames
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.16.0
Syntax
C#
Task<LoadResult> LoadUrl(
	string url
)

Parameters

url
Type: SystemString
The URL of the resource to load. Cannot be null, empty or contain only white space.

Return Value

Type: TaskLoadResult
A task that represents the asynchronous loading operation. The LoadResult indicates if the loading operation has been completed, stopped or failed. The task throws a if the loading operation hasn't been completed within a default timeout (100 seconds).
Exceptions
ExceptionCondition
ArgumentExceptionthrown when urlis null, empty or contain only white space.
ObjectDisposedExceptionThe IFrame object has already been disposed.
See Also