IBrowsingContext
Represents the browsing context interface.
using AngleSharp.Browser;
using AngleSharp.Browser.Dom;
using AngleSharp.Dom;
using System;
using System.Collections.Generic;
namespace AngleSharp
{
public interface IBrowsingContext : IEventTarget, IDisposable
{
IWindow Current { get; }
IDocument Active { get; set; }
IHistory SessionHistory { get; }
Sandboxes Security { get; }
IBrowsingContext Parent { get; }
IDocument Creator { get; }
IEnumerable<object> OriginalServices { get; }
T GetService<T>() where T : class;
IEnumerable<T> GetServices<T>() where T : class;
IBrowsingContext CreateChild(string name, Sandboxes security);
IBrowsingContext FindChild(string name);
}
}