Exception that gets thrown when you try to get an unknown event-in slot from a node.
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public class InvalidEventInException :  InvalidFieldException,
ISerializable,
_Exception
Collapse/Expand Remarks
This exception gets thrown by Node.GetEventIn when you specify an event-in slot 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 an InvalidEventInException and print an error message to the console:
C#
try
{
    ...
}
catch (Vrml.EAI.Field.InvalidEventInException ex)
{
    System.Console.WriteLine(ex);
}