API Diff between 0.8.2 and 0.13.0-alpha-771
2022 Additions
430 Removals
AngleSharp
-
public static class ApiExtensions
- public static IEnumerable<TNode> Ancestors<TNode>(this INode child)
- public static IEnumerable<INode> Ancestors(this INode child)
- public static TElement AppendElement<TElement>(this INode parent, TElement element) where TElement : IElement
- public static Task<Event> AwaitEvent<TEventTarget>(this TEventTarget node, string eventName) where TEventTarget : IEventTarget
- public static TElement CreateElement<TElement>(this IDocument document) where TElement : IElement
- public static IEnumerable<TNode> Descendents<TNode>(this INode parent)
- public static IEnumerable<INode> Descendents(this INode parent)
- public static TElement InsertElement<TElement>(this INode parent, TElement newElement, INode referenceElement) where TElement : IElement
- public static Task<IDocument> Navigate<TElement>(this TElement element) where TElement : IUrlUtilities, IElement
- public static Task<IDocument> Navigate<TElement>(this TElement element, CancellationToken cancel) where TElement : IUrlUtilities, IElement
- public static TElement QuerySelector<TElement>(this IParentNode parent, string selectors) where TElement : IElement
- public static IEnumerable<TElement> QuerySelectorAll<TElement>(this IParentNode parent, string selectors) where TElement : IElement
- public static TElement RemoveElement<TElement>(this INode parent, TElement element) where TElement : IElement
-
public sealed class BrowsingContext : IBrowsingContext
-
public static class BrowsingContextExtensions
- public static IBrowsingContext CreateChildFor(this IBrowsingContext context, string target)
- public static IBrowsingContext FindChildFor(this IBrowsingContext context, string target)
- public static ICommand GetCommand(this IBrowsingContext context, string commandId)
- public static string GetCookie(this IBrowsingContext context, Url url)
- public static IStylingService GetCssStyling(this IBrowsingContext context)
- public static CultureInfo GetCulture(this IBrowsingContext context)
- public static CultureInfo GetCultureFrom(this IBrowsingContext context, string language)
- public static Encoding GetDefaultEncoding(this IBrowsingContext context)
- public static IEnumerable<Task> GetDownloads<T>(this IBrowsingContext context) where T : INode
- public static TFactory GetFactory<TFactory>(this IBrowsingContext context)
- public static IScriptingService GetJsScripting(this IBrowsingContext context)
- public static string GetLanguage(this IBrowsingContext context)
- public static INavigationHandler GetNavigationHandler(this IBrowsingContext context, Url url)
- public static TProvider GetProvider<TProvider>(this IBrowsingContext context)
- public static IResourceService<TResource> GetResourceService<TResource>(this IBrowsingContext context, string type) where TResource : IResourceInfo
- public static IScriptingService GetScripting(this IBrowsingContext context, string type)
- public static ISpellCheckService GetSpellCheck(this IBrowsingContext context, string language)
- public static IStylingService GetStyling(this IBrowsingContext context, string type)
- public static Task InteractAsync<T>(this IBrowsingContext context, string eventName, T data)
- public static bool IsScripting(this IBrowsingContext context)
- public static void NavigateTo(this IBrowsingContext context, IDocument document)
- public static Task<IDocument> OpenAsync(this IBrowsingContext context, IResponse response, CancellationToken cancel = default)
- public static Task<IDocument> OpenAsync(this IBrowsingContext context, DocumentRequest request, CancellationToken cancel = default)
- public static Task<IDocument> OpenAsync(this IBrowsingContext context, IResponse response, CancellationToken cancel)
- public static Task<IDocument> OpenAsync(this IBrowsingContext context, DocumentRequest request, CancellationToken cancel)
- public static Task<IDocument> OpenAsync(this IBrowsingContext context, Action<VirtualResponse> request, CancellationToken cancel = default)
- public static Task<IDocument> OpenAsync(this IBrowsingContext context, string address, CancellationToken cancellation = default)
- public static Task<IDocument> OpenNewAsync(this IBrowsingContext context, string url = null, CancellationToken cancellation = default)
- public static IBrowsingContext ResolveTargetContext(this IBrowsingContext context, string target)
- public static void SetCookie(this IBrowsingContext context, Url url, string value)
- public static Task<IDocument> OpenAsync(this IBrowsingContext context, Url url)
- public static Task<IDocument> OpenNewAsync(this IBrowsingContext context, string url = null)
-
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 WithDefaultLoader<TConfiguration>(this TConfiguration configuration, Action<LoaderService> setup = null) where TConfiguration : Configuration
- public static TConfiguration WithoutCss<TConfiguration>(this TConfiguration configuration) where TConfiguration : Configuration
-
public static class DocumentBuilder
- public static ICssStyleSheet Css(IConfiguration configuration = null, string url = null)
- public static ICssStyleSheet Css(string sourceCode, IConfiguration configuration = null, string url = null)
- public static ICssStyleSheet Css(Stream stream, IConfiguration configuration = null, string url = 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(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 contextElement = null, IConfiguration configuration = null)
-
public static class FormatExtensions
-
public interface IBrowsingContext
-
public interface IConfiguration
-
public interface IMarkupFormattable
-
public interface IMarkupFormatter
-
public interface IStyleFormattable
-
public interface IStyleFormatter
-
public struct TextPosition : IEquatable<TextPosition>, IComparable<TextPosition>
-
public struct : IEquatable<TextRange>, IComparable<TextRange>
AngleSharp.Attributes
AngleSharp.Browser
AngleSharp.Browser.Dom
AngleSharp.Browser.Dom.Events
AngleSharp.Common
AngleSharp.Css
-
public static class CombinatorSymbols
-
public sealed class CssStyleFormatter : IStyleFormatter
-
public class DefaultAttributeSelectorFactory : IAttributeSelectorFactory
-
public class DefaultPseudoClassSelectorFactory : IPseudoClassSelectorFactory
-
public class DefaultPseudoElementSelectorFactory : IPseudoElementSelectorFactory
-
public interface IAttributeSelectorFactory
-
public interface IPseudoClassSelectorFactory
-
public interface IPseudoElementSelectorFactory
-
public interface ISelectorVisitor
-
public interface IStylingService
-
public static class Colors
-
public interface IStyleEngine
-
public abstract class MediaFeature
-
public static class PseudoClassNames
-
public static class PseudoElementNames
-
public class RenderDevice
-
public class RenderStyle
-
public sealed class StyleOptions
-
public sealed class TransformMatrix : IEquatable<TransformMatrix>
- 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[] values)
- 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, float px, float py, float pz)
- public bool Equals(TransformMatrix other)
AngleSharp.Css.Dom
AngleSharp.Css.Parser
AngleSharp.Css.Values
AngleSharp.Dom
-
public sealed class Attr : IAttr, 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 CacheStatus
-
public enum
-
public abstract class Document : Node, IDocument, INode, IEventTarget, IMarkupFormattable, IParentNode, IGlobalEventHandlers, IDocumentStyle, INonElementParentNode, IDisposable
-
public static class DocumentExtensions
-
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 interface IApplicationCache : IEventTarget
-
public interface IAttributeObserver
-
public interface IDocument : INode, IEventTarget, IMarkupFormattable, IParentNode, IGlobalEventHandlers, IDocumentStyle, INonElementParentNode, IDisposable
-
public interface IDocumentFactory
-
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 IElementMap : IEnumerable<KeyValuePair<string, IElement>>, IEnumerable
-
public interface IEventTarget
-
public interface IHistory
-
public interface IImplementation
-
public interface ILinkImport
-
public interface INamedNodeMap : IEnumerable<IAttr>, IEnumerable
-
public interface INode : IEventTarget, IMarkupFormattable
-
public interface IPseudoElement : IStyleUtilities
-
public interface IShadowRoot : IDocumentFragment, INode, IEventTarget, IMarkupFormattable, IParentNode, INonElementParentNode
-
public interface ISourceReference
-
public interface IStyleSheet
-
public interface IText : ICharacterData, INode, IEventTarget, IMarkupFormattable, IChildNode, INonDocumentTypeChildNode
-
public interface IWindow : IEventTarget, IGlobalEventHandlers, IWindowEventHandlers, IWindowTimers
-
public sealed class MutationObserver
- public void Connect(INode target, bool childList = false, bool subtree = false, bool? attributes = default, bool? characterData = default, bool? attributeOldValue = default, bool? characterDataOldValue = default, IEnumerable<string> attributeFilter = null)
- public void Connect(INode target, MutationObserverInit options)
- public void Connect(INode target, IDictionary<string, object> options)
-
public static class NamespaceNames
-
public abstract class Node : EventTarget, INode, IEventTarget, IMarkupFormattable, IEquatable<INode>
-
public static class NodeExtensions
-
public sealed class MutationObserverInit
-
public enum NodeFlags
-
public sealed class Notation : Node
-
public static class ParentNodeExtensions
-
public static class QueryExtensions
-
public static class SelectorExtensions
-
public enum ShadowRootMode
-
public static class TagNames
-
public enum Sandboxes
-
public enum WordBreak
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 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 ToString(string format, IFormatProvider formatProvider)
-
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 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<ICssProperty>, IEnumerable
-
public interface ICssStyleRule : ICssRule
-
public interface ICssStyleSheet : IStyleSheet
-
public interface ICssSupportsRule : ICssConditionRule, ICssGroupingRule, ICssRule
-
public interface ICssValue
-
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
-
public class CompositionEvent : UiEvent
- public string Data { get; }
- public CompositionEvent()
- public CompositionEvent(string type, bool bubbles, bool cancelable, IWindow view, string data)
- public CompositionEvent(string type, IDictionary<string, object> eventInitDict = null)
- public void Init(string type, bool bubbles, bool cancelable, IWindow view, string data)
-
public class CustomEvent : Event
-
public class DefaultEventFactory : IEventFactory
-
public class ErrorEvent : Event
-
public class Event : EventArgs
-
public class FocusEvent : UiEvent
-
public class HashChangedEvent : Event
-
public interface IEventFactory
-
public class InputEvent : Event
- public string Data { get; }
- public InputEvent()
- public InputEvent(string type, bool bubbles, bool cancelable, string data)
- public InputEvent(string type, IDictionary<string, object> eventInitDict = null)
- public void Init(string type, bool bubbles, bool cancelable, string data)
-
public interface ITouchList
-
public interface ITouchPoint
-
public class KeyboardEvent : UiEvent
- public bool IsAltPressed { get; }
- public bool IsCtrlPressed { get; }
- public bool IsMetaPressed { get; }
- public bool IsRepeated { get; }
- public bool IsShiftPressed { get; }
- public string Key { get; }
- public string Locale { get; }
- public KeyboardLocation Location { get; }
- public KeyboardEvent()
- public KeyboardEvent(string type, bool bubbles, bool cancelable, IWindow view, int detail, string key, KeyboardLocation location, string modifiersList, bool repeat)
- public KeyboardEvent(string type, IDictionary<string, object> eventInitDict = null)
- public bool GetModifierState(string key)
- public void Init(string type, bool bubbles, bool cancelable, IWindow view, int detail, string key, KeyboardLocation location, string modifiersList, bool repeat)
-
public enum KeyboardLocation
-
public class MessageEvent : Event
-
public enum MouseButton
-
public enum MouseButtons
-
public class MouseEvent : UiEvent
- public MouseButton Button { get; }
- public MouseButtons Buttons { get; }
- public int ClientX { get; }
- public int ClientY { get; }
- public bool IsAltPressed { get; }
- public bool IsCtrlPressed { get; }
- public bool IsMetaPressed { get; }
- public bool IsShiftPressed { get; }
- public int ScreenX { get; }
- public int ScreenY { get; }
- public IEventTarget Target { get; }
- public MouseEvent()
- public MouseEvent(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 MouseEvent(string type, IDictionary<string, object> eventInitDict = null)
- public bool GetModifierState(string key)
- public 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 class PageTransitionEvent : Event
-
public class RequestEvent : Event
-
public class TouchEvent : UiEvent
-
public class TrackEvent : Event
- public object Track { get; }
- public TrackEvent()
- public TrackEvent(string type, bool bubbles, bool cancelable, object track)
- public TrackEvent(string type, IDictionary<string, object> eventInitDict = null)
- public void Init(string type, bool bubbles, bool cancelable, object track)
-
public class UiEvent : Event
-
public class WheelEvent : MouseEvent
- public WheelMode DeltaMode { get; }
- public double DeltaX { get; }
- public double DeltaY { get; }
- public double DeltaZ { get; }
- public WheelEvent()
- public WheelEvent(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 WheelEvent(string type, IDictionary<string, object> eventInitDict = null)
- public 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 WheelMode
AngleSharp.Dom.Html
-
public interface IHtmlAnchorElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IUrlUtilities
-
public interface IHtmlAreaElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IUrlUtilities
-
public interface IHtmlAudioElement : IHtmlMediaElement, IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IMediaController
-
public interface IHtmlBaseElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
- string Href { get; set; }
- string Target { get; set; }
-
public interface IHtmlBodyElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IWindowEventHandlers
-
public interface IHtmlBreakRowElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlButtonElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlCanvasElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlCommandElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlDataElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
- string Value { get; set; }
-
public interface IHtmlDataListElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlDetailsElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlDialogElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlDivElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlElement : IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlEmbedElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlFieldSetElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlFormControlsCollection : IHtmlCollection<IHtmlElement>, IEnumerable<IHtmlElement>, IEnumerable
-
public interface IHtmlFormElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlHeadElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlHeadingElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlHrElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlHtmlElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlImageElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlInputElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlKeygenElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlLabelElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlLegendElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlLinkElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, ILinkStyle
-
public interface IHtmlListItemElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlMapElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlMediaElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IMediaController
-
public interface : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
- string { get; set; }
- string { get; set; }
-
public interface : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, 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, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlMeterElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlModElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlObjectElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlOptionElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlOptionsCollection : IHtmlCollection<IHtmlOptionElement>, IEnumerable<IHtmlOptionElement>, IEnumerable
-
public interface IHtmlOptionsGroupElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlOrderedListElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlOutputElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlParagraphElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlParamElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
- string Name { get; set; }
- string Value { get; set; }
-
public interface IHtmlPreElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlProgressElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlQuoteElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlScriptElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlSelectElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlSourceElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlSpanElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlStyleElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, ILinkStyle
-
public interface IHtmlTableCaptionElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTableCellElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTableColumnElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTableDataCellElement : IHtmlTableCellElement, IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTableElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface : IHtmlTableCellElement, IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTableRowElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTableSectionElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTemplateElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTextAreaElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IValidation
-
public interface IHtmlTimeElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlTitleElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
- string Text { get; set; }
-
public interface IHtmlTrackElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlUnknownElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlUnorderedListElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface IHtmlVideoElement : IHtmlMediaElement, IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IMediaController
-
public interface ILabelabelElement
-
public interface IValidation
-
public interface IValidityState
-
public enum TableFrames
-
public enum TableRules
-
public enum TrackReadyState
AngleSharp.Dom.Io
AngleSharp.Dom.Media
AngleSharp.Dom.Navigator
AngleSharp.Dom.Svg
-
public interface ISvgCircleElement : ISvgElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface ISvgDescriptionElement : ISvgElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface ISvgDocument : IDocument, INode, IEventTarget, IMarkupFormattable, IParentNode, IGlobalEventHandlers, IDocumentStyle, INonElementParentNode, IDisposable
-
public interface ISvgElement : IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface ISvgForeignObjectElement : ISvgElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface ISvgSvgElement : ISvgElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
-
public interface ISvgTitleElement : ISvgElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
AngleSharp.Dom.Xml
AngleSharp.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 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.InputTypes
AngleSharp.Html.LinkRels
AngleSharp.Html.Parser
AngleSharp.Html.Parser.Tokens
AngleSharp.Io
AngleSharp.Io.Dom
AngleSharp.Io.Processors
AngleSharp.Linq
-
public static class ElementExtensions
- public static T AddClass<T>(this T elements, string className) where T : IEnumerable<IElement>
- public static T After<T>(this T elements, string html) where T : IEnumerable<IElement>
- public static T Append<T>(this T elements, string html) where T : IEnumerable<IElement>
- public static T Attr<T>(this T elements, string attributeName, string attributeValue) where T : IEnumerable<IElement>
- public static T Attr<T>(this T elements, IEnumerable<KeyValuePair<string, string>> attributes) where T : IEnumerable<IElement>
- public static T Attr<T>(this T elements, object attributes) where T : IEnumerable<IElement>
- public static T Before<T>(this T elements, string html) where T : IEnumerable<IElement>
- public static T Css<T>(this T elements, string propertyName, string propertyValue) where T : IEnumerable<IElement>
- public static T Css<T>(this T elements, IEnumerable<KeyValuePair<string, string>> properties) where T : IEnumerable<IElement>
- public static T Css<T>(this T elements, object properties) where T : IEnumerable<IElement>
- public static T Empty<T>(this T elements) where T : IEnumerable<IElement>
- public static bool HasClass<T>(this T elements, string className) where T : IEnumerable<IElement>
- public static string Html<T>(this T element) where T : IElement
- public static T Html<T>(this T elements, string html) where T : IEnumerable<IElement>
- public static T Prepend<T>(this T elements, string html) where T : IEnumerable<IElement>
- public static T RemoveClass<T>(this T elements, string className) where T : IEnumerable<IElement>
- public static T ToggleClass<T>(this T elements, string className) where T : IEnumerable<IElement>
- public static T Wrap<T>(this T elements, string html) where T : IEnumerable<IElement>
- public static T WrapAll<T>(this T elements, string html) where T : IEnumerable<IElement>
- public static T WrapInner<T>(this T elements, string html) where T : IEnumerable<IElement>
-
public static class NodeExtensions
-
public static class SelectorExtensions
-
public static class StyleSheetExtensions
AngleSharp.Mathml.Dom
AngleSharp.Media
AngleSharp.Media.Dom
AngleSharp.Network
AngleSharp.Network.Default
AngleSharp.Parser.Css
AngleSharp.Parser.Html
AngleSharp.Scripting
AngleSharp.Services
AngleSharp.Services.Default
AngleSharp.Services.Media
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.Xhtml
AngleSharp.Xml