Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than iphlpapi, prefix the name with the module name and a period.
getbestinterface (iphlpapi)
.
C# Signature:
[DllImport("iphlpapi.dll", SetLastError=true)]
static extern int GetBestInterface(UInt32 DestAddr, out UInt32 BestIfIndex);
VB Signature:
Declare Function GetBestInterface Lib "iphlpapi.dll" (TODO) As TODO
User-Defined Types:
None.
Notes:
DestAddr is a 32 bit representation of the four IP bytes. For .NET 1.0, you can get this from IPAddress.Address. In .NET 1.1, this is obsolete. You can use BitConverter.ToUInt32(IPAddress.GetAddressBytes()) instead.
Tips & Tricks:
Use GetAdaptersInfo to determine which adapter the index corresponds to.
Sample Code:
public static class Win32ApiCalls
{
[DllImport("iphlpapi.dll", CharSet = CharSet.Auto)]
public static extern int GetBestInterface(UInt32 destAddr, out UInt32 bestIfIndex);
}
class Program
{
static void Main(string[] args)
{
try
{
IPHostEntry hostInfo = Dns.GetHostEntry("www.yahoo.com");
Console.WriteLine("Host name : " + hostInfo.HostName);
Console.WriteLine("\r\nAliases : ");
foreach (var thisAlias in hostInfo.Aliases)
{
Console.WriteLine(thisAlias);
}
Console.WriteLine("\r\nIP Address list :");
foreach (var thisAddress in hostInfo.AddressList)
{
Console.WriteLine(thisAddress);
}
IPAddress ipv4Address = (from thisAddress in hostInfo.AddressList
where thisAddress.AddressFamily == AddressFamily.InterNetwork
select thisAddress).FirstOrDefault();
if (ipv4Address == null)
{
Console.WriteLine("No Ipv4 address found for www.yahoo.com.");
return;
}
Console.WriteLine("\r\nGetting best interface to reach {0}...", ipv4Address);
private static NetworkInterface GetNetworkInterfaceByIndex(uint index)
{
// Search in all network interfaces that support IPv4.
NetworkInterface ipv4Interface = (from thisInterface in NetworkInterface.GetAllNetworkInterfaces()
where thisInterface.Supports(NetworkInterfaceComponent.IPv4)
let ipv4Properties = thisInterface.GetIPProperties().GetIPv4Properties()
where ipv4Properties != null && ipv4Properties.Index == index
select thisInterface).SingleOrDefault();
if (ipv4Interface != null)
return ipv4Interface;
// Search in all network interfaces that support IPv6.
NetworkInterface ipv6Interface = (from thisInterface in NetworkInterface.GetAllNetworkInterfaces()
where thisInterface.Supports(NetworkInterfaceComponent.IPv6)
let ipv6Properties = thisInterface.GetIPProperties().GetIPv6Properties()
where ipv6Properties != null && ipv6Properties.Index == index
select thisInterface).SingleOrDefault();
return ipv6Interface;
}
}
Alternative Managed API:
Do you know one? Please contribute it!
The GetBestInterface function retrieves index of the interface that has the best route to the specified IP address.
7/28/2014 8:55:24 AM - -63.119.179.129
TODO - a short description
3/16/2007 7:50:05 AM - -171.161.160.10
TODO - a short description
3/16/2007 7:50:05 AM - -171.161.160.10
Click to read this page
11/15/2018 12:43:56 PM - -84.26.42.10
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).