public void CloseTrident() { if (tridentSite != null) { tridentSite.Close(); tridentSite = null; } }
public bool CreateTrident() { try { this.tridentSite = new TridentSite(this); } catch (Exception) { return false; } return true; }
public bool CreateTrident() { try { this.tridentSite = new TridentSite(this); } catch (Exception) { return(false); } return(true); }
public bool CreateTrident() { Debug.Assert(Handle != IntPtr.Zero, "MSHTMLHost must first be created before createTrident is called"); try { tridentSite = new TridentSite(this); } catch (Exception e) { Debug.WriteLine("Exception caught in MSHTMLHost::CreateTrident\n\t" + e.ToString()); return(false); } return(true); }