Syntax
| C# | 
|---|
| public const int CONNECTION_ERROR = 4 | 
Remarks
Example
| C# | 
|---|
Vrml.EAI.Event.BrowserEvent evt = ...;
if (evt.ID == Vrml.EAI.Event.BrowserEvent.CONNECTION_ERROR)
{
    // An error occurred when communicating with the browser
    ...
}
 |