Loads a new scene.
Declaring type: Browser
Namespace: Vrml.EAI
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract void LoadURL (
        string[] url,
        string[] parameter
) 
Parameters
url
URLs that contain the new scene. The browser consecutively tries to load the scene from these URLs. It stops as soon as a download succeeds.
parameter
Contains additional information to be interpreted by the browser. Each string shall consist of "key=value" pairs. The VRML standard does not specify any of these parameters, so all parameters are browser-specific.
Collapse/Expand Example
The following example demonstrates how to load a scene "Scene.wrl" from the current working directory:
C#
Vrml.EAI.Browser browser = ...;
string[] urls = { "Scene.wrl" };
string[] parameters = new string[0];
browser.LoadURL(urls, parameters);