.NET implementation of IHttpSecurity (managed code)
1 answer
You will need to use COM interop for this. Look for the IID (guid) of the interface in the IDL file (urlmon.idl) and then recreate the interface in code. You will probably have to bind the PreserveSig attribute to the OnSecurityProblem interface so that you can return the appropriate error code.
+2
source to share