C#. Can I say to the webbrowser in my winform application - use only IE7 (IE8-IE11, Edge) version regardless of the property FEATURE_BROWSER_EMULATION value in the registry?
I try to find any information about this, but find only manipulation with FEATURE_BROWSER_EMULATION value in the registry.
I think, that I must to use this function:
[DllImport("wininet.dll", SetLastError = true)]
private static extern bool InternetSetOption( IntPtr hInternet, int dwOption, IntPtr lpBuffer, int lpdwBufferLength);
but don't find any info.
Thanks!