API Diff between 0.5.0 and 0.2.8
867 Additions
116 Removals
AngleSharp
-
public class Configuration : IConfiguration
-
public class DependencyResolver
-
public sealed class DocumentBuilder
- 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 static CSSStyleSheet Css(string sourceCode, IConfiguration configuration = null)
- public static CSSStyleSheet Css(Uri url, IConfiguration configuration = null)
- public static CSSStyleSheet Css(Stream stream, IConfiguration configuration = null)
- public static Task<CSSStyleSheet> CssAsync(Uri url, IConfiguration configuration = null)
- public static Task<CSSStyleSheet> CssAsync(Uri url, CancellationToken cancel, IConfiguration configuration = null)
- public static HTMLDocument Html(string sourceCode, IConfiguration configuration = null)
- public static HTMLDocument Html(Uri url, IConfiguration configuration = null)
- public static HTMLDocument Html(Stream stream, IConfiguration configuration = null)
- public static Task<HTMLDocument> HtmlAsync(Uri url, IConfiguration configuration = null)
- public static Task<HTMLDocument> HtmlAsync(Uri url, CancellationToken cancel, IConfiguration configuration = null)
- public static NodeList HtmlFragment(string sourceCode, Node context = null, IConfiguration configuration = null)
-
public static class LocalSettings
-
public sealed class ParseErrorEventArgs : EventArgs
-
public static class Extensions
-
public enum HttpMethod
-
public interface IConfiguration
-
public interface IDependencyResolver
-
public interface IInfo
-
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()
AngleSharp.Css
AngleSharp.DOM
-
public enum AdjacentPosition
-
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 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 sealed class Cookie
-
public class Document : Node, IDocument, INode, IQueryElements, IDocumentStyle
-
public sealed class DocumentType : Node
-
public sealed class DOMException : Exception
-
public class Element : Node, IElement, INode, IQueryElements
-
public sealed class FileEntry
-
public enum HorizontalAlignment
-
public interface ILabelabelElement
-
public struct Length : IEquatable<Length>, ICssObject
-
public sealed class Location : ICssObject
-
public class Node : INode, IHtmlObject
- public virtual string ToText()
-
public sealed class Notation : Node
-
public struct Percent : IEquatable<Percent>, ICssObject
-
public enum QuirksMode
-
public class StyleSheet
-
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 : IEnumerable<string>, IEnumerable
-
public sealed class DOMTokenList : IHtmlObject, IEnumerable<string>, IEnumerable
-
public class FileList : ICollection<FileEntry>, IEnumerable<FileEntry>, IEnumerable
-
public sealed class HTMLCollection : HTMLCollection<Element>
- public object this[string id] { get; }
- public virtual object NamedItem(string id)
-
public class HTMLCollection<T> : IEnumerable<T>, IEnumerable where T : Element
-
public sealed class NamedNodeMap : IHtmlObject, IEnumerable<Attr>, IEnumerable
-
public sealed class StyleSheetList : IEnumerable<StyleSheet>, IEnumerable
AngleSharp.DOM.Css
AngleSharp.DOM.Css.Properties
AngleSharp.DOM.Html
-
public enum HorizontalAlignment
-
public sealed class HTMLAnchorElement : HTMLElement, IFormatting
- public string AccessKey { get; set; }
- public string Charset { get; set; }
- public string Download { get; set; }
- public string Hash { get; set; }
- public string Host { get; set; }
- public string HostName { get; set; }
- public string Hreflang { get; set; }
- public string Media { get; set; }
- public string Name { get; set; }
- public string PathName { get; set; }
- public string Port { get; set; }
- public string Protocol { get; set; }
- public string Rel { get; set; }
- public DOMTokenList RelList { get; }
- public string Search { get; set; }
- public string Target { get; set; }
- public string Text { get; set; }
- public string Type { get; set; }
-
public sealed class HTMLButtonElement : HTMLFormControlElement
-
public sealed class HTMLDataListElement : HTMLElement
-
public sealed class HTMLDocument : Document, IHTMLDocument, IDocument, INode, IQueryElements
-
public class HTMLElement : Element
-
public sealed class HTMLFieldSetElement : HTMLFormControlElement
-
public class HTMLFormattingElement : HTMLElement
-
public abstract class HTMLFormControlElement : HTMLElement, ILabelabelElement, IValidation
-
public abstract class HTMLFormControlElementWithState : HTMLFormControlElement
-
public sealed class HTMLFormElement : HTMLElement
-
public sealed class HTMLInputElement : HTMLTextFormControlElement
-
public sealed class HTMLKeygenElement : HTMLFormControlElementWithState
-
public sealed class HTMLLabelElement : HTMLElement
-
public sealed class HTMLLIElement : HTMLElement, IImpliedEnd, IImplClosed
-
public sealed class HTMLLinkElement : HTMLElement, IStyleSheet
-
public sealed class HTMLObjectElement : HTMLFormControlElement, IScopeElement
-
public sealed class HTMLOptionElement : HTMLElement, ISelectScopeElement, IImpliedEnd, IImplClosed
- public string Name { get; set; }
-
public sealed class HTMLOutputElement : HTMLFormControlElement
-
public sealed class HTMLParagraphElement : HTMLElement, IImpliedEnd, IImplClosed
-
public sealed class HTMLSelectElement : HTMLFormControlElementWithState
-
public sealed class HTMLStyleElement : HTMLElement, IStyleSheet
-
public sealed class HTMLTableCellElement : HTMLElement, IScopeElement, IImplClosed
-
public sealed class HTMLTableColElement : HTMLElement
-
public sealed class HTMLTableElement : HTMLElement, IScopeElement, ITableScopeElement, ITableSectionScopeElement
-
public sealed class HTMLTableRowElement : HTMLElement, IImplClosed
-
public sealed class HTMLTableSectionElement : HTMLElement, IImplClosed, ITableSectionScopeElement
-
public sealed class HTMLTemplateElement : HTMLElement, IScopeElement, ITableScopeElement, ITableSectionScopeElement
-
public sealed class HTMLTextAreaElement : HTMLTextFormControlElement
-
public abstract class HTMLTextFormControlElement : HTMLFormControlElementWithState
-
public enum HttpMethod
-
public interface ILabelabelElement
-
public enum QuirksMode
-
public enum VerticalAlignment
AngleSharp.DOM.Mathml
AngleSharp.DOM.Svg
AngleSharp.DOM.Xml
AngleSharp.Html
AngleSharp.Network
AngleSharp.Parser
AngleSharp.Parser.Css
-
public sealed class CssParser : IParser
- public bool IsAsync { get; }
- public bool IsQuirksMode { get; }
- public CSSStyleSheet Result { get; }
- public event EventHandler<ParseErrorEventArgs> ParseError
- public CssParser(string source, IConfiguration configuration = null)
- public CssParser(Stream stream, IConfiguration configuration = null)
- public CssParser(CSSStyleSheet stylesheet, string source)
- public CssParser(CSSStyleSheet stylesheet, Stream stream)
- public static CSSProperty ParseDeclaration(string declarations, IConfiguration configuration = null)
- public static CSSStyleDeclaration ParseDeclarations(string declarations, IConfiguration configuration = null)
- public static CSSRule ParseRule(string rule, IConfiguration configuration = null)
- public static Selector ParseSelector(string selector, IConfiguration configuration = null)
- public static CSSStyleSheet ParseStyleSheet(string stylesheet, IConfiguration configuration = null)
- public static CSSValue ParseValue(string source, IConfiguration configuration = null)
- public void Parse()
- public Task ParseAsync()
AngleSharp.Parser.Html
AngleSharp.Xml