Exception that gets thrown when you use a Node object that is not valid.
Namespace: Vrml.EAI
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public class InvalidNodeException :  VrmlException,
ISerializable,
_Exception
Collapse/Expand Remarks
This exception can be thrown by almost every method of the Node class. It happens when you try call a method of an invalid Node object. Node 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 InvalidNodeException and print an error message to the console:
C#
try
{
    ...
}
catch (Vrml.EAI.InvalidNodeException ex)
{
    System.Console.WriteLine(ex);
}