API Diff between 0.2.0 and 0.8.1
1049 Additions
500 Removals
AngleSharp
-
public static class ApiExtensions
-
public class Configuration : IConfiguration
-
public static class ConfigurationExtensions
-
public static class ContextExtensions
-
public class DocumentBuilder
- 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 static HTMLDocument Build(string sourceCode)
- public static HTMLDocument Build(Stream sourceCode)
-
public interface IBrowsingContext
-
public interface IConfiguration
-
public struct TextPosition : IEquatable<TextPosition>, IComparable<TextPosition>
-
public struct : IEquatable<TextRange>, IComparable<TextRange>
-
public class Url : IEquatable<Url>
-
public static class LocalSettings
-
public class NodeBuilder
-
public class ParseErrorEventArgs : ParserEventArgs
-
public abstract class ParserEventArgs : EventArgs
AngleSharp.Attributes
AngleSharp.Css
AngleSharp.Css.Values
AngleSharp.DOM
-
public sealed class Attr : Node, IAttr, INode
- public bool IsId { get; }
- public string Name { get; }
- public bool Specified { get; }
- public string Value { get; set; }
- public Attr()
- public Attr(string name)
- public Attr(string name, string value)
- public Attr(string name, string value, string ns)
-
public sealed class CDATASection : CharacterData
-
public abstract class CharacterData : Node
-
public sealed class : CharacterData
- public ()
- public (string data)
-
public class Cookie
-
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 class DOMImplementation : IDOMImplementation
-
public class Element : Node, IElement, INode, IQueryElements
- public enum ContentEditableMode
- public enum DirectionMode
- public int ChildElementCount { get; }
- public HTMLCollection Children { get; }
- public DOMTokenList ClassList { get; }
- public string ClassName { get; set; }
- public int ClientHeight { get; }
- public int ClientLeft { get; }
- public int ClientTop { get; }
- public int ClientWidth { get; }
- public ContentEditableMode ContentEditable { get; set; }
- public DOMStringMap Dataset { get; }
- public DirectionMode Dir { get; set; }
- public Element FirstElementChild { get; }
- public string Id { get; set; }
- public string InnerHTML { get; set; }
- public bool IsContentEditable { get; }
- public bool IsFocused { get; }
- public bool IsHovered { get; }
- public string Lang { get; set; }
- public Element LastElementChild { get; }
- public Element NextElementSibling { get; }
- public int OffsetHeight { get; }
- public int OffsetLeft { get; }
- public Element OffsetParent { get; }
- public int OffsetTop { get; }
- public int OffsetWidth { get; }
- public string OuterHTML { get; set; }
- public Element PreviousElementSibling { get; }
- public int ScrollHeight { get; }
- public int ScrollLeft { get; set; }
- public int ScrollTop { get; set; }
- public int ScrollWidth { get; }
- public bool Spellcheck { get; set; }
- public CSSStyleDeclaration Style { get; }
- public int TabIndex { get; set; }
- public string TagName { get; }
- public string Title { get; set; }
- public Element()
- protected static bool ToBoolean(string value, bool defaultValue = false)
- protected static T ToEnum<T>(string value, T defaultValue) where T : struct
- protected static int ToInteger(string value, int defaultValue = 0)
- protected static uint ToInteger(string value, uint defaultValue = 0)
- public Element After(Node[] nodes)
- public Element Append(Node[] nodes)
- public Element Before(Node[] nodes)
- public virtual string GetAttribute(string attrName)
- public virtual Attr GetAttributeNode(string attrName)
- public virtual Attr GetAttributeNodeNS(string namespaceURI, string attrName)
- public virtual string GetAttributeNS(string namespaceURI, string localAttrName)
- public HTMLCollection GetElementsByClassName(string classNames)
- public HTMLCollection GetElementsByTagName(string tagName)
- public HTMLCollection GetElementsByTagNameNS(string namespaceURI, string tagName)
- public virtual bool HasAttribute(string attrName)
- public virtual bool HasAttributeNS(string namespaceURI, string attrName)
- public Element NormalizeNamespaces()
- public Element Prepend(Node[] nodes)
- public Element QuerySelector(string selectors)
- public HTMLCollection QuerySelectorAll(string selectors)
- public Element Remove()
- public virtual Element RemoveAttribute(string attrName)
- public virtual Attr RemoveAttributeNode(Attr attr)
- public virtual Element RemoveAttributeNS(string namespaceURI, string localAttrName)
- public Element Replace(Node[] nodes)
- public virtual Element SetAttribute(string name, string value)
- public virtual Attr SetAttributeNode(Attr attr)
- public virtual Attr SetAttributeNodeNS(string namespaceURI, Attr attr)
- public virtual Element SetAttributeNS(string namespaceURI, string name, string value)
-
public sealed class Entity : Node
-
public sealed class EntityReference : Node
-
public abstract class Event : IEvent
-
public class EventListener : IEventListener
-
public enum EventPhase
-
public class EventTarget : IEventTarget
-
public class Location
- public string Hash { get; set; }
- public string Host { get; set; }
- public string HostName { get; set; }
- public string Href { get; set; }
- public string PathName { get; set; }
- public string Port { get; set; }
- public string Protocol { get; set; }
-
public class Node : INode
-
public enum NodeType
-
public sealed class Notation : Node
-
public sealed class ProcessingInstruction : Node
-
public class Range : IRange
-
public enum RangePosition
-
public enum RangeType
-
public enum Readiness
-
public sealed class TextNode : CharacterData
AngleSharp.DOM.Collections
-
public abstract class BaseCollection<T> : DOMCollection, IEnumerable<T>, IEnumerable where T : Node
-
public sealed class CSSStyleDeclaration : DOMCollection, IEnumerable<CSSProperty>, IEnumerable
-
public abstract class DOMCollection
-
public sealed class DOMStringMap : DOMCollection
-
public sealed class DOMTokenList : DOMCollection, IEnumerable<string>, IEnumerable
-
public class HTMLCollection : BaseCollection<Element>
-
public class HTMLFormControlsCollection : HTMLCollection
-
public class MediaList : DOMCollection, IEnumerable<string>, IEnumerable
-
public class NamedNodeMap : DOMCollection, IEnumerable<Node>, IEnumerable
-
public sealed class NodeList : BaseCollection<Node>
-
public class StringList : StringCollection
-
public class StyleSheetList : DOMCollection, IEnumerable<StyleSheet>, IEnumerable
AngleSharp.DOM.Css
AngleSharp.DOM.Html
AngleSharp.DOM.Mathml
AngleSharp.DOM.Svg
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.Html
AngleSharp.Linq
AngleSharp.Network
AngleSharp.Parser
AngleSharp.Parser.Css
AngleSharp.Parser.Html
AngleSharp.Services
AngleSharp.Services.Media