How can i set the Windows Forms webbrowser control to block or allow cookies for the site it will navigate?
The webbrowser control IS internet explorer. If you want to do this you may have to open an instance of the browser and block cookies through internet options. The webbrowser control itself doesn't provide a nice handy way to do that. Also doing this will block cookies from any site and not for a particular site
You can implement a Custom Security Manager and return URLPOLICY_DISALLOW in pPolicy for each kind of action between URLACTION_NETWORK_MIN and URLACTION_NETWORK_MAX. There are several actions for cookies. For a list of cookie related actions, check your zone security settings in IE options.
There are multiple webbrowser controls in .Net. The WPF one isn't customizable for this task. The Windows Forms one is kinda customizable however its IDocHostUIhandler implementation is stuck in internal code due to security guidelines of .Net BCL. You would be much better off if you use the raw ActiveX or its wrappers that support this kind of customization, e.g. csexwb. If you have to use the winform webbrowser control, you need to create your own webbrowser site.