Exception that gets thrown when the EAI is not able to access a resource specified by a URL.
Namespace: Vrml.EAI
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public class URLUnavailableException :  VrmlException,
ISerializable,
_Exception
Collapse/Expand Remarks
This means that the URL refers to a resource on the network that either does not exist, or that cannot be downloaded. This exception is thrown from either Browser.LoadURL or Browser.CreateVrmlFromURL.
Collapse/Expand Members

Click here to see the list of members.

Collapse/Expand Example
The following example demonstrates how to catch an URLUnavailableException and print an error message to the console:
C#
try
{
    ...
}
catch (Vrml.EAI.URLUnavailableException ex)
{
    System.Console.WriteLine(ex);
}