黃聰:GeckoWebBrowser多窗口獨立cookie


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Gecko;
using System.IO;
using System.Runtime.InteropServices;

namespace 獨立Cookie
{
    public partial class Form1 : Form
    {
        static private string xulrunnerPath = Application.StartupPath + "\\xulrunner";

        public Form1()
        {
            InitializeComponent();

       /* 關鍵代碼 */
string profileDir = DateTime.Now.ToString("yyyyMMddHHmmss"); //定義獨立cookie的文件夾名稱
            string directory = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), Path.Combine("Geckofx", profileDir));
if (!Directory.Exists(directory))
                Directory.CreateDirectory(directory);
            Gecko.Xpcom.ProfileDirectory = directory;
        /* 關鍵代碼 結束 */
        Gecko.Xpcom.Initialize(xulrunnerPath); 
        GeckoPreferences.User[
"gfx.font_rendering.graphite.enabled"] = true;
        Gecko.CertOverrideService.GetService().ValidityOverride
+= geckoWebBrowser1_ValidityOverride;
        gwb.Navigate(
"http://baidu.com");
    }

    private void geckoWebBrowser1_ValidityOverride(object sender, Gecko.Events.CertOverrideEventArgs e) {
      e.OverrideResult
= Gecko.CertOverride.Mismatch | Gecko.CertOverride.Time | Gecko.CertOverride.Untrusted; e.Temporary = true; e.Handled = true; }
    }
}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM