API Diff between 0.6.0 and 0.7.0
1117 Additions
425 Removals
AngleSharp
-
public static class ApiExtensions
-
public enum Accessors
-
public struct Angle : IEquatable<Angle>, ICssObject
-
public struct Color : IEquatable<Color>, ICssObject
- public static readonly Color Black
- public static readonly Color Blue
- public static readonly Color Green
- public static readonly Color Magenta
- public static readonly Color PureGreen
- public static readonly Color Red
- public static readonly Color Transparent
- public static readonly Color White
- public byte A { get; }
- public double Alpha { get; }
- public byte B { get; }
- public byte G { get; }
- public byte R { get; }
- public int Value { get; }
- public Color(byte r, byte g, byte b)
- public Color(byte r, byte g, byte b, byte a)
- public Color(byte r, byte g, byte b, double a)
- public static Color FromHex(string color)
- public static Color FromHsl(float h, float s, float l)
- public static Color FromHsla(float h, float s, float l, float alpha)
- public static Color? FromName(string name)
- public static Color FromRgb(byte r, byte g, byte b)
- public static Color FromRgba(byte r, byte g, byte b, double a)
- public static Color Mix(Color above, Color below)
- public static Color Mix(double alpha, Color above, Color below)
- public static bool op_Equality(Color a, Color b)
- public static bool op_Inequality(Color a, Color b)
- public static bool TryFromHex(string color, out Color value)
- public bool Equals(Color other)
- public string ToCss()
-
public class Configuration : IConfiguration
-
public static class ConfigurationExtensions
-
public static class ContextExtensions
-
public sealed class DocumentBuilder
- public static ICssStyleSheet Css(string sourceCode, IConfiguration configuration = null, string url = null)
- public static ICssStyleSheet Css(string sourceCode, IConfiguration configuration = null)
- public static ICssStyleSheet Css(Stream stream, IConfiguration configuration = null, string url = null)
- public static ICssStyleSheet Css(Stream stream, 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 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 static INodeList HtmlFragment(string sourceCode, INode context = null, IConfiguration configuration = null)
- public ICssStyleSheet FromCss(Stream stream)
- public Task<ICssStyleSheet> FromCssAsync(Stream stream)
- public Task<ICssStyleSheet> FromCssAsync(Stream stream, CancellationToken cancel)
- public IDocument FromHtml(Stream stream)
- 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 T Css<T>(this T elements, string declarations) where T : IEnumerable<IElement>
- public static ICssStyleSheet GetCss(this Uri uri, IConfiguration configuration = null)
- public static Task<ICssStyleSheet> GetCssAsync(this Uri uri, IConfiguration configuration = null)
- public static Task<ICssStyleSheet> GetCssAsync(this Uri uri, CancellationToken cancel, IConfiguration configuration = null)
- public static IDocument GetHtml(this Uri uri, IConfiguration configuration = null)
- public static Task<IDocument> GetHtmlAsync(this Uri uri, IConfiguration configuration = null)
- public static Task<IDocument> GetHtmlAsync(this Uri uri, CancellationToken cancel, IConfiguration configuration = null)
- public static T Html<T>(this T elements, string html) where T : IEnumerable<IElement>
- public static int Index<T>(this IEnumerable<T> elements, T item) where T : IElement
- public static ICssStyleSheet ParseCss(this string content, IConfiguration configuration = null)
- public static IDocument ParseHtml(this string content, IConfiguration configuration = null)
- public static IHtmlCollection QueryXpath(this IDocument document, string xpath)
- public static IHtmlCollection QueryXpath(this IElement element, string xpath)
- public static IHtmlCollection QueryXpath(this INodeList nodes, string xpath)
- public static T Text<T>(this T elements, string text) where T : IEnumerable<IElement>
- public static string ToHtml(this IElement element)
- public static string ToHtml(this IDocumentType doctype)
- public static string ToText(this IElement element)
-
public struct Frequency : IEquatable<Frequency>, ICssObject
-
public interface IConfiguration
-
public struct Length : IEquatable<Length>, ICssObject
-
public struct Number : IEquatable<Number>, ICssObject
-
public struct Percent : IEquatable<Percent>, ICssObject
-
public struct Priority : IEquatable<Priority>
- public static readonly Priority Custom
- public static readonly Priority Important
- public static readonly Priority Inline
- public static readonly Priority OneClass
- public static readonly Priority OneId
- public static readonly Priority OneTag
- public static readonly Priority Zero
- public byte Classes { get; }
- public byte Ids { get; }
- public byte Inlines { get; }
- public byte Tags { get; }
- public Priority(uint priority)
- public Priority(byte inlines, byte ids, byte classes, byte tags)
- public static Priority op_Addition(Priority a, Priority b)
- public static bool op_Equality(Priority a, Priority b)
- public static bool op_GreaterThan(Priority a, Priority b)
- public static bool op_GreaterThanOrEqual(Priority a, Priority b)
- public static bool op_Inequality(Priority a, Priority b)
- public static bool op_LessThan(Priority a, Priority b)
- public static bool op_LessThanOrEqual(Priority a, Priority b)
- public bool Equals(Priority other)
-
public struct Resolution : IEquatable<Resolution>, ICssObject
-
public sealed class Shadow
-
public struct Time : IEquatable<Time>, ICssObject
-
public class Url
-
public struct TransformMatrix : IEquatable<TransformMatrix>, ICssObject
- public static readonly TransformMatrix One
- public static readonly TransformMatrix Zero
- public float M11 { get; }
- public float M12 { get; }
- public float M13 { get; }
- public float M21 { get; }
- public float M22 { get; }
- public float M23 { get; }
- public float M31 { get; }
- public float M32 { get; }
- public float M33 { get; }
- public float Tx { get; }
- public float Ty { get; }
- public float Tz { get; }
- public TransformMatrix(float m11, float m12, float m13, float m21, float m22, float m23, float m31, float m32, float m33, float tx, float ty, float tz)
- public static TransformMatrix op_Multiply(TransformMatrix a, TransformMatrix b)
- public bool Equals(TransformMatrix other)
- public string ToCss()
AngleSharp.Attributes
AngleSharp.Css
-
public struct Angle : IEquatable<Angle>, ICssObject
-
public struct Color : IEquatable<Color>, ICssObject
-
public sealed class Counter : ICssObject
-
public sealed class CubicBezierTransitionFunction : TransitionFunction
-
public struct Frequency : IEquatable<Frequency>, ICssObject
-
public struct GradientStop : ICssObject
-
public interface IDistance
-
public interface ITransform
-
public struct Length : IEquatable<Length>, IDistance, ICssObject
-
public sealed class LinearGradient : ICssObject
-
public struct Number : IEquatable<Number>, ICssObject
-
public struct Percent : IEquatable<Percent>, IDistance, ICssObject
-
public sealed class Point : ICssObject
-
public struct Priority : IEquatable<Priority>
-
public sealed class RadialGradient : ICssObject
-
public struct Resolution : IEquatable<Resolution>, ICssObject
-
public sealed class Shadow : ICssObject
-
public sealed class Shape : ICssObject
-
public sealed class StepsTransitionFunction : TransitionFunction
-
public struct Time : IEquatable<Time>, ICssObject
-
public struct TransformMatrix : IEquatable<TransformMatrix>, ICssObject
-
public abstract class TransitionFunction : ICssObject
AngleSharp.DOM
-
public enum CacheStatus
-
public sealed delegate DomEventHandler : MulticastDelegate
-
public abstract class EventTarget : IEventTarget
-
public sealed delegate ErrorEventListener : MulticastDelegate
- public ErrorEventListener(object object, IntPtr method)
- public virtual IAsyncResult BeginInvoke(IEvent ev, string source, int? line, int? column, DomException error, AsyncCallback callback, object object)
- public virtual void EndInvoke(IAsyncResult result)
- public virtual void Invoke(IEvent ev, string source = null, int? line = default, int? column = default, DomException error = null)
-
public sealed delegate EventListener : MulticastDelegate
-
public enum EventPhase
-
public interface IApplicationCache : IEventTarget
-
public interface IBrowsingContext
-
public interface IChildNode
-
public interface ICustomEvent<T> : IEvent
- T Details { get; }
- void Init(string type, bool bubbles, bool cancelable, T details)
-
public interface IDocument : INode, IEventTarget, IParentNode, IGlobalEventHandlers, IDocumentStyle
-
public interface IDocumentStyle
-
public interface IEvent
-
public interface IEventTarget
-
public interface IMutationObserver
-
public interface IMutationObserverInit
-
public interface IMutationRecord
-
public interface INode : IEventTarget
-
public interface INonDocumentTypeChildNode
-
public interface INonElementParentNode
-
public interface IRange
-
public interface IWindow : IEventTarget
-
public interface IWindowEventHandlers
-
public interface IWindowTimers
-
public interface IWindowProxy : IWindow, IEventTarget
-
public class Node : INode, IEventTarget, IHtmlObject
-
public sealed delegate UnloadEventListener : MulticastDelegate
AngleSharp.DOM.Css
-
public abstract class CSSCalcValue : CSSValue
-
public sealed class CSSColorProperty : CSSProperty
-
public abstract class CSSImageValue : CSSValue
-
public sealed class CSSMedium : ICssObject, IEnumerable<MediaFeature>, IEnumerable
-
public class CSSProperty : ICssObject
-
public sealed class CSSShapeValue : CSSValue
-
public sealed class CSSStyleDeclaration : IEnumerable<CSSProperty>, IEnumerable
-
public sealed class CSSTextDecorationColorProperty : CSSProperty
-
public abstract class CSSTimingValue : CSSValue
-
public abstract class CSSTransformValue : CSSValue
-
public class CSSValue : ICssObject
-
public enum CssValueType
-
public sealed class CSSVerticalAlignProperty : CSSProperty
-
public interface ICssAnimationDelayProperty : ICssProperty
-
public interface ICssAnimationDirectionProperty : ICssProperty
-
public interface ICssAnimationDurationProperty : ICssProperty
-
public interface ICssAnimationFillModeProperty : ICssProperty
-
public interface ICssAnimationIterationCountProperty : ICssProperty
-
public interface ICssAnimationNameProperty : ICssProperty
-
public interface ICssAnimationPlayStateProperty : ICssProperty
-
public interface ICssAnimationProperty : ICssAnimationDelayProperty, ICssAnimationDirectionProperty, ICssAnimationDurationProperty, ICssAnimationFillModeProperty, ICssAnimationIterationCountProperty, ICssAnimationNameProperty, ICssAnimationTimingFunctionProperty, ICssAnimationPlayStateProperty, ICssProperty
-
public interface ICssAnimationTimingFunctionProperty : ICssProperty
-
public interface ICssBackfaceVisibilityProperty : ICssProperty
-
public interface ICssBackgroundAttachmentProperty : ICssProperty
-
public interface ICssBackgroundClipProperty : ICssProperty
-
public interface ICssBackgroundColorProperty : ICssProperty
-
public interface ICssBackgroundImageProperty : ICssProperty
-
public interface ICssBackgroundOriginProperty : ICssProperty
-
public interface ICssBackgroundPositionProperty : ICssProperty
-
public interface ICssBackgroundProperty : ICssBackgroundAttachmentProperty, ICssBackgroundClipProperty, ICssBackgroundColorProperty, ICssBackgroundImageProperty, ICssBackgroundOriginProperty, ICssBackgroundPositionProperty, ICssBackgroundRepeatProperty, ICssBackgroundSizeProperty, ICssProperty
-
public interface ICssBackgroundRepeatProperty : ICssProperty
-
public interface ICssBackgroundSizeProperty : ICssProperty
-
public interface ICssBorderBottomLeftRadiusProperty : ICssProperty
-
public interface ICssBorderBottomRightRadiusProperty : ICssProperty
-
public interface ICssBorderCollapseProperty : ICssProperty
-
public interface ICssBorderColorProperty : ICssProperty
-
public interface ICssBorderColorsProperty : ICssProperty
-
public interface ICssBorderImageOutsetProperty : ICssProperty
-
public interface ICssBorderImageProperty : ICssBorderImageWidthProperty, ICssBorderImageSourceProperty, ICssBorderImageSliceProperty, ICssBorderImageRepeatProperty, ICssBorderImageOutsetProperty, ICssProperty
-
public interface ICssBorderImageRepeatProperty : ICssProperty
-
public interface ICssBorderImageSliceProperty : ICssProperty
-
public interface ICssBorderImageSourceProperty : ICssProperty
-
public interface ICssBorderImageWidthProperty : ICssProperty
-
public interface ICssBorderProperty : ICssBorderWidthProperty, ICssBorderStyleProperty, ICssBorderColorProperty, ICssProperty
-
public interface ICssBorderRadiusProperty : ICssBorderBottomLeftRadiusProperty, ICssBorderBottomRightRadiusProperty, ICssBorderTopLeftRadiusProperty, ICssBorderTopRightRadiusProperty, ICssProperty
-
public interface ICssBorderSpacingProperty : ICssProperty
-
public interface ICssBorderStyleProperty : ICssProperty
-
public interface ICssBorderStylesProperty : ICssProperty
-
public interface ICssBorderTopLeftRadiusProperty : ICssProperty
-
public interface ICssBorderTopRightRadiusProperty : ICssProperty
-
public interface ICssBorderWidthProperty : ICssProperty
-
public interface ICssBorderWidthsProperty : ICssProperty
-
public interface ICssBottomProperty : ICssProperty
-
public interface ICssBoxDecorationBreak : ICssProperty
-
public interface ICssBoxShadowProperty : ICssProperty
-
public interface ICssBreakAfterProperty : ICssProperty
-
public interface ICssBreakBeforeProperty : ICssProperty
-
public interface ICssBreakInsideProperty : ICssProperty
-
public interface ICssCaptionSideProperty : ICssProperty
-
public interface ICssClearProperty : ICssProperty
-
public interface ICssClipProperty : ICssProperty
-
public interface ICssColorProperty : ICssProperty
-
public interface ICssColumnCountProperty : ICssProperty
-
public interface ICssColumnFillProperty : ICssProperty
-
public interface ICssColumnGapProperty : ICssProperty
-
public interface ICssColumnRuleColorProperty : ICssProperty
-
public interface ICssColumnRuleProperty : ICssColumnRuleColorProperty, ICssColumnRuleStyleProperty, ICssColumnRuleWidthProperty, ICssProperty
-
public interface ICssColumnRuleStyleProperty : ICssProperty
-
public interface ICssColumnRuleWidthProperty : ICssProperty
-
public interface ICssColumnSpanProperty : ICssProperty
-
public interface ICssColumnsProperty : ICssColumnWidthProperty, ICssColumnCountProperty, ICssProperty
-
public interface ICssColumnWidthProperty : ICssProperty
-
public interface ICssContentProperty : ICssProperty
-
public interface ICssCounterIncrementProperty : ICssProperty
-
public interface ICssCounterResetProperty : ICssProperty
-
public interface ICssCursorProperty : ICssProperty
-
public interface ICssDirectionProperty : ICssProperty
-
public interface ICssDisplayProperty : ICssProperty
-
public interface ICssEmptyCellsProperty : ICssProperty
-
public interface ICssFloatProperty : ICssProperty
-
public interface ICssFontFamilyProperty : ICssProperty
-
public interface ICssFontProperty : ICssFontStyleProperty, ICssFontVariantProperty, ICssFontWeightProperty, ICssFontStretchProperty, ICssFontSizeProperty, ICssFontFamilyProperty, ICssLineHeightProperty, ICssProperty
-
public interface ICssFontSizeProperty : ICssProperty
-
public interface ICssFontStretchProperty : ICssProperty
-
public interface ICssFontStyleProperty : ICssProperty
-
public interface ICssFontVariantProperty : ICssProperty
-
public interface ICssFontWeightProperty : ICssProperty
-
public interface ICssHeightProperty : ICssProperty
-
public interface ICssKeyframeRule : ICssRule
-
public interface ICssLeftProperty : ICssProperty
-
public interface ICssLetterSpacingProperty : ICssProperty
-
public interface ICssLineHeightProperty : ICssProperty
-
public interface ICssListStyleImageProperty : ICssProperty
-
public interface ICssListStylePositionProperty : ICssProperty
-
public interface ICssListStyleProperty : ICssListStyleImageProperty, ICssListStylePositionProperty, ICssListStyleTypeProperty, ICssProperty
-
public interface ICssListStyleTypeProperty : ICssProperty
-
public interface ICssMarginBottomProperty : ICssProperty
-
public interface ICssMarginLeftProperty : ICssProperty
-
public interface ICssMarginProperty : ICssMarginBottomProperty, ICssMarginLeftProperty, ICssMarginRightProperty, ICssMarginTopProperty, ICssProperty
-
public interface ICssMarginRightProperty : ICssProperty
-
public interface ICssMarginRule : ICssRule
-
public interface ICssMarginTopProperty : ICssProperty
-
public interface ICssMaxHeightProperty : ICssProperty
-
public interface ICssMaxWidthProperty : ICssProperty
-
public interface ICssMinHeightProperty : ICssProperty
-
public interface ICssMinWidthProperty : ICssProperty
-
public interface ICssOpacityProperty : ICssProperty
-
public interface ICssOrphansProperty : ICssProperty
-
public interface ICssOutlineColorProperty : ICssProperty
-
public interface ICssOutlineProperty : ICssOutlineColorProperty, ICssOutlineStyleProperty, ICssOutlineWidthProperty, ICssProperty
-
public interface ICssOutlineStyleProperty : ICssProperty
-
public interface ICssOutlineWidthProperty : ICssProperty
-
public interface ICssOverflowProperty : ICssProperty
-
public interface ICssPaddingBottomProperty : ICssProperty
-
public interface ICssPaddingLeftProperty : ICssProperty
-
public interface ICssPaddingProperty : ICssPaddingBottomProperty, ICssPaddingRightProperty, ICssPaddingTopProperty, ICssPaddingLeftProperty, ICssProperty
-
public interface ICssPaddingRightProperty : ICssProperty
-
public interface ICssPaddingTopProperty : ICssProperty
-
public interface ICssPageBreakAfterProperty : ICssProperty
-
public interface ICssPageBreakBeforeProperty : ICssProperty
-
public interface ICssPageBreakInsideProperty : ICssProperty
-
public interface : ICssGroupingRule, ICssRule
-
public interface ICssPerspectiveOriginProperty : ICssProperty
-
public interface ICssPerspectiveProperty : ICssProperty
-
public interface ICssPositionProperty : ICssProperty
-
public interface ICssProperty
-
public interface ICssQuotesProperty : ICssProperty
-
public interface ICssRightProperty : ICssProperty
-
public interface ICssStyleDeclaration : IEnumerable<ICssProperty>, IEnumerable
-
public interface ICssStyleRule : ICssRule
-
public interface ICssTableLayoutProperty : ICssProperty
-
public interface ICssTextAlignProperty : ICssProperty
-
public interface ICssTextDecorationColorProperty : ICssProperty
-
public interface ICssTextDecorationLineProperty : ICssProperty
-
public interface ICssTextDecorationProperty : ICssTextDecorationColorProperty, ICssTextDecorationLineProperty, ICssTextDecorationStyleProperty, ICssProperty
-
public interface ICssTextDecorationStyleProperty : ICssProperty
-
public interface ICssTextIndentProperty : ICssProperty
-
public interface ICssTextShadowProperty : ICssProperty
-
public interface ICssTextTransformProperty : ICssProperty
-
public interface ICssTopProperty : ICssProperty
-
public interface ICssTransformOriginProperty : ICssProperty
-
public interface ICssTransformProperty : ICssProperty
-
public interface ICssTransformStyleProperty : ICssProperty
-
public interface ICssTransitionDelayProperty : ICssProperty
-
public interface ICssTransitionDurationProperty : ICssProperty
-
public interface ICssTransitionProperty : ICssTransitionDelayProperty, ICssTransitionDurationProperty, ICssTransitionPropertyProperty, ICssTransitionTimingFunctionProperty, ICssProperty
-
public interface ICssTransitionPropertyProperty : ICssProperty
-
public interface ICssTransitionTimingFunctionProperty : ICssProperty
-
public interface ICssUnicodeBidiProperty : ICssProperty
-
public interface ICssValue
-
public interface ICssVerticalAlignProperty : ICssProperty
-
public interface ICssVisibilityProperty : ICssProperty
-
public interface ICssWhitespaceProperty : ICssProperty
-
public interface ICssWidowsProperty : ICssProperty
-
public interface ICssWidthProperty : ICssProperty
-
public interface ICssWordSpacingProperty : ICssProperty
-
public interface ICssZIndexProperty : ICssProperty
-
public interface IElementCssInlineStyle
-
public interface IMediaList : IEnumerable<string>, IEnumerable
-
public interface ISelector
-
public interface IStyleUtilities
-
public enum OverflowMode
-
public enum PositionMode
-
public sealed class Point2d
-
public enum UnitType
AngleSharp.DOM.Css.Media
AngleSharp.DOM.Css.Properties
AngleSharp.DOM.Events
AngleSharp.DOM.Html
AngleSharp.DOM.Media
AngleSharp.DOM.Xml
AngleSharp.Infrastructure
AngleSharp.Media
AngleSharp.Network
AngleSharp.Parser
AngleSharp.Parser.Css
AngleSharp.Parser.Html
AngleSharp.Tools