Exception that gets thrown when you call a method on a Browser object that is not valid.
Namespace: Vrml.EAI
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public class InvalidBrowserException :  VrmlException,
ISerializable,
_Exception
Collapse/Expand Remarks
This exception can be thrown by almost every method of the Browser class. It happens when you try to call a method of an invalid Browser object. Browser objects become invalid after calling their Dispose method.
Collapse/Expand Members

Click here to see the list of members.

Collapse/Expand Example
The following example demonstrates how to catch an InvalidBrowserException and print an error message to the console:
C#
try
{
    ...
}
catch (Vrml.EAI.InvalidBrowserException ex)
{
    System.Console.WriteLine(ex);
}