C# | ||
---|---|---|
|
The Browser object is the central interface to the X3D browser and the scene currently displayed by the browser. You cannot create instances of this interface directly, instead you have to use one of the methods of the BrowserFactory class.
When you do not need the Browser object anymore, you should call its Dispose method to release all resources as soon as possible.
C# |
---|
System.Net.IPAddress address = System.Net.Dns.GetHostByName("localhost").AddressList[0]; Vrml.EAI.Browser browser = Vrml.EAI.BrowserFactory.GetBrowser(address, 4848); ... browser.Dispose(); |