API Diff between 0.8.2 and 0.8.7
322 Additions
130 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 static class BrowsingContextExtensions
-
public class Configuration : IConfiguration
-
public static class ConfigurationExtensions
-
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 interface IBindable
-
public interface IMarkupFormatter
-
public interface IStyleFormattable
-
public interface IStyleFormatter
-
public struct TextPosition : IEquatable<TextPosition>, IComparable<TextPosition>
AngleSharp.Css
AngleSharp.Css.Values
-
public struct Angle : IEquatable<Angle>, IComparable<Angle>, IFormattable
-
public struct Color : IEquatable<Color>, IComparable<Color>, IFormattable
-
public struct Frequency : IEquatable<Frequency>, IComparable<Frequency>, IFormattable
-
public struct GradientStop
-
public struct Length : IEquatable<Length>, IComparable<Length>, IFormattable
-
public struct Number : IEquatable<Number>, IComparable<Number>, IFormattable
-
public struct Percent : IEquatable<Percent>, IComparable<Percent>, IFormattable
-
public struct Point
-
public struct Resolution : IEquatable<Resolution>, IComparable<Resolution>, IFormattable
-
public sealed class Shadow
- public Length BlurRadius { get; }
- public Color Color { get; }
- public Length BlurRadius { get; }
- public Color Color { get; }
- public Length OffsetX { get; }
- public Length OffsetY { get; }
- public Length SpreadRadius { get; }
- public Shadow(bool inset, Length offsetX, Length offsetY, Length blurRadius, Length spreadRadius, Color color)
- public Length OffsetX { get; }
- public Length OffsetY { get; }
- public Length SpreadRadius { get; }
- public Shadow(bool inset, Length offsetX, Length offsetY, Length blurRadius, Length spreadRadius, Color color)
-
public sealed class Shape
-
public struct Time : IEquatable<Time>, IComparable<Time>, IFormattable
AngleSharp.Dom
AngleSharp.Dom.Css
-
public struct Angle : IEquatable<Angle>, IComparable<Angle>, IFormattable, ICssValue
-
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 class CssStyleEngine : IStyleEngine
-
public enum CssValueType
-
public enum FontWeight
-
public struct Frequency : IEquatable<Frequency>, IComparable<Frequency>, IFormattable, ICssValue
-
public interface ICssProperty
-
public interface ICssRuleList : IEnumerable<ICssRule>, IEnumerable
-
public interface ICssStyleDeclaration : IEnumerable<ICssProperty>, IEnumerable
- string this[string propertyName] { get; }
-
public interface ICssValue
-
public interface IKeyframeSelector
-
public struct Length : IEquatable<Length>, IComparable<Length>, IFormattable, ICssValue
-
public struct Number : IEquatable<Number>, IComparable<Number>, IFormattable, ICssValue
-
public struct Percent : IEquatable<Percent>, IComparable<Percent>, IFormattable, ICssValue
-
public struct Resolution : IEquatable<Resolution>, IComparable<Resolution>, IFormattable, ICssValue
-
public struct Time : IEquatable<Time>, IComparable<Time>, IFormattable, ICssValue
AngleSharp.Dom.Html
-
public interface IHtmlDocument : IDocument, INode, IEventTarget, IMarkupFormattable, IParentNode, IGlobalEventHandlers, IDocumentStyle, INonElementParentNode, IDisposable
-
public interface IHtmlHtmlElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle
AngleSharp.Dom.Io
AngleSharp.Dom.Svg
AngleSharp.Dom.Xml
AngleSharp.Events
AngleSharp.Extensions
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.Network
-
public class DocumentRequest
- public static DocumentRequest Get(Url target, INode source = null, string referer = null)
- public static DocumentRequest Post(Url target, Stream body, string type, INode source = null, string referer = null)
- public static DocumentRequest PostAsPlaintext(Url target, IDictionary<string, string> fields)
- public static DocumentRequest PostAsUrlencoded(Url target, IDictionary<string, string> fields)
-
public static class
AngleSharp.Parser.Css
AngleSharp.Parser.Html
AngleSharp.Parser.Xml
AngleSharp.Scripting
AngleSharp.Services
AngleSharp.Services.Default
AngleSharp.Services.Scripting
AngleSharp.Services.Styling