API Diff between 0.6.0 and 0.8.1
2435 Additions
523 Removals
AngleSharp
-
public static class ApiExtensions
-
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 class ContextExtensions
-
public sealed class DocumentBuilder
- 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 static ICssStyleSheet Css(string sourceCode, IConfiguration configuration = null)
- public static ICssStyleSheet Css(Uri url, IConfiguration configuration = null)
- public static ICssStyleSheet Css(Stream stream, IConfiguration configuration = 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 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 INodeList HtmlFragment(string sourceCode, INode context = null, IConfiguration configuration = null)
- public ICssStyleSheet FromCss(string sourceCode)
- public ICssStyleSheet FromCss(Uri url)
- public Task<ICssStyleSheet> FromCssAsync(Uri url)
- public Task<ICssStyleSheet> FromCssAsync(Uri url, CancellationToken cancel)
- public IDocument FromHtml(string sourceCode)
- public IDocument FromHtml(Uri url)
- public Task<IDocument> FromHtmlAsync(Uri url)
- public Task<IDocument> FromHtmlAsync(Uri url, CancellationToken cancel)
-
public interface IBrowsingContext
-
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 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 : IElement
- 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 IElement element)
- public static string ToHtml(this IDocumentType doctype)
- public static string ToText(this IElement element)
-
public struct Frequency : IEquatable<Frequency>, ICssObject
-
public interface IConfiguration
-
public struct Length : IEquatable<Length>, ICssObject
-
public struct Number : IEquatable<Number>, ICssObject
-
public struct TextPosition : IEquatable<TextPosition>, IComparable<TextPosition>
-
public struct : IEquatable<TextRange>, IComparable<TextRange>
-
public class Url : IEquatable<Url>
-
public struct Percent : IEquatable<Percent>, ICssObject
-
public struct Priority : IEquatable<Priority>
- public static readonly Priority Custom
- public static readonly Priority Important
- 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()
AngleSharp.Attributes
AngleSharp.Css
AngleSharp.Css.Values
AngleSharp.DOM
-
public enum AdjacentPosition
-
public enum DirectionMode
-
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(IEvent ev, string source, int? line, int? column, DomException error, AsyncCallback callback, object object)
- public virtual void EndInvoke(IAsyncResult result)
- public virtual void Invoke(IEvent ev, string source = null, int? line = default, int? column = default, DomException error = null)
-
public sealed delegate EventListener : MulticastDelegate
-
public enum EventPhase
-
public enum FilterResult
-
public enum FilterSettings
-
public enum HorizontalAlignment
-
public interface IAttr
-
public interface ICharacterData : INode, IEventTarget, IChildNode
- 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
-
public interface ICustomEvent<T> : IEvent
- T Details { get; }
- void Init(string type, bool bubbles, bool cancelable, T details)
-
public interface IDocument : INode, IEventTarget, IParentNode, IGlobalEventHandlers, IDocumentStyle
-
public interface IDocumentFragment : INode, IEventTarget, IParentNode
-
public interface IDocumentStyle
-
public interface IDocumentType : INode, IEventTarget, IChildNode
-
public interface IDomException
-
public interface IElement : INode, IEventTarget, IParentNode, IChildNode
-
public interface IElementMap : IEnumerable<KeyValuePair<string, IElement>>, IEnumerable
-
public interface IEvent
-
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 INode : IEventTarget
-
public interface INodeIterator
-
public interface INodeList : IEnumerable<INode>, IEnumerable
-
public interface IParentNode
-
public interface IProcessingInstruction : ICharacterData, INode, IEventTarget, IChildNode
-
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
-
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 interface IWindowEventHandlers
-
public interface IWindowProxy : IWindow, IEventTarget
-
public class Node : INode, IEventTarget, IHtmlObject
- protected string _name
- protected NodeType _type
- public string BaseUri { get; set; }
- public INode FirstChild { get; }
- public bool HasChilds { get; }
- public INode LastChild { get; }
- public INode NextSibling { get; }
- public string NodeName { get; }
- public NodeType NodeType { get; }
- public virtual string NodeValue { get; set; }
- public IElement ParentElement { get; }
- public INode PreviousSibling { get; }
- public virtual string TextContent { get; set; }
- protected static void CopyProperties(Node source, Node target, bool deep)
- protected static bool IsValidNamespaceDeclaration(string namespaceName, string namespaceUri)
- public void AddEventListener(string type, EventListener callback = null, bool capture = false)
- public virtual INode AppendChild(INode child)
- public virtual INode Clone(bool deep = true)
- public virtual DocumentPositions CompareDocumentPosition(INode otherNode)
- public virtual bool Contains(INode otherNode)
- protected INode DefaultAppendChild(INode child)
- protected INode DefaultInsertBefore(INode newElement, INode referenceElement)
- protected INode DefaultInsertChild(int index, INode child)
- protected INode DefaultRemoveChild(INode child)
- protected INode DefaultReplaceChild(INode newChild, INode oldChild)
- public bool Dispatch(IEvent ev)
- protected bool FireSimpleEvent(string eventName, bool bubble = false, bool cancelable = false)
- protected string HyperRef(string url)
- public virtual INode InsertBefore(INode newElement, INode referenceElement)
- public virtual INode InsertChild(int index, INode child)
- public virtual bool IsDefaultNamespace(string namespaceURI)
- public virtual bool IsEqualNode(INode otherNode)
- public virtual string LookupNamespaceUri(string prefix)
- public virtual string LookupPrefix(string namespaceURI)
- protected INode MutationMacro(INode[] nodes)
- public virtual void Normalize()
- public virtual INode RemoveChild(INode child)
- public void RemoveEventListener(string type, EventListener callback = null, bool capture = false)
- public virtual INode ReplaceChild(INode newChild, INode oldChild)
- public virtual string ToHtml()
- public string ToTree(int indent = 0)
-
public sealed delegate NodeFilter : MulticastDelegate
-
public enum NodeType
-
public enum RangePosition
-
public enum RangeType
-
public sealed delegate UnloadEventListener : MulticastDelegate
-
public enum VerticalAlignment
-
public enum Visibility
AngleSharp.DOM.Css
-
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 : ICssObject
-
public enum CssRuleType
-
public sealed class CSSShapeValue : CSSValue
-
public sealed class CSSStyleDeclaration : IEnumerable<CSSProperty>, IEnumerable
-
public sealed class CSSTextDecorationColorProperty : CSSProperty
-
public abstract class CSSTimingValue : CSSValue
-
public abstract class CSSTransformValue : CSSValue
-
public class CSSValue : ICssObject
-
public enum CssValueType
-
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 ICssRule
-
public interface ICssRuleList : IEnumerable<ICssRule>, IEnumerable
-
public interface ICssStyleRule : ICssRule
-
public interface ICssStyleSheet : IStyleSheet
-
public interface ICssSupportsRule : ICssConditionRule, ICssGroupingRule, ICssRule
-
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.Html
-
public interface IGlobalEventHandlers
-
public interface IHtmlAnchorElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle, IUrlUtilities
-
public interface IHtmlAreaElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle, IUrlUtilities
-
public interface IHtmlAudioElement : IHtmlMediaElement, IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle, IMediaController
-
public interface IHtmlBaseElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
- string Href { get; set; }
- string Target { get; set; }
-
public interface IHtmlBodyElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle, IWindowEventHandlers
-
public interface IHtmlBreakRowElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlButtonElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlCanvasElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlCommandElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlDataListElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlDetailsElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlDialogElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlDivElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlElement : IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlEmbedElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlFieldSetElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlFormControlsCollection : IHtmlCollection, IEnumerable<IElement>, IEnumerable
-
public interface IHtmlFormElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlHeadElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlHeadingElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlHrElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlHtmlElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlImageElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlInputElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlKeygenElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlLabelElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlLegendElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlLinkElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle, ILinkStyle
-
public interface IHtmlListItemElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlMapElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlMediaElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle, IMediaController
-
public interface : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
- string { get; set; }
- string { get; set; }
-
public interface : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, 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, IElementCssInlineStyle
-
public interface IHtmlMeterElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlModElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlObjectElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlOptionElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlOptionsCollection : IHtmlCollection, IEnumerable<IElement>, IEnumerable
-
public interface IHtmlOptionsGroupElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlOrderedListElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlOutputElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlParagraphElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlParamElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
- string Name { get; set; }
- string Value { get; set; }
-
public interface IHtmlPreElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlProgressElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlQuoteElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlScriptElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlSelectElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlSourceElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
- string Media { get; set; }
- string Source { get; set; }
- string Type { get; set; }
-
public interface IHtmlSpanElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlStyleElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle, ILinkStyle
-
public interface IHtmlTableCaptionElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlTableCellElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlTableColumnElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlTableDataCellElement : IHtmlTableCellElement, IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlTableElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface : IHtmlTableCellElement, IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlTableRowElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlTableSectionElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlTemplateElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlTextAreaElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlTimeElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlTitleElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
- string Text { get; set; }
-
public interface IHtmlTrackElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlUnknownElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlUnorderedListElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface IHtmlVideoElement : IHtmlMediaElement, IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle, IMediaController
-
public interface ILabelabelElement
-
public interface IValidation
-
public interface IValidityState
-
public enum TrackReadyState
AngleSharp.DOM.Io
AngleSharp.DOM.Media
AngleSharp.DOM.Navigator
AngleSharp.DOM.Svg
-
public interface ISvgCircleElement : ISvgElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface ISvgDescriptionElement : ISvgElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface ISvgElement : IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface ISvgForeignObjectElement : ISvgElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface ISvgSvgElement : ISvgElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
-
public interface ISvgTitleElement : ISvgElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle
AngleSharp.DOM.Xml
AngleSharp.Dom
-
public enum AdjacentPosition
-
public enum CacheStatus
-
public enum
-
public enum DirectionMode
-
public enum DocumentPositions
-
public enum DocumentReadyState
-
public sealed delegate DomEventHandler : MulticastDelegate
-
public sealed class DomException : Exception, IDomException
-
public abstract class EventTarget : IEventTarget
-
public enum FilterResult
-
public enum FilterSettings
-
public enum HorizontalAlignment
-
public interface IApplicationCache : IEventTarget
-
public interface IAttr
-
public interface ICharacterData : INode, IEventTarget, IChildNode, INonDocumentTypeChildNode
-
public interface IChildNode
-
public interface : ICharacterData, INode, IEventTarget, IChildNode, INonDocumentTypeChildNode
-
public interface IDocument : INode, IEventTarget, IParentNode, IGlobalEventHandlers, IDocumentStyle, INonElementParentNode, IDisposable
-
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 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 IPseudoElement : IStyleUtilities
-
public interface IRange
-
public interface IScriptEngine
-
public interface ISettableTokenList : ITokenList, IEnumerable<string>, IEnumerable
-
public interface IStringList : IEnumerable<string>, IEnumerable
-
public interface IStringMap : IEnumerable<KeyValuePair<string, string>>, IEnumerable
-
public interface IStyleEngine
-
public interface IStyleSheet
-
public interface IStyleSheetList : IEnumerable<IStyleSheet>, IEnumerable
-
public interface IText : ICharacterData, INode, IEventTarget, IChildNode, INonDocumentTypeChildNode
-
public interface ITokenList : IEnumerable<string>, IEnumerable
-
public interface ITreeWalker
-
public interface IUrlUtilities
-
public interface IWindow : IEventTarget, IGlobalEventHandlers, IWindowEventHandlers, IWindowTimers
-
public interface IWindowTimers
-
public sealed delegate MutationCallback : MulticastDelegate
-
public sealed class MutationObserver
-
public sealed class MutationObserverInit
-
public sealed delegate NodeFilter : MulticastDelegate
-
public enum NodeType
-
public enum RangePosition
-
public enum RangeType
-
public enum Sandboxes
-
public sealed class ScriptOptions
-
public sealed class StyleOptions
-
public enum VerticalAlignment
-
public enum Visibility
AngleSharp.Dom.Css
-
public struct Angle : IEquatable<Angle>, IComparable<Angle>, IFormattable, ICssValue
-
public enum AnimationDirection
-
public enum AnimationFillStyle
-
public enum BackgroundAttachment
-
public enum BackgroundRepeat
-
public enum BlendMode
-
public enum BorderRepeat
-
public enum BoxModel
-
public enum BreakMode
-
public enum ClearMode
-
public struct Color : IEquatable<Color>, IComparable<Color>, IFormattable, ICssValue
-
public enum CssRuleType
-
public class CssStyleEngine : IStyleEngine
-
public enum CssValueType
-
public enum DisplayMode
-
public enum Floating
-
public enum FontSize
-
public enum FontStretch
-
public enum FontStyle
-
public enum FontVariant
-
public struct Frequency : IEquatable<Frequency>, IComparable<Frequency>, IFormattable, ICssValue
-
public enum HoverAbility
-
public interface ICssAnimationDelayProperty : ICssProperty
-
public interface ICssAnimationDirectionProperty : ICssProperty
-
public interface ICssAnimationDurationProperty : ICssProperty
-
public interface ICssAnimationFillModeProperty : ICssProperty
-
public interface ICssAnimationIterationCountProperty : ICssProperty
-
public interface ICssAnimationNameProperty : ICssProperty
-
public interface ICssAnimationPlayStateProperty : ICssProperty
-
public interface ICssAnimationProperty : ICssProperty, ICssAnimationDelayProperty, ICssAnimationDirectionProperty, ICssAnimationDurationProperty, ICssAnimationFillModeProperty, ICssAnimationIterationCountProperty, ICssAnimationNameProperty, ICssAnimationTimingFunctionProperty, ICssAnimationPlayStateProperty
-
public interface ICssAnimationTimingFunctionProperty : ICssProperty
-
public interface ICssBackfaceVisibilityProperty : ICssProperty
-
public interface ICssBackgroundAttachmentProperty : ICssProperty
-
public interface ICssBackgroundClipProperty : ICssProperty
-
public interface ICssBackgroundColorProperty : ICssProperty
-
public interface ICssBackgroundImageProperty : ICssProperty
-
public interface ICssBackgroundOriginProperty : ICssProperty
-
public interface ICssBackgroundPositionProperty : ICssProperty
-
public interface ICssBackgroundProperty : ICssProperty, ICssBackgroundAttachmentProperty, ICssBackgroundClipProperty, ICssBackgroundColorProperty, ICssBackgroundImageProperty, ICssBackgroundOriginProperty, ICssBackgroundPositionProperty, ICssBackgroundRepeatProperty, ICssBackgroundSizeProperty
-
public interface ICssBackgroundRepeatProperty : ICssProperty
-
public interface ICssBackgroundSizeProperty : ICssProperty
-
public interface ICssBorderBottomLeftRadiusProperty : ICssProperty
-
public interface ICssBorderBottomRightRadiusProperty : ICssProperty
-
public interface ICssBorderCollapseProperty : ICssProperty
-
public interface ICssBorderColorProperty : ICssProperty
-
public interface ICssBorderColorsProperty : ICssProperty
-
public interface ICssBorderImageOutsetProperty : ICssProperty
-
public interface ICssBorderImageProperty : ICssProperty, ICssBorderImageWidthProperty, ICssBorderImageSourceProperty, ICssBorderImageSliceProperty, ICssBorderImageRepeatProperty, ICssBorderImageOutsetProperty
-
public interface ICssBorderImageRepeatProperty : ICssProperty
-
public interface ICssBorderImageSliceProperty : ICssProperty
-
public interface ICssBorderImageSourceProperty : ICssProperty
-
public interface ICssBorderImageWidthProperty : ICssProperty
-
public interface ICssBorderProperty : ICssProperty, ICssBorderWidthProperty, ICssBorderStyleProperty, ICssBorderColorProperty
-
public interface ICssBorderRadiusProperty : ICssProperty, ICssBorderBottomLeftRadiusProperty, ICssBorderBottomRightRadiusProperty, ICssBorderTopLeftRadiusProperty, ICssBorderTopRightRadiusProperty
-
public interface ICssBorderSpacingProperty : ICssProperty
-
public interface ICssBorderStyleProperty : ICssProperty
-
public interface ICssBorderStylesProperty : ICssProperty
-
public interface ICssBorderTopLeftRadiusProperty : ICssProperty
-
public interface ICssBorderTopRightRadiusProperty : ICssProperty
-
public interface ICssBorderWidthProperty : ICssProperty
-
public interface ICssBorderWidthsProperty : ICssProperty
-
public interface ICssBottomProperty : ICssProperty
-
public interface ICssBoxDecorationBreak : ICssProperty
-
public interface ICssBoxShadowProperty : ICssProperty
-
public interface ICssBreakAfterProperty : ICssProperty
-
public interface ICssBreakBeforeProperty : ICssProperty
-
public interface ICssBreakInsideProperty : ICssProperty
-
public interface ICssCaptionSideProperty : ICssProperty
-
public interface ICssCharsetRule : ICssRule
-
public interface ICssClearProperty : ICssProperty
-
public interface ICssClipProperty : ICssProperty
-
public interface ICssColorProperty : ICssProperty
-
public interface ICssColumnCountProperty : ICssProperty
-
public interface ICssColumnFillProperty : ICssProperty
-
public interface ICssColumnGapProperty : ICssProperty
-
public interface ICssColumnRuleColorProperty : ICssProperty
-
public interface ICssColumnRuleProperty : ICssProperty, ICssColumnRuleColorProperty, ICssColumnRuleStyleProperty, ICssColumnRuleWidthProperty
-
public interface ICssColumnRuleStyleProperty : ICssProperty
-
public interface ICssColumnRuleWidthProperty : ICssProperty
-
public interface ICssColumnSpanProperty : ICssProperty
-
public interface ICssColumnsProperty : ICssProperty, ICssColumnWidthProperty, ICssColumnCountProperty
-
public interface ICssColumnWidthProperty : ICssProperty
-
public interface ICssConditionRule : ICssGroupingRule, ICssRule
-
public interface ICssContentProperty : ICssProperty
-
public interface ICssCounterIncrementProperty : ICssProperty
-
public interface ICssCounterResetProperty : ICssProperty
-
public interface ICssCounterStyleRule : ICssRule
-
public interface ICssCursorProperty : ICssProperty
-
public interface ICssDirectionProperty : ICssProperty
-
public interface ICssDisplayProperty : ICssProperty
-
public interface ICssDocumentRule : ICssConditionRule, ICssGroupingRule, ICssRule
-
public interface ICssEmptyCellsProperty : ICssProperty
-
public interface ICssFloatProperty : ICssProperty
-
public interface ICssFontFaceRule : ICssRule
-
public interface ICssFontFamilyProperty : ICssProperty
-
public interface ICssFontFeatureValuesRule : ICssRule
-
public interface ICssFontProperty : ICssProperty, ICssFontStyleProperty, ICssFontVariantProperty, ICssFontWeightProperty, ICssFontStretchProperty, ICssFontSizeProperty, ICssFontFamilyProperty, ICssLineHeightProperty
-
public interface ICssFontSizeProperty : ICssProperty
-
public interface ICssFontStretchProperty : ICssProperty
-
public interface ICssFontStyleProperty : ICssProperty
-
public interface ICssFontVariantProperty : ICssProperty
-
public interface ICssFontWeightProperty : ICssProperty
-
public interface ICssGroupingRule : ICssRule
-
public interface ICssHeightProperty : ICssProperty
-
public interface ICssImportRule : ICssRule
-
public interface ICssKeyframeRule : ICssRule
-
public interface ICssKeyframesRule : ICssRule
-
public interface ICssLeftProperty : ICssProperty
-
public interface ICssLetterSpacingProperty : ICssProperty
-
public interface ICssLineHeightProperty : ICssProperty
-
public interface ICssListStyleImageProperty : ICssProperty
-
public interface ICssListStylePositionProperty : ICssProperty
-
public interface ICssListStyleProperty : ICssProperty, ICssListStyleImageProperty, ICssListStylePositionProperty, ICssListStyleTypeProperty
-
public interface ICssListStyleTypeProperty : ICssProperty
-
public interface ICssMarginBottomProperty : ICssProperty
-
public interface ICssMarginLeftProperty : ICssProperty
-
public interface ICssMarginProperty : ICssProperty, ICssMarginBottomProperty, ICssMarginLeftProperty, ICssMarginRightProperty, ICssMarginTopProperty
-
public interface ICssMarginRightProperty : ICssProperty
-
public interface ICssMarginRule : ICssRule
-
public interface ICssMarginTopProperty : ICssProperty
-
public interface ICssMaxHeightProperty : ICssProperty
-
public interface ICssMaxWidthProperty : ICssProperty
-
public interface ICssMediaRule : ICssConditionRule, ICssGroupingRule, ICssRule
-
public interface ICssMinHeightProperty : ICssProperty
-
public interface ICssMinWidthProperty : ICssProperty
-
public interface ICssNamespaceRule : ICssRule
-
public interface ICssOpacityProperty : ICssProperty
-
public interface ICssOrphansProperty : ICssProperty
-
public interface ICssOutlineColorProperty : ICssProperty
-
public interface ICssOutlineProperty : ICssProperty, ICssOutlineColorProperty, ICssOutlineStyleProperty, ICssOutlineWidthProperty
-
public interface ICssOutlineStyleProperty : ICssProperty
-
public interface ICssOutlineWidthProperty : ICssProperty
-
public interface ICssOverflowProperty : ICssProperty
-
public interface ICssPaddingBottomProperty : ICssProperty
-
public interface ICssPaddingLeftProperty : ICssProperty
-
public interface ICssPaddingProperty : ICssProperty, ICssPaddingBottomProperty, ICssPaddingRightProperty, ICssPaddingTopProperty, ICssPaddingLeftProperty
-
public interface ICssPaddingRightProperty : ICssProperty
-
public interface ICssPaddingTopProperty : ICssProperty
-
public interface ICssPageBreakAfterProperty : ICssProperty
-
public interface ICssPageBreakBeforeProperty : ICssProperty
-
public interface ICssPageBreakInsideProperty : ICssProperty
-
public interface : ICssGroupingRule, ICssRule
-
public interface ICssPerspectiveOriginProperty : ICssProperty
-
public interface ICssPerspectiveProperty : ICssProperty
-
public interface ICssPositionProperty : ICssProperty
-
public interface ICssProperty
-
public interface ICssQuotesProperty : ICssProperty
-
public interface ICssRightProperty : ICssProperty
-
public interface ICssRule
-
public interface ICssRuleList : IEnumerable<ICssRule>, IEnumerable
-
public interface ICssStyleDeclaration : IEnumerable<ICssProperty>, IEnumerable
-
public interface ICssStyleRule : ICssRule
-
public interface ICssStyleSheet : IStyleSheet
-
public interface ICssSupportsRule : ICssConditionRule, ICssGroupingRule, ICssRule
-
public interface ICssTableLayoutProperty : ICssProperty
-
public interface ICssTextAlignProperty : ICssProperty
-
public interface ICssTextDecorationColorProperty : ICssProperty
-
public interface ICssTextDecorationLineProperty : ICssProperty
-
public interface ICssTextDecorationProperty : ICssProperty, ICssTextDecorationColorProperty, ICssTextDecorationLineProperty, ICssTextDecorationStyleProperty
-
public interface ICssTextDecorationStyleProperty : ICssProperty
-
public interface ICssTextIndentProperty : ICssProperty
-
public interface ICssTextShadowProperty : ICssProperty
-
public interface ICssTextTransformProperty : ICssProperty
-
public interface ICssTopProperty : ICssProperty
-
public interface ICssTransformOriginProperty : ICssProperty
-
public interface ICssTransformProperty : ICssProperty
-
public interface ICssTransformStyleProperty : ICssProperty
-
public interface ICssTransitionDelayProperty : ICssProperty
-
public interface ICssTransitionDurationProperty : ICssProperty
-
public interface ICssTransitionProperty : ICssProperty, ICssTransitionDelayProperty, ICssTransitionDurationProperty, ICssTransitionPropertyProperty, ICssTransitionTimingFunctionProperty
-
public interface ICssTransitionPropertyProperty : ICssProperty
-
public interface ICssTransitionTimingFunctionProperty : ICssProperty
-
public interface ICssUnicodeBidiProperty : ICssProperty
-
public interface ICssValue
-
public interface ICssVerticalAlignProperty : ICssProperty
-
public interface ICssVisibilityProperty : ICssProperty
-
public interface ICssWhitespaceProperty : ICssProperty
-
public interface ICssWidowsProperty : ICssProperty
-
public interface ICssWidthProperty : ICssProperty
-
public interface ICssWordSpacingProperty : ICssProperty
-
public interface ICssZIndexProperty : ICssProperty
-
public interface IElementCssInlineStyle
-
public interface IKeyframeSelector
-
public interface IMediaList : IEnumerable<string>, IEnumerable
-
public interface ISelector
-
public interface IStyleUtilities
-
public struct Length : IEquatable<Length>, IComparable<Length>, IFormattable, ICssValue
-
public enum LineStyle
-
public enum ListPosition
-
public enum ListStyle
-
public struct Number : IEquatable<Number>, IComparable<Number>, IFormattable, ICssValue
-
public enum ObjectFitting
-
public enum OverflowMode
-
public struct Percent : IEquatable<Percent>, IComparable<Percent>, IFormattable, ICssValue
-
public enum PlayState
-
public enum PointerAccuracy
-
public enum PositionMode
-
public struct Resolution : IEquatable<Resolution>, IComparable<Resolution>, IFormattable, ICssValue
-
public enum ScriptingState
-
public enum SystemCursor
-
public enum SystemFont
-
public enum TextDecorationLine
-
public enum TextDecorationStyle
-
public enum TextTransform
-
public struct Time : IEquatable<Time>, IComparable<Time>, IFormattable, ICssValue
-
public enum UnicodeMode
-
public enum UpdateFrequency
-
public enum Whitespace
AngleSharp.Dom.Events
AngleSharp.Dom.Html
-
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
-
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
-
public interface : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
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
-
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
-
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
-
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.Media
AngleSharp.Dom.Navigator
AngleSharp.Dom.Svg
-
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.Infrastructure
AngleSharp.Linq
AngleSharp.Network
AngleSharp.Parser
AngleSharp.Parser.Css
-
public sealed class CssParser : IParser
- public ICssStyleSheet Result { get; }
- public bool IsQuirksMode { get; }
- public ICssStyleSheet Result { get; }
- public static IKeyframeSelector ParseKeyText(string keyText, IConfiguration configuration = null)
- public static ISelector ParseSelector(string selectorText, IConfiguration configuration = null)
- public static ICssStyleSheet ParseStyleSheet(string stylesheet, IConfiguration configuration = null)
- public static ICssValue ParseValue(string valueText, IConfiguration configuration = null)
- public ICssStyleSheet Parse()
- public Task<ICssStyleSheet> ParseAsync()
- public Task<ICssStyleSheet> ParseAsync(CancellationToken cancelToken)
- public static CSSProperty ParseDeclaration(string declaration, IConfiguration configuration = null)
- public static IEnumerable<CSSMedium> ParseMediaList(string source, IConfiguration configuration = null)
- public static ICssRule ParseRule(string rule, IConfiguration configuration = null)
- public static ISelector ParseSelector(string selector, IConfiguration configuration = null)
- public static ICssStyleSheet 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.Services
AngleSharp.Services.Media
AngleSharp.Tools