_Application3.IsDestinationReachable(String) Method

Definition

Gets a value indicating whether the specified Uniform Resource Locator (URL), universal naming convention (UNC) path, or IP address of the destination computer can be connected to from the client computer.

public:
 bool IsDestinationReachable(System::String ^ bstrDestination);
public bool IsDestinationReachable (string bstrDestination);
abstract member IsDestinationReachable : string -> bool
Public Function IsDestinationReachable (bstrDestination As String) As Boolean

Parameters

bstrDestination
String

Specifies the location to check for network connectivity. IP addresses, a UNC paths, or a URLs are acceptable values.

Returns

true if a connection can be made to the specified URL, UNC, or IP address; otherwise, false.

Implements

Remarks

The value specified for destination must be either a UNC path that includes a server name and a share name, such as @"\\MyServer\MyShare", or a URL that begins with one of the following protocol identifiers: http, https, or file.

Applies to