InternetOpen

[DllImport("wininet.dll", SetLastError = true, CharSet = CharSet.Auto)]
public static extern IntPtr InternetOpen(
   string lpszAgent,
   uint dwAccessType,
   string lpszProxy,
   string lpszProxyBypass,
   uint dwFlags
);

Microsoft documentation: Link

Last updated