Identifier for events that get sent when the download from an URL failed.
Declaring type: BrowserEvent
Namespace: Vrml.EAI.Event
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public const int URL_ERROR = 3
Collapse/Expand Remarks
The Browser object issues an URL_ERROR event when the download from an URL failed. This might happen after calling the LoadURL or ReplaceWorld methods of the Browser object.
Collapse/Expand Example
The following example demonstrates how to check if an URL_ERROR event happened:
C#
Vrml.EAI.Event.BrowserEvent evt = ...;
if (evt.ID == Vrml.EAI.Event.BrowserEvent.URL_ERROR)
{
    // Download from an URL failed
    ...
}