Kimono.KHTMLPart.SetOnlyLocalReferences C# (CSharp) Method

SetOnlyLocalReferences() public method

Security option. Specify whether only file:/ or data:/ urls are allowed to be loaded without user confirmation by KHTML. ( for example referenced by stylesheets, images, scripts, subdocuments, embedded elements ). This option is mainly intended for enabling the "mail reader mode", where you load untrusted content with a file:/ url. Please note that enabling this option currently automatically disables Javascript, Java and Plugins support. This might change in the future if the security model is becoming more sophisticated, so don't rely on this behaviour. ( default false - everything is loaded unless forbidden by KApplication.AuthorizeURLAction).
public SetOnlyLocalReferences ( bool enable ) : void
enable bool
return void
        public void SetOnlyLocalReferences(bool enable)
        {
            interceptor.Invoke("setOnlyLocalReferences$", "setOnlyLocalReferences(bool)", typeof(void), typeof(bool), enable);
        }
KHTMLPart