Exception that gets thrown when you try to call a method of the EAI that is not implemented.
Namespace: Vrml.EAI
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public class NotSupportedException :  VrmlException,
ISerializable,
_Exception
Collapse/Expand Remarks
This exception gets usually thrown from the BrowserFactory object when you try to create a type of Browser object that is not supported by the EAI implementation.
Collapse/Expand Members

Click here to see the list of members.

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