|
NetworkingHelperGetExtendedUdpTable Method |
The GetExtendedUdpTable function retrieves a table that contains a list of UDP endpoints
available to the application.
Namespace: Xcalibur.NativeMethods.V2.NetworkingAssembly: Xcalibur.NativeMethods.V2 (in Xcalibur.NativeMethods.V2.dll) Version: 1.0.1.0
Syntax [DllImportAttribute("iphlpapi.dll", SetLastError = true)]
public static uint GetExtendedUdpTable(
IntPtr udpTablePointer,
ref int outputBufferLength,
bool sort,
int ipVersion,
UdpTableClasses tblClass,
int reserved
)
<DllImportAttribute("iphlpapi.dll", SetLastError := true>]
Public Shared Function GetExtendedUdpTable (
udpTablePointer As IntPtr,
ByRef outputBufferLength As Integer,
sort As Boolean,
ipVersion As Integer,
tblClass As UdpTableClasses,
reserved As Integer
) As UInteger
public:
[DllImportAttribute(L"iphlpapi.dll", SetLastError = true)]
static unsigned int GetExtendedUdpTable(
IntPtr udpTablePointer,
int% outputBufferLength,
bool sort,
int ipVersion,
UdpTableClasses tblClass,
int reserved
)
[<DllImportAttribute("iphlpapi.dll", SetLastError = true)>]
static member GetExtendedUdpTable :
udpTablePointer : IntPtr *
outputBufferLength : int byref *
sort : bool *
ipVersion : int *
tblClass : UdpTableClasses *
reserved : int -> uint32
Parameters
- udpTablePointer IntPtr
- A pointer to the table structure that contains the filtered
UDP endpoints available to the application.
- outputBufferLength Int32
- he estimated size of the structure returned in
tcpTablePointer, in bytes.
- sort Boolean
- A value that specifies whether the TCP connection table should be
sorted. If this parameter is set to TRUE, the TCP endpoints in the table are sorted in
ascending order, starting with the lowest local IP address. If this parameter is set to
FALSE, the TCP endpoints in the table appear in the order in which they were retrieved.
- ipVersion Int32
- The version of IP used by the TCP endpoints.
- tblClass UdpTableClasses
- The type of the TCP table structure to retrieve. This parameter can
be one of the values from the enumeration.
- reserved Int32
- Reserved. This value must be zero.
Return Value
UInt32See Also