This is a discussion on How can Ping Gateway in c#.net within the C# Programming forums, part of the Software Development category; Hi all, Any one can help me for Gateway ping with programatecaly. Gateway ping not a IP Address Ping....
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Hi Ramesh, Ping remote computer in the network Normally we use dos command “ping” to know connection status of the remote machine, the same thing we can do using “System.Net.NetworkInformation.Ping” class. Using this class we can check the remote machine connected with the current machine or not. Also we can use “PingOptions” class to give the options to ping. Regarads Deeban A Last edited by a.deeban : 01-04-2008 at 05:11 AM. |
| |||
| Import Namespaces : Code: using System.Net.NetworkInformation; using System.Text; using System.Windows.Forms; using System.Windows.Forms Code: public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
string remoteMachineNameOrIP= "192.1.168.1";
int timeOut = 5;
Ping ping = new Ping();
// Pinging remote maching
PingReply reply = ping.Send(remoteMachineNameOrIP, timeOut);
// Displaying the result
StringBuilder sb = new StringBuilder();
sb.Append("Address:" + reply.Address.ToString());
sb.Append("\nStatus:" + reply.Status.ToString());
sb.Append("\nRoundtripTime:" + reply.RoundtripTime.ToString());
MessageBox.Show(sb.ToString(), "Ping Result: " + remoteMachineNameOrIP);
}
} |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to ping IM thru asp.net | rrrajesh84in | ASP and ASP.NET Programming | 3 | 01-09-2008 09:48 PM |
| send the sms using SMS/MMS Gateway in php | varghese | PHP Programming | 1 | 09-18-2007 08:32 AM |
| Payment Gateway | vadivelanvaidyanathan | Software Testing | 0 | 09-12-2007 04:15 AM |
| Need help on payment gateway integration in a website using C# | garunprasad | C# Programming | 1 | 08-01-2007 04:44 AM |
| Payment Gateway | Jeyaseelansarc | PHP Programming | 3 | 07-11-2007 03:20 AM |