API Diff between 0.6.1 and 0.3.0
2542 Additions
211 Removals
AngleSharp
-
public enum Accessors
-
public struct Angle : IEquatable<Angle>, ICssObject
-
public struct Color : IEquatable<Color>, ICssObject
- public static readonly Color Black
- public static readonly Color Blue
- public static readonly Color Green
- public static readonly Color Magenta
- public static readonly Color PureGreen
- public static readonly Color Red
- public static readonly Color Transparent
- public static readonly Color White
- public byte A { get; }
- public double Alpha { get; }
- public byte B { get; }
- public byte G { get; }
- public byte R { get; }
- public int Value { get; }
- public Color(byte r, byte g, byte b)
- public Color(byte r, byte g, byte b, byte a)
- public Color(byte r, byte g, byte b, double a)
- public static Color FromHex(string color)
- public static Color FromHsl(float h, float s, float l)
- public static Color FromHsla(float h, float s, float l, float alpha)
- public static Color? FromName(string name)
- public static Color FromRgb(byte r, byte g, byte b)
- public static Color FromRgba(byte r, byte g, byte b, double a)
- public static Color Mix(Color above, Color below)
- public static Color Mix(double alpha, Color above, Color below)
- public static bool op_Equality(Color a, Color b)
- public static bool op_Inequality(Color a, Color b)
- public static bool TryFromHex(string color, out Color value)
- public bool Equals(Color other)
- public string ToCss()
-
public class Configuration : IConfiguration
-
public static class ConfigurationExtensions
- public static TConfiguration WithCss<TConfiguration>(this TConfiguration configuration) where TConfiguration : Configuration
- public static TConfiguration WithRequests<TConfiguration>(this TConfiguration configuration) where TConfiguration : IConfiguration
- public static TConfiguration WithScripting<TConfiguration>(this TConfiguration configuration) where TConfiguration : IConfiguration
- public static TConfiguration WithStyling<TConfiguration>(this TConfiguration configuration) where TConfiguration : IConfiguration
-
public sealed class DocumentBuilder
- public CSSStyleSheet CssResult { get; }
- public HTMLDocument HtmlResult { get; }
- public XMLDocument XmlResult { get; }
- public static CSSStyleSheet Css(string sourceCode)
- public static CSSStyleSheet Css(Uri url)
- public static CSSStyleSheet Css(Stream networkStream)
- public static HTMLDocument Html(string sourceCode)
- public static HTMLDocument Html(Uri url)
- public static HTMLDocument Html(Stream networkStream)
- public static NodeList HtmlFragment(string sourceCode, Node context = null)
- public static XMLDocument Xml(string sourceCode)
- public static XMLDocument Xml(Uri url)
- public static XMLDocument Xml(Stream networkStream)
- public IConfiguration Configuration { get; }
- public DocumentBuilder(IConfiguration defaultConfiguration = null)
- public static ICssStyleSheet Css(string sourceCode, IConfiguration configuration = null, string url = null)
- public static ICssStyleSheet Css(Uri url, IConfiguration configuration = null)
- public static ICssStyleSheet Css(Stream stream, IConfiguration configuration = null, string url = null)
- public static Task<ICssStyleSheet> CssAsync(Uri url, IConfiguration configuration = null)
- public static Task<ICssStyleSheet> CssAsync(Uri url, CancellationToken cancel, IConfiguration configuration = null)
- public static Task<ICssStyleSheet> CssAsync(Stream stream, IConfiguration configuration = null, string url = null)
- public static Task<ICssStyleSheet> CssAsync(Stream stream, CancellationToken cancel, IConfiguration configuration = null, string url = null)
- public static IDocument Html(string sourceCode, IConfiguration configuration = null, string url = null)
- public static IDocument Html(Uri url, IConfiguration configuration = null)
- public static IDocument Html(Stream content, IConfiguration configuration = null, string url = null)
- public static Task<IDocument> HtmlAsync(Uri url, IConfiguration configuration = null)
- public static Task<IDocument> HtmlAsync(Uri url, CancellationToken cancel, IConfiguration configuration = null)
- public static Task<IDocument> HtmlAsync(Stream content, IConfiguration configuration = null, string url = null)
- public static Task<IDocument> HtmlAsync(Stream content, CancellationToken cancel, IConfiguration configuration = null, string url = null)
- public static INodeList HtmlFragment(string sourceCode, IElement context = null, IConfiguration configuration = null)
- public ICssStyleSheet FromCss(string sourceCode)
- public ICssStyleSheet FromCss(Uri url)
- public ICssStyleSheet FromCss(Stream stream)
- public Task<ICssStyleSheet> FromCssAsync(Uri url)
- public Task<ICssStyleSheet> FromCssAsync(Uri url, CancellationToken cancel)
- public Task<ICssStyleSheet> FromCssAsync(Stream stream)
- public Task<ICssStyleSheet> FromCssAsync(Stream stream, CancellationToken cancel)
- public IDocument FromHtml(string sourceCode)
- public IDocument FromHtml(Uri url)
- public IDocument FromHtml(Stream stream)
- public Task<IDocument> FromHtmlAsync(Uri url)
- public Task<IDocument> FromHtmlAsync(Uri url, CancellationToken cancel)
- public Task<IDocument> FromHtmlAsync(Stream stream)
- public Task<IDocument> FromHtmlAsync(Stream stream, CancellationToken cancel)
-
public sealed class DOMAttribute : Attribute
-
public interface IDependencyResolver
-
public static class LocalSettings
-
public sealed class ParseErrorEventArgs : EventArgs
-
public sealed class DomAccessorAttribute : Attribute
-
public sealed class DomDescriptionAttribute : Attribute
-
public sealed class DomHistorical : Attribute
-
public sealed class DomNameAttribute : Attribute
-
public static class Extensions
- public static T Attr<T>(this T elements, string attributeName, string attributeValue) where T : IEnumerable<IElement>
- public static TElement CreateElement<TElement>(this IDocument document) where TElement : IElement
- public static T Css<T>(this T elements, string declarations) where T : IEnumerable<IElement>
- public static ICssStyleSheet GetCss(this Uri uri, IConfiguration configuration = null)
- public static Task<ICssStyleSheet> GetCssAsync(this Uri uri, IConfiguration configuration = null)
- public static Task<ICssStyleSheet> GetCssAsync(this Uri uri, CancellationToken cancel, IConfiguration configuration = null)
- public static IDocument GetHtml(this Uri uri, IConfiguration configuration = null)
- public static Task<IDocument> GetHtmlAsync(this Uri uri, IConfiguration configuration = null)
- public static Task<IDocument> GetHtmlAsync(this Uri uri, CancellationToken cancel, IConfiguration configuration = null)
- public static T Html<T>(this T elements, string html) where T : IEnumerable<IElement>
- public static int Index<T>(this IEnumerable<T> elements, T item) where T : INode
- public static ICssStyleSheet ParseCss(this string content, IConfiguration configuration = null)
- public static IDocument ParseHtml(this string content, IConfiguration configuration = null)
- public static IHtmlCollection QueryXpath(this IDocument document, string xpath)
- public static IHtmlCollection QueryXpath(this IElement element, string xpath)
- public static IHtmlCollection QueryXpath(this INodeList nodes, string xpath)
- public static T Text<T>(this T elements, string text) where T : IEnumerable<IElement>
- public static string ToHtml(this INode element)
- public static string ToText(this INode element)
-
public struct Frequency : IEquatable<Frequency>, ICssObject
-
public interface IConfiguration
-
public struct Length : IEquatable<Length>, ICssObject
-
public struct Number : IEquatable<Number>, ICssObject
-
public struct Percent : IEquatable<Percent>, ICssObject
-
public struct Priority : IEquatable<Priority>
- public static readonly Priority Inline
- public static readonly Priority OneClass
- public static readonly Priority OneId
- public static readonly Priority OneTag
- public static readonly Priority Zero
- public byte Classes { get; }
- public byte Ids { get; }
- public byte Inlines { get; }
- public byte Tags { get; }
- public Priority(uint priority)
- public Priority(byte inlines, byte ids, byte classes, byte tags)
- public static Priority op_Addition(Priority a, Priority b)
- public static bool op_Equality(Priority a, Priority b)
- public static bool op_GreaterThan(Priority a, Priority b)
- public static bool op_GreaterThanOrEqual(Priority a, Priority b)
- public static bool op_Inequality(Priority a, Priority b)
- public static bool op_LessThan(Priority a, Priority b)
- public static bool op_LessThanOrEqual(Priority a, Priority b)
- public bool Equals(Priority other)
-
public struct Resolution : IEquatable<Resolution>, ICssObject
-
public sealed class Shadow
-
public struct Time : IEquatable<Time>, ICssObject
-
public struct TransformMatrix : IEquatable<TransformMatrix>, ICssObject
- public static readonly TransformMatrix One
- public static readonly TransformMatrix Zero
- public float M11 { get; }
- public float M12 { get; }
- public float M13 { get; }
- public float M21 { get; }
- public float M22 { get; }
- public float M23 { get; }
- public float M31 { get; }
- public float M32 { get; }
- public float M33 { get; }
- public float Tx { get; }
- public float Ty { get; }
- public float Tz { get; }
- public TransformMatrix(float m11, float m12, float m13, float m21, float m22, float m23, float m31, float m32, float m33, float tx, float ty, float tz)
- public static TransformMatrix op_Multiply(TransformMatrix a, TransformMatrix b)
- public bool Equals(TransformMatrix other)
- public string ToCss()
-
public class Url : ICssObject
AngleSharp.Css
AngleSharp.DOM
-
public sealed class Attr : Node, IAttr, INode
-
public sealed class CDATASection : CharacterData
-
public abstract class CharacterData : Node
-
public sealed class : CharacterData
-
public enum ContentEditableMode
-
public sealed class Cookie
-
public enum AdjacentPosition
-
public class Document : Node, IDocument, INode, IQueryElements, IDocumentStyle
-
public sealed class DocumentFragment : Node, IDocumentFragment, INode, IQueryElements
-
public enum DocumentPosition
-
public sealed class DocumentType : Node
-
public class DOMException : Exception
-
public sealed class DOMImplementation : IDOMImplementation
-
public class Element : Node, IElement, INode, IQueryElements
-
public sealed class Entity : Node
-
public sealed class EntityReference : Node
-
public abstract class Event : IEvent
-
public enum DocumentPositions
-
public enum DocumentReadyState
-
public sealed class DomException : Exception, IDomException
- public int Code { get; }
- public string Name { get; }
-
public sealed delegate ErrorEventListener : MulticastDelegate
- public ErrorEventListener(object object, IntPtr method)
- public virtual IAsyncResult BeginInvoke(object sender, IEvent ev, string source, int? line, int? column, DomException error, AsyncCallback callback, object object)
- public virtual void EndInvoke(IAsyncResult result)
- public virtual void Invoke(object sender, IEvent ev, string source = null, int? line = default, int? column = default, DomException error = null)
-
public sealed delegate EventListener : MulticastDelegate
-
public enum EventPhase
-
public class EventTarget : IEventTarget
-
public sealed class FormControlState
-
public interface ILabelabelElement
-
public enum FilterResult
-
public enum FilterSettings
-
public enum HorizontalAlignment
-
public interface IAttr
-
public interface ICharacterData : INode, IEventTarget, IChildNode, INonDocumentTypeChildNode
- string Data { get; set; }
- int Length { get; }
- void Append(string value)
- void Delete(int offset, int count)
- void Insert(int offset, string value)
- void Replace(int offset, int count, string value)
- string Substring(int offset, int count)
-
public interface IChildNode
-
public interface : ICharacterData, INode, IEventTarget, IChildNode, INonDocumentTypeChildNode
-
public interface IDocument : INode, IEventTarget, IParentNode, IGlobalEventHandlers, IDocumentStyle, INonElementParentNode
-
public interface IDocumentFragment : INode, IEventTarget, IParentNode, INonElementParentNode
-
public interface IDocumentStyle
-
public interface IDocumentType : INode, IEventTarget, IChildNode
-
public interface IDomException
-
public interface IElement : INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode
-
public interface IElementMap : IEnumerable<KeyValuePair<string, IElement>>, IEnumerable
-
public interface IEventTarget
-
public interface IHistory
-
public interface IHtmlAllCollection : IHtmlCollection, IEnumerable<IElement>, IEnumerable
-
public interface IHtmlCollection : IEnumerable<IElement>, IEnumerable
-
public interface IImplementation
-
public interface ILinkStyle
-
public interface ILocation : IUrlUtilities
-
public interface IMutationObserver
-
public interface IMutationObserverInit
-
public interface IMutationRecord
-
public interface INode : IEventTarget
-
public interface INodeIterator
-
public interface INodeList : IEnumerable<INode>, IEnumerable
-
public interface INonDocumentTypeChildNode
-
public interface INonElementParentNode
-
public interface IParentNode
-
public interface IProcessingInstruction : ICharacterData, INode, IEventTarget, IChildNode, INonDocumentTypeChildNode
-
public interface IRange
-
public interface ISettableTokenList : ITokenList, IEnumerable<string>, IEnumerable
- string Value { get; set; }
-
public interface IStringList : IEnumerable<string>, IEnumerable
-
public interface IStringMap : IEnumerable<KeyValuePair<string, string>>, IEnumerable
- string this[string name] { get; set; }
- void Remove(string name)
-
public interface IStyleSheet
-
public interface IStyleSheetList : IEnumerable<IStyleSheet>, IEnumerable
-
public interface IText : ICharacterData, INode, IEventTarget, IChildNode, INonDocumentTypeChildNode
-
public interface ITokenList : IEnumerable<string>, IEnumerable
- string this[int index] { get; }
- int Length { get; }
- void Add(string[] tokens)
- bool Contains(string token)
- void Remove(string[] tokens)
- bool Toggle(string token, bool force = false)
-
public interface ITreeWalker
-
public interface IUrlUtilities
-
public interface IWindow : IEventTarget
-
public sealed class Location
-
public interface IWindowEventHandlers
-
public interface IWindowProxy : IWindow, IEventTarget
-
public interface IWindowTimers
-
public class Node : INode, IEventTarget, IHtmlObject
- protected NamedNodeMap _attributes
- protected string _baseURI
- protected NodeList _children
- protected string _name
- protected string _ns
- protected Document _owner
- protected Node _parent
- protected NodeType _type
- public NamedNodeMap Attributes { get; }
- public string BaseURI { get; }
- public NodeList ChildNodes { get; }
- public Node FirstChild { get; }
- public bool HasAttributes { get; }
- public bool HasChildNodes { get; }
- public Node LastChild { get; }
- public string LocalName { get; }
- public string NamespaceURI { get; set; }
- public Node NextSibling { get; }
- public string BaseUri { get; set; }
- public bool HasChilds { get; }
- public Document OwnerDocument { get; }
- public Element ParentElement { get; }
- public Node ParentNode { get; }
- public string Prefix { get; }
- public Node PreviousSibling { get; }
- public IElement ParentElement { get; }
- protected static bool IsValidNamespaceDeclaration(string namespaceName, string namespaceURI)
- public virtual Node AppendChild(Node child)
- public virtual Node CloneNode(bool deep = true)
- public virtual DocumentPosition CompareDocumentPosition(Node otherNode)
- public virtual bool Contains(Node otherNode)
- public virtual Node InsertBefore(Node newElement, Node referenceElement)
- public virtual Node InsertChild(int index, Node child)
- public void AddEventListener(string type, EventListener callback = null, bool capture = false)
- public INode AppendChild(INode child)
- public virtual INode Clone(bool deep = true)
- public DocumentPositions CompareDocumentPosition(INode otherNode)
- public bool Contains(INode otherNode)
- public bool Dispatch(IEvent ev)
- protected bool FireSimpleEvent(string eventName, bool bubble = false, bool cancelable = false)
- protected Url HyperRef(string url)
- public INode InsertBefore(INode newElement, INode referenceElement)
- public INode InsertChild(int index, INode child)
- public virtual bool IsEqualNode(Node otherNode)
- protected string LookupNamespacePrefix(string namespaceURI, Element originalElement)
- public virtual string LookupNamespaceURI(string prefix)
- public virtual bool IsEqualNode(INode otherNode)
- protected virtual string LocateNamespace(string prefix)
- protected virtual string LocatePrefix(string namespaceUri)
- public string LookupNamespaceUri(string prefix)
- protected Node MutationMacro(Node[] nodes)
- public virtual Node Normalize()
- public virtual Node RemoveChild(Node child)
- public virtual Node ReplaceChild(Node newChild, Node oldChild)
- public void Normalize()
- public INode RemoveChild(INode child)
- public void RemoveEventListener(string type, EventListener callback = null, bool capture = false)
- public INode ReplaceChild(INode newChild, INode oldChild)
- public string ToTree(int indent = 0)
-
public sealed delegate NodeFilter : MulticastDelegate
-
public enum NodeType
-
public sealed class Notation : Node
-
public sealed class ProcessingInstruction : Node
-
public sealed class Range : IRange
-
public enum Readiness
-
public abstract class RenderingContext
-
public sealed class TextNode : CharacterData
-
public enum VerticalAlignment
-
public enum Visibility
AngleSharp.DOM.Collections
-
public abstract class BaseCollection<T> : IHTMLObject, IEnumerable<T>, IEnumerable where T : Node
-
public sealed class CSSStyleDeclaration : IEnumerable<CSSProperty>, IEnumerable
-
public sealed class DOMStringList : List<string>
-
public sealed class DOMStringMap : IEnumerable<KeyValuePair<string, string>>, IEnumerable
-
public sealed class DOMTokenList : IHTMLObject, IEnumerable<string>, IEnumerable
-
public class HTMLCollection : BaseCollection<Element>
-
public sealed class HTMLFormControlsCollection : HTMLCollection
-
public sealed class MediaList : IEnumerable<string>, IEnumerable
-
public sealed class NamedNodeMap : IHTMLObject, IEnumerable<Attr>, IEnumerable
-
public sealed class NodeList : BaseCollection<Node>
-
public sealed class StyleSheetList : IEnumerable<StyleSheet>, IEnumerable
AngleSharp.DOM.Css
-
public sealed class Counter
-
public sealed class CSSCharsetRule : CSSRule
-
public abstract class CSSConditionRule : CSSGroupingRule
-
public sealed class CSSFontFaceRule : CSSRule
-
public abstract class CSSGroupingRule : CSSRule
-
public sealed class CSSImportRule : CSSRule
-
public sealed class CSSKeyframeRule : CSSRule
-
public sealed class CSSKeyframesRule : CSSRule
-
public sealed class CSSMediaRule : CSSConditionRule
-
public sealed class CSSNamespaceRule : CSSRule
-
public sealed class : CSSRule
-
public enum AnimationDirection
-
public enum AnimationFillStyle
-
public enum BackgroundAttachment
-
public enum BackgroundRepeat
-
public enum BorderRepeat
-
public enum BoxModel
-
public enum BreakMode
-
public enum ClearMode
-
public abstract class CSSCalcValue : CSSValue
-
public sealed class CSSColorProperty : CSSProperty
-
public abstract class CSSImageValue : CSSValue
-
public sealed class CSSMedium : ICssObject, IEnumerable<MediaFeature>, IEnumerable
-
public class CSSProperty : ICssProperty, ICssObject
-
public abstract class CSSRule : ICSSObject
-
public sealed class CSSRuleList : IEnumerable<CSSRule>, IEnumerable, ICSSObject
-
public sealed class CSSStyleRule : CSSRule
-
public sealed class CSSStyleSheet : StyleSheet, ICSSObject
-
public sealed class CSSSupportsRule : CSSConditionRule
-
public sealed class CSSShapeValue : CSSValue
-
public sealed class CSSTextDecorationColorProperty : CSSProperty
-
public abstract class CSSTimingValue : CSSValue
-
public abstract class CSSTransformValue : CSSValue
-
public class CSSValue : ICssValue, ICssObject
-
public abstract class Selector : ICSSObject
-
public class StyleSheet
-
public enum UnitType
-
public sealed class CSSVerticalAlignProperty : CSSProperty
-
public enum DisplayMode
-
public enum Floating
-
public enum FontSize
-
public enum FontStretch
-
public enum FontStyle
-
public enum FontVariant
-
public interface ICssCharsetRule : ICssRule
-
public interface ICssConditionRule : ICssGroupingRule, ICssRule
-
public interface ICssCounterStyleRule : ICssRule
-
public interface ICssDocumentRule : ICssConditionRule, ICssGroupingRule, ICssRule
-
public interface ICssFontFaceRule : ICssRule
-
public interface ICssFontFeatureValuesRule : ICssRule
-
public interface ICssGroupingRule : ICssRule
-
public interface ICssImportRule : ICssRule
-
public interface ICssKeyframeRule : ICssRule
-
public interface ICssKeyframesRule : ICssRule
-
public interface ICssMarginRule : ICssRule
-
public interface ICssMediaRule : ICssConditionRule, ICssGroupingRule, ICssRule
-
public interface ICssNamespaceRule : ICssRule
-
public interface : ICssGroupingRule, ICssRule
-
public interface ICssProperty
-
public interface ICssRule
-
public interface ICssRuleList : IEnumerable<ICssRule>, IEnumerable
-
public interface ICssStyleDeclaration : IEnumerable<CSSProperty>, IEnumerable
-
public interface ICssStyleRule : ICssRule
-
public interface ICssStyleSheet : IStyleSheet
-
public interface ICssSupportsRule : ICssConditionRule, ICssGroupingRule, ICssRule
-
public interface ICssValue
-
public interface IElementCssInlineStyle
-
public interface IMediaList : IEnumerable<string>, IEnumerable
-
public interface ISelector
-
public interface IStyleUtilities
-
public enum LineStyle
-
public enum ListPosition
-
public enum ListStyle
-
public enum PlayState
-
public sealed class Point2d
-
public enum SystemCursor
-
public enum SystemFont
-
public enum TextDecorationLine
-
public enum TextDecorationStyle
-
public enum TextTransform
-
public enum UnicodeMode
-
public enum VerticalAlignment
-
public enum Whitespace
AngleSharp.DOM.Css.Media
AngleSharp.DOM.Css.Properties
AngleSharp.DOM.Events
-
public enum EventPhase
-
public interface ICompositionEvent : IUiEvent, IEvent
- string Data { get; }
- void Init(string type, bool bubbles, bool cancelable, IWindow view, string data)
-
public interface ICustomEvent : IEvent
- object Details { get; }
- void Init(string type, bool bubbles, bool cancelable, object details)
-
public interface IErrorEvent : IEvent
-
public interface IEvent
-
public interface IFocusEvent : IUiEvent, IEvent
-
public interface IInputEvent : IEvent
- string Data { get; }
- void Init(string type, bool bubbles, bool cancelable, string data)
-
public interface IKeyboardEvent : IUiEvent, IEvent
-
public interface IMessageEvent : IEvent
-
public interface IMouseEvent : IUiEvent, IEvent
- MouseButton Button { get; }
- MouseButtons Buttons { get; }
- int ClientX { get; }
- int ClientY { get; }
- bool IsAltPressed { get; }
- bool IsCtrlPressed { get; }
- bool IsMetaPressed { get; }
- bool IsShiftPressed { get; }
- int ScreenX { get; }
- int ScreenY { get; }
- IEventTarget Target { get; }
- bool GetModifierState(string key)
- void Init(string type, bool bubbles, bool cancelable, IWindow view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, MouseButton button, IEventTarget target)
-
public interface ITrackEvent : IEvent
-
public interface IUiEvent : IEvent
-
public interface IWheelEvent : IMouseEvent, IUiEvent, IEvent
- WheelMode DeltaMode { get; }
- double DeltaX { get; }
- double DeltaY { get; }
- double DeltaZ { get; }
- void Init(string type, bool bubbles, bool cancelable, IWindow view, int detail, int screenX, int screenY, int clientX, int clientY, MouseButton button, IEventTarget target, string modifiersList, double deltaX, double deltaY, double deltaZ, WheelMode deltaMode)
-
public enum KeyboardLocation
-
public enum MouseButton
-
public enum MouseButtons
-
public enum WheelMode
AngleSharp.DOM.Html
-
public enum Alignment
-
public enum
-
public enum HorizontalAlignment
-
public sealed class HTMLAnchorElement : HTMLFormattingElement
-
public sealed class HTMLAppletElement : HTMLElement
-
public sealed class HTMLAreaElement : HTMLElement
-
public sealed class HTMLAudioElement : HTMLMediaElement
-
public sealed class HTMLBaseElement : HTMLElement
-
public sealed class HTMLBaseFontElement : HTMLElement
-
public sealed class HTMLBodyElement : HTMLElement
-
public sealed class HTMLBRElement : HTMLElement
-
public sealed class HTMLButtonElement : HTMLFormControlElement
-
public sealed class HTMLCanvasElement : HTMLElement
-
public sealed class HTMLDataListElement : HTMLElement
-
public sealed class HTMLDetailsElement : HTMLElement
-
public sealed class HTMLDialogElement : HTMLElement
-
public sealed class HTMLDirectoryElement : HTMLElement
-
public sealed class HTMLDivElement : HTMLElement
-
public sealed class HTMLDListElement : HTMLElement
-
public sealed class HTMLDocument : Document, IHTMLDocument, IDocument, INode, IQueryElements
-
public class HTMLElement : Element
-
public sealed class HTMLEmbedElement : HTMLElement
-
public sealed class HTMLFieldSetElement : HTMLFormControlElement
-
public sealed class HTMLFontElement : HTMLFormattingElement
-
public class HTMLFormattingElement : HTMLElement
-
public abstract class HTMLFormControlElement : HTMLElement, ILabelabelElement
-
public abstract class HTMLFormControlElementWithState : HTMLFormControlElement
-
public sealed class HTMLFormElement : HTMLElement
-
public sealed class HTMLFrameElement : HTMLFrameElementBase
-
public abstract class HTMLFrameElementBase : HTMLFrameOwnerElement
-
public abstract class HTMLFrameOwnerElement : HTMLElement
-
public sealed class HTMLFrameSetElement : HTMLElement
-
public sealed class HTMLHeadElement : HTMLElement
-
public sealed class HTMLHeadingElement : HTMLElement
-
public sealed class HTMLHRElement : HTMLElement
-
public sealed class HTMLHtmlElement : HTMLElement
-
public sealed class HTMLIFrameElement : HTMLFrameElementBase
-
public sealed class HTMLImageElement : HTMLElement
-
public sealed class HTMLInputElement : HTMLTextFormControlElement
-
public sealed class HTMLIsIndexElement : HTMLElement
-
public sealed class HTMLKeygenElement : HTMLFormControlElementWithState, IValidation
-
public sealed class HTMLLabelElement : HTMLElement
-
public sealed class HTMLLegendElement : HTMLElement
-
public sealed class HTMLLIElement : HTMLElement
-
public sealed class HTMLLinkElement : HTMLElement, IStyleSheet
-
public sealed class HTMLMapElement : HTMLElement
-
public sealed class HTMLMarqueeElement : HTMLElement
-
public abstract class HTMLMediaElement : HTMLElement
-
public sealed class : HTMLElement
-
public sealed class : HTMLElement
-
public sealed class HTMLMetaElement : HTMLElement
-
public sealed class HTMLModElement : HTMLElement
-
public sealed class HTMLObjectElement : HTMLElement
-
public sealed class HTMLOListElement : HTMLElement
-
public sealed class HTMLOptGroupElement : HTMLElement
-
public sealed class HTMLOptionElement : HTMLElement
-
public sealed class HTMLOutputElement : HTMLFormControlElement
-
public sealed class HTMLParagraphElement : HTMLElement
-
public sealed class HTMLParamElement : HTMLElement
-
public sealed class HTMLPreElement : HTMLElement
-
public sealed class HTMLProgressElement : HTMLElement, ILabelabelElement
-
public sealed class HTMLQuoteElement : HTMLElement
-
public sealed class HTMLScriptElement : HTMLElement
-
public sealed class HTMLSelectElement : HTMLFormControlElementWithState
-
public sealed class HTMLSourceElement : HTMLElement
-
public sealed class HTMLSpanElement : HTMLElement
-
public sealed class HTMLStyleElement : HTMLElement, IStyleSheet
-
public sealed class HTMLTableCaptionElement : HTMLElement
-
public sealed class HTMLTableCellElement : HTMLElement
-
public sealed class HTMLTableColElement : HTMLElement
-
public sealed class HTMLTableElement : HTMLElement
-
public sealed class HTMLTableRowElement : HTMLElement
-
public sealed class HTMLTableSectionElement : HTMLElement
-
public sealed class HTMLTextAreaElement : HTMLTextFormControlElement
-
public abstract class HTMLTextFormControlElement : HTMLFormControlElementWithState
-
public sealed class HTMLTitleElement : HTMLElement
-
public sealed class HTMLTrackElement : HTMLElement
-
public sealed class HTMLUListElement : HTMLElement
-
public sealed class HTMLUnknownElement : HTMLElement
-
public sealed class HTMLVideoElement : HTMLMediaElement
-
public enum HttpMethod
-
public enum PowerState
-
public enum QuirksMode
-
public sealed class ValidityState : IValidityState
-
public enum VerticalAlignment
-
public interface IGlobalEventHandlers
-
public interface IHtmlAnchorElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IUrlUtilities
-
public interface IHtmlAreaElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IUrlUtilities
-
public interface IHtmlAudioElement : IHtmlMediaElement, IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IMediaController
-
public interface IHtmlBaseElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
- string Href { get; set; }
- string Target { get; set; }
-
public interface IHtmlBodyElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IWindowEventHandlers
-
public interface IHtmlBreakRowElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlButtonElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlCanvasElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlCommandElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlDataListElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlDetailsElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlDialogElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlDivElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlElement : IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlEmbedElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlFieldSetElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlFormControlsCollection : IHtmlCollection, IEnumerable<IElement>, IEnumerable
-
public interface IHtmlFormElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlHeadElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlHeadingElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlHrElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlHtmlElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlImageElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlInputElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlKeygenElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlLabelElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlLegendElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlLinkElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, ILinkStyle
-
public interface IHtmlListItemElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlMapElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlMediaElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IMediaController
-
public interface : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
- string { get; set; }
- string { get; set; }
-
public interface : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
- IHtmlElement Command { get; }
- string { get; set; }
- bool { get; set; }
- bool { get; set; }
- bool { get; set; }
- string { get; set; }
- string { get; set; }
- string { get; set; }
-
public interface IHtmlMetaElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlMeterElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlModElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlObjectElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlOptionElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlOptionsCollection : IHtmlCollection, IEnumerable<IElement>, IEnumerable
-
public interface IHtmlOptionsGroupElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlOrderedListElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlOutputElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlParagraphElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlParamElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
- string Name { get; set; }
- string Value { get; set; }
-
public interface IHtmlPreElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlProgressElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlQuoteElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlScriptElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlSelectElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlSourceElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
- string Media { get; set; }
- string Source { get; set; }
- string Type { get; set; }
-
public interface IHtmlSpanElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlStyleElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, ILinkStyle
-
public interface IHtmlTableCaptionElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTableCellElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTableColumnElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTableDataCellElement : IHtmlTableCellElement, IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTableElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface : IHtmlTableCellElement, IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTableRowElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTableSectionElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTemplateElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTextAreaElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlTimeElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTitleElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
- string Text { get; set; }
-
public interface IHtmlTrackElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlUnknownElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlUnorderedListElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlVideoElement : IHtmlMediaElement, IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IMediaController
-
public interface ILabelabelElement
-
public interface IValidation
-
public interface IValidityState
-
public enum TrackReadyState
AngleSharp.DOM.Io
AngleSharp.DOM.Mathml
AngleSharp.DOM.Media
AngleSharp.DOM.Navigator
AngleSharp.DOM.Svg
-
public sealed class SVGElement : Element
-
public interface ISvgCircleElement : ISvgElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface ISvgDescriptionElement : ISvgElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface ISvgElement : IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface ISvgForeignObjectElement : ISvgElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface ISvgSvgElement : ISvgElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface ISvgTitleElement : ISvgElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
AngleSharp.DOM.Xml
AngleSharp.Html
AngleSharp.Infrastructure
AngleSharp.Network
AngleSharp.Parser
AngleSharp.Parser.Css
AngleSharp.Parser.Html
AngleSharp.Tools
AngleSharp.Xml