Exception that gets thrown when you try to get an unknown event-in or event-out slot from a node.
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public class InvalidFieldException :  VrmlException,
ISerializable,
_Exception
Collapse/Expand Remarks
This exception gets thrown by Node.GetEventOut and Node.GetEventIn when you specify a field name that does not exist in the node.
Collapse/Expand Members

Click here to see the list of members.

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