जवाबों:
आप .NET 2.0 में नेटवर्क कनेक्शन के लिए जाँच कर सकते हैं GetIsNetworkAvailable()
:
System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable()
IP पते में परिवर्तन या नेटवर्क उपलब्धता में परिवर्तन की निगरानी के लिए NetworkChange वर्ग की घटनाओं का उपयोग करें :
System.Net.NetworkInformation.NetworkChange.NetworkAvailabilityChanged
System.Net.NetworkInformation.NetworkChange.NetworkAddressChanged
NetworkInterface.GetIsNetworkAvailable()
मेरे आवेदन में बहुत अविश्वसनीय है (.NET 4.5, विंडोज 10), खासकर जब एक आभासी मशीन में चल रहा हो। से घटनाओं को संभालना NetworkAvailabilityChanged
विश्वसनीय रहा है।
चिह्नित उत्तर 100% ठीक है, हालांकि, कुछ मामले हैं जब मानक विधि को वर्चुअल कार्ड (वर्चुअल बॉक्स, ...) द्वारा मूर्ख बनाया जाता है। यह अक्सर अपनी गति (सीरियल पोर्ट, मोडेम, ...) के आधार पर कुछ नेटवर्क इंटरफेस को छोड़ने के लिए भी वांछनीय है।
यहाँ एक कोड है जो इन मामलों की जाँच करता है:
/// <summary>
/// Indicates whether any network connection is available
/// Filter connections below a specified speed, as well as virtual network cards.
/// </summary>
/// <returns>
/// <c>true</c> if a network connection is available; otherwise, <c>false</c>.
/// </returns>
public static bool IsNetworkAvailable()
{
return IsNetworkAvailable(0);
}
/// <summary>
/// Indicates whether any network connection is available.
/// Filter connections below a specified speed, as well as virtual network cards.
/// </summary>
/// <param name="minimumSpeed">The minimum speed required. Passing 0 will not filter connection using speed.</param>
/// <returns>
/// <c>true</c> if a network connection is available; otherwise, <c>false</c>.
/// </returns>
public static bool IsNetworkAvailable(long minimumSpeed)
{
if (!NetworkInterface.GetIsNetworkAvailable())
return false;
foreach (NetworkInterface ni in NetworkInterface.GetAllNetworkInterfaces())
{
// discard because of standard reasons
if ((ni.OperationalStatus != OperationalStatus.Up) ||
(ni.NetworkInterfaceType == NetworkInterfaceType.Loopback) ||
(ni.NetworkInterfaceType == NetworkInterfaceType.Tunnel))
continue;
// this allow to filter modems, serial, etc.
// I use 10000000 as a minimum speed for most cases
if (ni.Speed < minimumSpeed)
continue;
// discard virtual cards (virtual box, virtual pc, etc.)
if ((ni.Description.IndexOf("virtual", StringComparison.OrdinalIgnoreCase) >= 0) ||
(ni.Name.IndexOf("virtual", StringComparison.OrdinalIgnoreCase) >= 0))
continue;
// discard "Microsoft Loopback Adapter", it will not show as NetworkInterfaceType.Loopback but as Ethernet Card.
if (ni.Description.Equals("Microsoft Loopback Adapter", StringComparison.OrdinalIgnoreCase))
continue;
return true;
}
return false;
}
Microsoft विंडोज़ विस्टा और 7 उपयोग NCSI (नेटवर्क कनेक्टिविटी स्थिति संकेतक) टेक्निक:
नेटवर्क कनेक्शन की जांच करने के लिए इस विधि को कॉल करें।
public static bool IsConnectedToInternet()
{
bool returnValue = false;
try
{
int Desc;
returnValue = Utility.InternetGetConnectedState(out Desc, 0);
}
catch
{
returnValue = false;
}
return returnValue;
}
इसे कोड की नीचे पंक्ति में रखें।
[DllImport("wininet.dll")]
public extern static bool InternetGetConnectedState(out int Description, int ReservedValue);