WSAStartup

[DllImport("ws2_32.dll", SetLastError = true)]
public static extern int WSAStartup(
   ushort wVersionRequested,
   IntPtr lpWSAData
);

Microsoft documentation: Link

Last updated