Exception that gets thrown when you try to get an unknown
            event-in slot from a node.
| C# | 
|---|
| public class InvalidEventInException :  | 
InvalidFieldException, ISerializable, 
_Exception
 | 
 
 
 | 
 
Click here to see the list of members.
 
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);
}
 |