Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Although the Ping.Send() is easy and straightforward, I can't seem to figure out how to Ping.Send() out of the interface I choose. specifically my WLAN interface or my Ethernet interface when both are connected to separate networks.

Would I have to use the Sockets namespace and the Bind(localEndpoint)?

It seems odd that that binding functionality isn't available in the NetworkInformation.Ping utility. Or is it & I just can't find it?

Thank you

share|improve this question

1 Answer

up vote 1 down vote accepted

ICMP is not socket based. The ping will be sent to the appropriate port based on the routing table.

share|improve this answer
Ah, so if I understand you correctly, I can look at the routing table to see which interface it would go through and route add if necessary. Thanks. – Steve H Aug 14 '10 at 17:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.