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; } 
    } 
}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章