| 
            
              TransportIsDestinationReachable Method
             | 
          
        
        
            Determines if the specified UDP destination is listening for data.
            
        
        Namespace: GSF.CommunicationAssembly: GSF.Communication (in GSF.Communication.dll) Version: 2.4.258-beta
Syntaxpublic static bool IsDestinationReachable(
	IPEndPoint targetIPEndPoint
)
Public Shared Function IsDestinationReachable ( 
	targetIPEndPoint As IPEndPoint
) As Boolean
public:
static bool IsDestinationReachable(
	IPEndPoint^ targetIPEndPoint
)
static member IsDestinationReachable : 
        targetIPEndPoint : IPEndPoint -> bool GSF.Communication.Transport.IsDestinationReachable = function(targetIPEndPoint);
 View SourceParameters
- targetIPEndPoint  IPEndPoint
 - The IPEndPoint for the UDP destination to be checked.
 
Return Value
Booleantrue if the UDP destination is listening for data; otherwise false.
See Also