API Diff between 0.6.1 and 1.0.4
2605 Additions
421 Removals
AngleSharp
-
public sealed class BrowsingContext : EventTarget, IBrowsingContext, IEventTarget, IDisposable
-
public static class BrowsingContextExtensions
-
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 bool Has<TService>(this IConfiguration configuration)
- public static IConfiguration With(this IConfiguration configuration, object service)
- public static IConfiguration With(this IConfiguration configuration, IEnumerable<object> services)
- public static IConfiguration With<TService>(this IConfiguration configuration, Func<IBrowsingContext, TService> creator)
- public static IConfiguration WithCulture(this IConfiguration configuration, string name)
- public static IConfiguration WithCulture(this IConfiguration configuration, CultureInfo culture)
- public static IConfiguration WithDefaultCookies(this IConfiguration configuration)
- public static IConfiguration WithDefaultLoader(this IConfiguration configuration, LoaderOptions setup = null)
- public static IConfiguration WithLocaleBasedEncoding(this IConfiguration configuration)
- public static IConfiguration WithMetaRefresh(this IConfiguration configuration, Predicate<Url> shouldRefresh = null)
- public static IConfiguration WithOnly<TService>(this IConfiguration configuration, TService service)
- public static IConfiguration WithOnly<TService>(this IConfiguration configuration, Func<IBrowsingContext, TService> creator)
- public static IConfiguration Without(this IConfiguration configuration, object service)
- public static IConfiguration Without(this IConfiguration configuration, IEnumerable<object> services)
- public static IConfiguration Without<TService>(this IConfiguration configuration)
- public static TConfiguration WithCss<TConfiguration>(this TConfiguration configuration) where TConfiguration : Configuration
- public static TConfiguration WithRequests<TConfiguration>(this TConfiguration configuration) where TConfiguration : IConfiguration
- public static TConfiguration WithScripting<TConfiguration>(this TConfiguration configuration) where TConfiguration : IConfiguration
- public static TConfiguration WithStyling<TConfiguration>(this TConfiguration configuration) where TConfiguration : IConfiguration
-
public static class FormatExtensions
-
public interface IBrowsingContext : IEventTarget, IDisposable
-
public sealed 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 sealed class DomAccessorAttribute : Attribute
-
public sealed class DomDescriptionAttribute : Attribute
-
public sealed class DomHistorical : Attribute
-
public sealed class DomNameAttribute : Attribute
-
public static class Extensions
- public static T Attr<T>(this T elements, string attributeName, string attributeValue) where T : IEnumerable<IElement>
- public static TElement CreateElement<TElement>(this IDocument document) where TElement : IElement
- public static T Css<T>(this T elements, string declarations) where T : IEnumerable<IElement>
- public static ICssStyleSheet GetCss(this Uri uri, IConfiguration configuration = null)
- public static Task<ICssStyleSheet> GetCssAsync(this Uri uri, IConfiguration configuration = null)
- public static Task<ICssStyleSheet> GetCssAsync(this Uri uri, CancellationToken cancel, IConfiguration configuration = null)
- public static IDocument GetHtml(this Uri uri, IConfiguration configuration = null)
- public static Task<IDocument> GetHtmlAsync(this Uri uri, IConfiguration configuration = null)
- public static Task<IDocument> GetHtmlAsync(this Uri uri, CancellationToken cancel, IConfiguration configuration = null)
- public static T Html<T>(this T elements, string html) where T : IEnumerable<IElement>
- public static int Index<T>(this IEnumerable<T> elements, T item) where T : INode
- public static ICssStyleSheet ParseCss(this string content, IConfiguration configuration = null)
- public static IDocument ParseHtml(this string content, IConfiguration configuration = null)
- public static IHtmlCollection QueryXpath(this IDocument document, string xpath)
- public static IHtmlCollection QueryXpath(this IElement element, string xpath)
- public static IHtmlCollection QueryXpath(this INodeList nodes, string xpath)
- public static T Text<T>(this T elements, string text) where T : IEnumerable<IElement>
- public static string ToHtml(this INode element)
- public static string ToText(this INode element)
-
public struct Frequency : IEquatable<Frequency>, ICssObject
-
public interface IConfiguration
-
public interface IMarkupFormattable
-
public interface IMarkupFormatter
-
public interface IStyleFormattable
-
public interface IStyleFormatter
-
public struct Length : IEquatable<Length>, ICssObject
-
public struct Number : IEquatable<Number>, ICssObject
-
public struct Percent : IEquatable<Percent>, ICssObject
-
public struct Priority : IEquatable<Priority>
- public static readonly Priority Inline
- public static readonly Priority OneClass
- public static readonly Priority OneId
- public static readonly Priority OneTag
- public static readonly Priority Zero
- public byte Classes { get; }
- public byte Ids { get; }
- public byte Inlines { get; }
- public byte Tags { get; }
- public Priority(uint priority)
- public Priority(byte inlines, byte ids, byte classes, byte tags)
- public static Priority op_Addition(Priority a, Priority b)
- public static bool op_Equality(Priority a, Priority b)
- public static bool op_GreaterThan(Priority a, Priority b)
- public static bool op_GreaterThanOrEqual(Priority a, Priority b)
- public static bool op_Inequality(Priority a, Priority b)
- public static bool op_LessThan(Priority a, Priority b)
- public static bool op_LessThanOrEqual(Priority a, Priority b)
- public bool Equals(Priority other)
-
public struct Resolution : IEquatable<Resolution>, ICssObject
-
public sealed class Shadow
-
public struct Time : IEquatable<Time>, ICssObject
-
public struct TransformMatrix : IEquatable<TransformMatrix>, ICssObject
- public static readonly TransformMatrix One
- public static readonly TransformMatrix Zero
- public float M11 { get; }
- public float M12 { get; }
- public float M13 { get; }
- public float M21 { get; }
- public float M22 { get; }
- public float M23 { get; }
- public float M31 { get; }
- public float M32 { get; }
- public float M33 { get; }
- public float Tx { get; }
- public float Ty { get; }
- public float Tz { get; }
- public TransformMatrix(float m11, float m12, float m13, float m21, float m22, float m23, float m31, float m32, float m33, float tx, float ty, float tz)
- public static TransformMatrix op_Multiply(TransformMatrix a, TransformMatrix b)
- public bool Equals(TransformMatrix other)
- public string ToCss()
-
public class Url : ICssObject
AngleSharp.Attributes
AngleSharp.Browser
AngleSharp.Browser.Dom
AngleSharp.Browser.Dom.Events
AngleSharp.Common
AngleSharp.Css
AngleSharp.Css.Dom
AngleSharp.Css.Parser
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(object sender, IEvent ev, string source, int? line, int? column, DomException error, AsyncCallback callback, object object)
- public virtual void EndInvoke(IAsyncResult result)
- public virtual void Invoke(object sender, IEvent ev, string source = null, int? line = default, int? column = default, DomException error = null)
-
public sealed delegate EventListener : MulticastDelegate
-
public enum FilterResult
-
public enum FilterSettings
-
public enum HorizontalAlignment
-
public interface IAttr
-
public interface ICharacterData : INode, IEventTarget, IChildNode, INonDocumentTypeChildNode
- string Data { get; set; }
- int Length { get; }
- void Append(string value)
- void Delete(int offset, int count)
- void Insert(int offset, string value)
- void Replace(int offset, int count, string value)
- string Substring(int offset, int count)
-
public interface IChildNode
-
public interface : ICharacterData, INode, IEventTarget, IChildNode, INonDocumentTypeChildNode
-
public interface IDocument : INode, IEventTarget, IParentNode, IGlobalEventHandlers, IDocumentStyle, INonElementParentNode
-
public interface IDocumentFragment : INode, IEventTarget, IParentNode, INonElementParentNode
-
public interface IDocumentStyle
-
public interface IDocumentType : INode, IEventTarget, IChildNode
-
public interface IDomException
-
public interface IElement : INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode
-
public interface IElementMap : IEnumerable<KeyValuePair<string, IElement>>, IEnumerable
-
public interface IEventTarget
-
public interface IHistory
-
public interface IHtmlAllCollection : IHtmlCollection, IEnumerable<IElement>, IEnumerable
-
public interface IHtmlCollection : IEnumerable<IElement>, IEnumerable
-
public interface IImplementation
-
public interface ILinkStyle
-
public interface ILocation : IUrlUtilities
-
public interface IMutationObserver
-
public interface IMutationObserverInit
-
public interface IMutationRecord
-
public interface INode : IEventTarget
-
public interface INodeIterator
-
public interface INodeList : IEnumerable<INode>, IEnumerable
-
public interface INonDocumentTypeChildNode
-
public interface INonElementParentNode
-
public interface IParentNode
-
public interface IProcessingInstruction : ICharacterData, INode, IEventTarget, IChildNode, INonDocumentTypeChildNode
-
public interface IRange
-
public interface ISettableTokenList : ITokenList, IEnumerable<string>, IEnumerable
- string Value { get; set; }
-
public interface IStringList : IEnumerable<string>, IEnumerable
-
public interface IStringMap : IEnumerable<KeyValuePair<string, string>>, IEnumerable
- string this[string name] { get; set; }
- void Remove(string name)
-
public interface IStyleSheet
-
public interface IStyleSheetList : IEnumerable<IStyleSheet>, IEnumerable
-
public interface IText : ICharacterData, INode, IEventTarget, IChildNode, INonDocumentTypeChildNode
-
public interface ITokenList : IEnumerable<string>, IEnumerable
- string this[int index] { get; }
- int Length { get; }
- void Add(string[] tokens)
- bool Contains(string token)
- void Remove(string[] tokens)
- bool Toggle(string token, bool force = false)
-
public interface ITreeWalker
-
public interface IUrlUtilities
-
public interface IWindow : IEventTarget
-
public interface IWindowEventHandlers
-
public interface IWindowProxy : IWindow, IEventTarget
-
public interface IWindowTimers
-
public class Node : INode, IEventTarget, IHtmlObject
- public string BaseUri { get; set; }
- public bool HasChilds { get; }
- public string NodeName { get; }
- public NodeType NodeType { get; }
- public virtual string NodeValue { get; set; }
- public IElement ParentElement { get; }
- public virtual string TextContent { get; set; }
- protected static void CopyProperties(Node source, Node target, bool deep)
- public void AddEventListener(string type, EventListener callback = null, bool capture = false)
- public INode AppendChild(INode child)
- public virtual INode Clone(bool deep = true)
- public DocumentPositions CompareDocumentPosition(INode otherNode)
- public bool Contains(INode otherNode)
- public bool Dispatch(IEvent ev)
- protected bool FireSimpleEvent(string eventName, bool bubble = false, bool cancelable = false)
- protected Url HyperRef(string url)
- public INode InsertBefore(INode newElement, INode referenceElement)
- public INode InsertChild(int index, INode child)
- public bool IsDefaultNamespace(string namespaceUri)
- public virtual bool IsEqualNode(INode otherNode)
- protected virtual string LocateNamespace(string prefix)
- protected virtual string LocatePrefix(string namespaceUri)
- public string LookupNamespaceUri(string prefix)
- public string LookupPrefix(string namespaceUri)
- public void Normalize()
- public INode RemoveChild(INode child)
- public void RemoveEventListener(string type, EventListener callback = null, bool capture = false)
- public INode ReplaceChild(INode newChild, INode oldChild)
- public virtual string ToHtml()
-
public sealed delegate NodeFilter : MulticastDelegate
-
public enum NodeType
-
public enum RangePosition
-
public enum RangeType
-
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 : ICssProperty, ICssObject
-
public enum CssRuleType
-
public sealed class CSSShapeValue : CSSValue
-
public sealed class CSSTextDecorationColorProperty : CSSProperty
-
public abstract class CSSTimingValue : CSSValue
-
public abstract class CSSTransformValue : CSSValue
-
public class CSSValue : ICssValue, ICssObject
-
public 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 ICssProperty
-
public interface ICssRule
-
public interface ICssRuleList : IEnumerable<ICssRule>, IEnumerable
-
public interface ICssStyleDeclaration : IEnumerable<CSSProperty>, IEnumerable
-
public interface ICssStyleRule : ICssRule
-
public interface ICssStyleSheet : IStyleSheet
-
public interface ICssSupportsRule : ICssConditionRule, ICssGroupingRule, ICssRule
-
public interface ICssValue
-
public interface IElementCssInlineStyle
-
public interface IMediaList : IEnumerable<string>, IEnumerable
-
public interface ISelector
-
public interface IStyleUtilities
-
public enum LineStyle
-
public enum ListPosition
-
public enum ListStyle
-
public enum PlayState
-
public sealed class Point2d
-
public enum SystemCursor
-
public enum SystemFont
-
public enum TextDecorationLine
-
public enum TextDecorationStyle
-
public enum TextTransform
-
public enum UnicodeMode
-
public enum VerticalAlignment
-
public enum Whitespace
AngleSharp.DOM.Css.Media
AngleSharp.DOM.Css.Properties
AngleSharp.DOM.Events
-
public enum EventPhase
-
public interface ICompositionEvent : IUiEvent, IEvent
- string Data { get; }
- void Init(string type, bool bubbles, bool cancelable, IWindow view, string data)
-
public interface ICustomEvent : IEvent
- object Details { get; }
- void Init(string type, bool bubbles, bool cancelable, object details)
-
public interface IErrorEvent : IEvent
-
public interface IEvent
-
public interface IFocusEvent : IUiEvent, IEvent
-
public interface IInputEvent : IEvent
- string Data { get; }
- void Init(string type, bool bubbles, bool cancelable, string data)
-
public interface IKeyboardEvent : IUiEvent, IEvent
-
public interface IMessageEvent : IEvent
-
public interface IMouseEvent : IUiEvent, IEvent
- MouseButton Button { get; }
- MouseButtons Buttons { get; }
- int ClientX { get; }
- int ClientY { get; }
- bool IsAltPressed { get; }
- bool IsCtrlPressed { get; }
- bool IsMetaPressed { get; }
- bool IsShiftPressed { get; }
- int ScreenX { get; }
- int ScreenY { get; }
- IEventTarget Target { get; }
- bool GetModifierState(string key)
- void Init(string type, bool bubbles, bool cancelable, IWindow view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, MouseButton button, IEventTarget target)
-
public interface ITrackEvent : IEvent
-
public interface IUiEvent : IEvent
-
public interface IWheelEvent : IMouseEvent, IUiEvent, IEvent
- WheelMode DeltaMode { get; }
- double DeltaX { get; }
- double DeltaY { get; }
- double DeltaZ { get; }
- void Init(string type, bool bubbles, bool cancelable, IWindow view, int detail, int screenX, int screenY, int clientX, int clientY, MouseButton button, IEventTarget target, string modifiersList, double deltaX, double deltaY, double deltaZ, WheelMode deltaMode)
-
public enum KeyboardLocation
-
public enum MouseButton
-
public enum MouseButtons
-
public enum WheelMode
AngleSharp.DOM.Html
-
public interface IGlobalEventHandlers
-
public interface IHtmlAnchorElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IUrlUtilities
-
public interface IHtmlAreaElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IUrlUtilities
-
public interface IHtmlAudioElement : IHtmlMediaElement, IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IMediaController
-
public interface IHtmlBaseElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
- string Href { get; set; }
- string Target { get; set; }
-
public interface IHtmlBodyElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IWindowEventHandlers
-
public interface IHtmlBreakRowElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlButtonElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlCanvasElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlCommandElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlDataListElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlDetailsElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlDialogElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlDivElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlElement : IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlEmbedElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlFieldSetElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlFormControlsCollection : IHtmlCollection, IEnumerable<IElement>, IEnumerable
-
public interface IHtmlFormElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlHeadElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlHeadingElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlHrElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlHtmlElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlImageElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlInputElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlKeygenElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlLabelElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlLegendElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlLinkElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, ILinkStyle
-
public interface IHtmlListItemElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlMapElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlMediaElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IMediaController
-
public interface : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
- string { get; set; }
- string { get; set; }
-
public interface : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
- IHtmlElement Command { get; }
- string { get; set; }
- bool { get; set; }
- bool { get; set; }
- bool { get; set; }
- string { get; set; }
- string { get; set; }
- string { get; set; }
-
public interface IHtmlMetaElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlMeterElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlModElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlObjectElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlOptionElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlOptionsCollection : IHtmlCollection, IEnumerable<IElement>, IEnumerable
-
public interface IHtmlOptionsGroupElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlOrderedListElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlOutputElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlParagraphElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlParamElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
- string Name { get; set; }
- string Value { get; set; }
-
public interface IHtmlPreElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlProgressElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlQuoteElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlScriptElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlSelectElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlSourceElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
- string Media { get; set; }
- string Source { get; set; }
- string Type { get; set; }
-
public interface IHtmlSpanElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlStyleElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, ILinkStyle
-
public interface IHtmlTableCaptionElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTableCellElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTableColumnElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTableDataCellElement : IHtmlTableCellElement, IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTableElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface : IHtmlTableCellElement, IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTableRowElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTableSectionElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTemplateElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTextAreaElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlTimeElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTitleElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
- string Text { get; set; }
-
public interface IHtmlTrackElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlUnknownElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlUnorderedListElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlVideoElement : IHtmlMediaElement, IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IMediaController
-
public interface ILabelabelElement
-
public interface IValidation
-
public interface IValidityState
-
public enum TrackReadyState
AngleSharp.DOM.Io
AngleSharp.DOM.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.Dom
-
public enum AdjacentPosition
-
public sealed class Attr : IAttr, INode, IEventTarget, IMarkupFormattable, IEquatable<IAttr>
-
public static class AttrExtensions
-
public static class AttributeNames
-
public static class CollectionExtensions
-
public sealed class CreateDocumentOptions
-
public class DefaultAttributeObserver : IAttributeObserver
-
public class DefaultDocumentFactory : IDocumentFactory
-
public enum DirectionMode
-
public abstract class Document : Node, IDocument, INode, IEventTarget, IMarkupFormattable, IParentNode, IGlobalEventHandlers, IDocumentStyle, INonElementParentNode, IDisposable
-
public static class DocumentExtensions
-
public enum DocumentPositions
-
public enum DocumentReadyState
-
public enum DomError
-
public sealed delegate DomEventHandler : MulticastDelegate
-
public sealed class DomException : Exception, IDomException
-
public abstract class Element : Node, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode
-
public static class ElementExtensions
-
public sealed class Entity : Node
-
public static class EventNames
-
public abstract class EventTarget : IEventTarget
-
public static class EventTargetExtensions
-
public enum FilterResult
-
public enum FilterSettings
-
public enum HorizontalAlignment
-
public interface IAttr : INode, IEventTarget, IMarkupFormattable, IEquatable<IAttr>
-
public interface IAttributeObserver
-
public interface ICharacterData : INode, IEventTarget, IMarkupFormattable, IChildNode, INonDocumentTypeChildNode
-
public interface IChildNode
-
public interface : ICharacterData, INode, IEventTarget, IMarkupFormattable, IChildNode, INonDocumentTypeChildNode
-
public interface IDocument : INode, IEventTarget, IMarkupFormattable, IParentNode, IGlobalEventHandlers, IDocumentStyle, INonElementParentNode, IDisposable
-
public interface IDocumentFactory
-
public interface IDocumentFragment : INode, IEventTarget, IMarkupFormattable, IParentNode, INonElementParentNode
-
public interface IDocumentStyle
-
public interface IDocumentType : INode, IEventTarget, IMarkupFormattable, IChildNode
-
public interface IDomException
-
public interface IElement : INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode
-
public interface IElementFactory<TDocument, TElement> where TDocument : IDocument where TElement : IElement
-
public interface IEntityProvider
-
public interface IEventTarget
-
public interface IHtmlAllCollection : IHtmlCollection<IElement>, IEnumerable<IElement>, IEnumerable
-
public interface IHtmlCollection<T> : IEnumerable<T>, IEnumerable where T : IElement
-
public interface IImplementation
-
public interface ILinkImport
-
public interface ILinkStyle
-
public interface ILocation : IUrlUtilities
-
public interface IMutationRecord
-
public interface INamedNodeMap : IEnumerable<IAttr>, IEnumerable
-
public interface INode : IEventTarget, IMarkupFormattable
-
public interface INodeIterator
-
public interface INodeList : IEnumerable<INode>, IEnumerable, IMarkupFormattable
-
public interface INonDocumentTypeChildNode
-
public interface INonElementParentNode
-
public interface IParentNode
-
public interface IProcessingInstruction : ICharacterData, INode, IEventTarget, IMarkupFormattable, IChildNode, INonDocumentTypeChildNode
-
public interface IPseudoElement : IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode
-
public interface IRange
-
public interface ISettableTokenList : ITokenList, IEnumerable<string>, IEnumerable
-
public interface IShadowRoot : IDocumentFragment, INode, IEventTarget, IMarkupFormattable, IParentNode, INonElementParentNode
-
public interface ISourceReference
-
public interface IStringList : IEnumerable<string>, IEnumerable
-
public interface IStringMap : IEnumerable<KeyValuePair<string, string>>, IEnumerable
-
public interface IStyleSheet : IStyleFormattable
-
public interface IStyleSheetList : IEnumerable<IStyleSheet>, IEnumerable
-
public interface IText : ICharacterData, INode, IEventTarget, IMarkupFormattable, IChildNode, INonDocumentTypeChildNode
-
public interface ITokenList : IEnumerable<string>, IEnumerable
-
public interface ITreeWalker
-
public interface IUrlUtilities
-
public interface IWindow : IEventTarget, IGlobalEventHandlers, IWindowEventHandlers, IWindowTimers, IDisposable
-
public interface IWindowTimers
-
public sealed delegate MutationCallback : MulticastDelegate
-
public sealed class MutationObserver
-
public static class NamespaceNames
-
public abstract class Node : EventTarget, INode, IEventTarget, IMarkupFormattable, IEquatable<INode>
-
public static class NodeExtensions
-
public sealed delegate NodeFilter : MulticastDelegate
-
public enum NodeFlags
-
public enum NodeType
-
public sealed class Notation : Node
-
public static class ParentNodeExtensions
-
public static class QueryExtensions
-
public enum RangePosition
-
public enum RangeType
-
public static class SelectorExtensions
-
public enum ShadowRootMode
-
public static class TagNames
-
public sealed class Url : IEquatable<Url>
-
public class UrlSearchParams
-
public enum VerticalAlignment
-
public enum Visibility
-
public enum WordBreak
AngleSharp.Dom.Events
AngleSharp.Html
AngleSharp.Html.Dom
-
public static class FormExtensions
-
public class HtmlElement : Element, IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public static class HtmlLinkElementExtensions
-
public interface IHtmlAnchorElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, IUrlUtilities
-
public interface IHtmlAreaElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, IUrlUtilities
-
public interface IHtmlAudioElement : IHtmlMediaElement, IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, IMediaController, ILoadableElement
-
public interface IHtmlBaseElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlBodyElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, IWindowEventHandlers
-
public interface IHtmlBreakRowElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlButtonElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, IValidation
-
public interface IHtmlCanvasElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlCommandElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlDataElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlDataListElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlDetailsElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlDialogElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlDivElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlDocument : IDocument, INode, IEventTarget, IMarkupFormattable, IParentNode, IGlobalEventHandlers, IDocumentStyle, INonElementParentNode, IDisposable
-
public interface IHtmlElement : IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlEmbedElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, ILoadableElement
-
public interface IHtmlFieldSetElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, IValidation
-
public interface IHtmlFormControlsCollection : IHtmlCollection<IHtmlElement>, IEnumerable<IHtmlElement>, IEnumerable
-
public interface IHtmlFormElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlHeadElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlHeadingElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlHrElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlHtmlElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlImageElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, ILoadableElement
-
public interface IHtmlInlineFrameElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, ILoadableElement
-
public interface IHtmlInputElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, IValidation
-
public interface IHtmlKeygenElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, IValidation
-
public interface IHtmlLabelElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlLegendElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlLinkElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, ILinkStyle, ILinkImport, ILoadableElement
-
public interface IHtmlListItemElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlMapElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlMarqueeElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlMediaElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, IMediaController, ILoadableElement
-
public interface : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlMetaElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlMeterElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, ILabelabelElement
-
public interface IHtmlModElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlObjectElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, IValidation, ILoadableElement
-
public interface IHtmlOptionElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlOptionsCollection : IHtmlCollection<IHtmlOptionElement>, IEnumerable<IHtmlOptionElement>, IEnumerable
-
public interface IHtmlOptionsGroupElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlOrderedListElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlOutputElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, IValidation
-
public interface IHtmlParagraphElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlParamElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlPictureElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlPreElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlProgressElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, ILabelabelElement
-
public interface IHtmlQuoteElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlScriptElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, ILoadableElement
-
public interface IHtmlSelectElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, IValidation
-
public interface IHtmlSlotElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlSourceElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlSpanElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlStyleElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, ILinkStyle
-
public interface IHtmlTableCaptionElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlTableCellElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlTableColumnElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlTableDataCellElement : IHtmlTableCellElement, IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlTableElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface : IHtmlTableCellElement, IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlTableRowElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlTableSectionElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlTemplateElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlTextAreaElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, IValidation
-
public interface IHtmlTimeElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlTitleElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlTrackElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlUnknownElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlUnorderedListElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
-
public interface IHtmlVideoElement : IHtmlMediaElement, IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, IMediaController, ILoadableElement
-
public interface ILabelabelElement
-
public static class ImageExtensions
-
public interface IValidation
-
public interface IValidityState
-
public enum TableCellKind
-
public enum TableFrames
-
public enum TableRules
-
public enum TrackReadyState
AngleSharp.Html.Dom.Events
AngleSharp.Html.Forms
AngleSharp.Html.Forms.Submitters
AngleSharp.Html.InputTypes
AngleSharp.Html.LinkRels
AngleSharp.Html.Parser
AngleSharp.Html.Parser.Tokens
AngleSharp.Infrastructure
AngleSharp.Io
AngleSharp.Io.Dom
AngleSharp.Io.Processors
AngleSharp.Mathml.Dom
AngleSharp.Media
AngleSharp.Media.Dom
AngleSharp.Network
AngleSharp.Parser
AngleSharp.Parser.Css
AngleSharp.Parser.Html
AngleSharp.Scripting
AngleSharp.Svg.Dom
-
public interface ISvgCircleElement : ISvgElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode
-
public interface ISvgDescriptionElement : ISvgElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode
-
public interface ISvgElement : IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode
-
public interface ISvgForeignObjectElement : ISvgElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode
-
public interface ISvgSvgElement : ISvgElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode
-
public interface ISvgTitleElement : ISvgElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode
-
public class SvgElement : Element, ISvgElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode
AngleSharp.Text
AngleSharp.Tools
AngleSharp.Xhtml