IpHlpApiFlushIpNetTable Method
Deletes all ARP entries for the specified interface from the ARP table on the local computer.
Namespace: DevCase.Win32.NativeMethodsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("IpHlpApi.dll", ExactSpelling = true)]
public static Win32ErrorCode FlushIpNetTable(
uint interfaceIndex
)
<DllImportAttribute("IpHlpApi.dll", ExactSpelling := true>]
Public Shared Function FlushIpNetTable (
interfaceIndex As UInteger
) As Win32ErrorCode
Dim interfaceIndex As UInteger
Dim returnValue As Win32ErrorCode
returnValue = IpHlpApi.FlushIpNetTable(interfaceIndex)
public:
[DllImportAttribute(L"IpHlpApi.dll", ExactSpelling = true)]
static Win32ErrorCode FlushIpNetTable(
unsigned int interfaceIndex
)
[<DllImportAttribute("IpHlpApi.dll", ExactSpelling = true)>]
static member FlushIpNetTable :
interfaceIndex : uint32 -> Win32ErrorCode
No code example is currently available or this language may not be supported.
- interfaceIndex UInt32
-
The index of the interface for which to delete all ARP entries.
Win32ErrorCode
If this function succeeds, it returns
ERROR_SUCCESS.
Otherwise, it returns an
Win32ErrorCode error code.