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