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