Exception that gets thrown when the network connection to a running X3D browser instance fails.
Namespace: Vrml.EAI
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public class ConnectionException :  VrmlException,
ISerializable,
_Exception
Collapse/Expand Remarks
This exception can be thrown by almost every EAI function call. It usually is irreparable, i.e. you have to completely reinitialize the connection to the X3D browser.
Collapse/Expand Members

Click here to see the list of members.

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