API Diff between 1.1.2 and 0.14.0-alpha-788
503 Additions
44 Removals
AngleSharp
-
public sealed class BrowsingContext : EventTarget, IBrowsingContext, IEventTarget, IDisposable
-
public static class BrowsingContextExtensions
- public static string GetCookie(this IBrowsingContext context, Url url)
- public static string GetCookie(this IBrowsingContext context, Url url)
- public static INavigationHandler GetNavigationHandler(this IBrowsingContext context, Url url)
- public static INavigationHandler GetNavigationHandler(this IBrowsingContext context, Url url)
- public static Task<IDocument> OpenAsync(this IBrowsingContext context, Url url, CancellationToken cancel = default)
- public static Task<IDocument> OpenAsync(this IBrowsingContext context, Url url, CancellationToken cancel = default)
- public static void SetCookie(this IBrowsingContext context, Url url, string value)
- public static void SetCookie(this IBrowsingContext context, Url url, string value)
- public static void TrackError(this IBrowsingContext context, Exception ex)
-
public static class ConfigurationExtensions
-
public static class FormatExtensions
-
public interface IMarkupFormatter
-
public sealed class Url : IEquatable<Url>
AngleSharp.Browser
AngleSharp.Browser.Dom.Events
AngleSharp.Common
AngleSharp.Css
AngleSharp.Css.Dom
AngleSharp.Dom
-
public sealed class Attr : IAttr, INode, IEventTarget, IMarkupFormattable, IEquatable<IAttr>, IConstructableAttr
-
public static class AttributeNames
- public static readonly string Clear
- public static readonly string Codetype
- public static readonly string Compact
- public static readonly string Declare
- public static readonly string Direction
- public static readonly string NoHref
- public static readonly string NoShade
- public static readonly string ValueType
-
public abstract class Document : Node, IDocument, INode, IEventTarget, IMarkupFormattable, IParentNode, IGlobalEventHandlers, IDocumentStyle, INonElementParentNode, IDisposable, IConstructableDocument, IConstructableNode
-
public abstract class Element : Node, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IConstructableElement, IConstructableNode
-
public static class ElementExtensions
-
public interface IAttr : INode, IEventTarget, IMarkupFormattable, IEquatable<IAttr>
-
public interface IDocument : INode, IEventTarget, IMarkupFormattable, IParentNode, IGlobalEventHandlers, IDocumentStyle, INonElementParentNode, IDisposable
-
public interface IElement : INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode
-
public interface IEntityProviderExtended
-
public interface INode : IEventTarget, IMarkupFormattable
-
public interface IReverseEntityProvider
-
public interface IShadowRoot : IDocumentFragment, INode, IEventTarget, IMarkupFormattable, IParentNode, INonElementParentNode
-
public abstract class Node : EventTarget, INode, IEventTarget, IMarkupFormattable, IEquatable<INode>, IConstructableNode
-
public static class NodeExtensions
-
public enum NodeFlags
-
public static class ParentNodeExtensions
-
public static class QueryExtensions
- public static bool Contains<T>(this T list, string[] tokens) where T : ITokenList
- public static IHtmlCollection<IElement> GetElementsByClassName<T>(this T elements, string classNames) where T : INodeList
- public static IHtmlCollection<IElement> GetElementsByTagName<T>(this T elements, string tagName) where T : INodeList
- public static IHtmlCollection<IElement> GetElementsByTagName<T>(this T elements, string namespaceUri, string localName) where T : INodeList
- public static IElement QuerySelector<T>(this T nodes, string selectorText, INode scopeNode = null) where T : INodeList
- public static T QuerySelector<TNodeList, T>(this TNodeList elements, ISelector selectors) where TNodeList : INodeList
- public static IElement QuerySelector<T>(this T elements, ISelector selector) where T : INodeList
- public static IHtmlCollection<IElement> QuerySelectorAll<T>(this T nodes, string selectorText, INode scopeNode = null) where T : INodeList
- public static IHtmlCollection<IElement> QuerySelectorAll<T>(this T elements, ISelector selector) where T : INodeList
- public static void QuerySelectorAll<T>(this T elements, ISelector selector, List<IElement> result) where T : INodeList
-
public enum QuirksMode
-
public sealed class Url : IEquatable<Url>
-
public class UrlSearchParams
AngleSharp.Dom.Events
AngleSharp.Html
AngleSharp.Html.Construction
-
public interface IConstructableAttr
-
public interface IConstructableDocument : IConstructableNode
-
public interface IConstructableElement : IConstructableNode
-
public interface IConstructableFormElement : IConstructableElement, IConstructableNode
-
public interface IConstructableFrameElement : IConstructableElement, IConstructableNode
-
public interface IConstructableMathElement : IConstructableElement, IConstructableNode
-
public interface IConstructableMetaElement : IConstructableElement, IConstructableNode
-
public interface IConstructableNamedNodeMap
-
public interface IConstructableNode
-
public interface IConstructableNodeList : IEnumerable<IConstructableNode>, IEnumerable
-
public interface IConstructableScriptElement : IConstructableElement, IConstructableNode
-
public interface IConstructableSvgElement : IConstructableElement, IConstructableNode
-
public interface IConstructableTemplateElement : IConstructableElement, IConstructableNode
-
public interface IDomConstructionElementFactory<TDocument, TElement> where TDocument : IConstructableDocument where TElement : IConstructableElement
- TElement Create(TDocument document, StringOrMemory localName, StringOrMemory prefix = default, NodeFlags flags = 0)
- TDocument CreateDocument(TextSource source, IBrowsingContext context = null)
- IConstructableNode CreateDocumentType(TDocument document, StringOrMemory name, StringOrMemory publicIdentifier, StringOrMemory systemIdentifier)
- IConstructableFormElement CreateForm(TDocument document)
- IConstructableFrameElement CreateFrame(TDocument document)
- IConstructableMathElement CreateMath(TDocument document, StringOrMemory name = default)
- IConstructableMetaElement CreateMeta(TDocument document)
- TElement CreateNoScript(TDocument document, bool scripting)
- IConstructableScriptElement CreateScript(TDocument document, bool parserInserted, bool started)
- IConstructableSvgElement CreateSvg(TDocument document, StringOrMemory name = default)
- IConstructableTemplateElement CreateTemplate(TDocument document)
- TElement CreateUnknown(TDocument document, StringOrMemory tagName)
-
public interface IHtmlElementConstructionFactory : IDomConstructionElementFactory<Document, Element>
AngleSharp.Html.Dom
AngleSharp.Html.Forms.Submitters
AngleSharp.Html.InputTypes
AngleSharp.Html.LinkRels
AngleSharp.Html.Parser
AngleSharp.Html.Parser.Tokens.Struct
AngleSharp.Io
-
public abstract class BaseLoader : ILoader
-
public sealed class DefaultResponse : IResponse, IDisposable
-
public class DocumentRequest
- public Url Target { get; }
- public DocumentRequest(Url target)
- 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 Url Target { get; }
- public DocumentRequest(Url target)
- 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 PostAsMultipart(Url target, FormDataSet form)
- public static DocumentRequest PostAsMultipart(Url target, Stream formBody, string formBoundary)
- public static DocumentRequest PostAsPlaintext(Url target, IDictionary<string, string> fields)
- public static DocumentRequest PostAsUrlencoded(Url target, IDictionary<string, string> fields)
-
public interface ICookieProvider
-
public interface IDownload : ICancellable<IResponse>, ICancellable
-
public interface IResponse : IDisposable
-
public class MemoryCookieProvider : ICookieProvider
-
public sealed class Request
-
public class ResourceRequest
-
public class VirtualResponse : IResponse, IDisposable
AngleSharp.Io.Processors
AngleSharp.Media
AngleSharp.Text
-
public sealed class CharArrayTextSource : IReadOnlyTextSource, IDisposable
-
public static class CharExtensions
- public static bool IsCustomElementName(this char c)
- public static bool IsOneOf(this char c, char a, char b)
- public static bool IsOneOf(this char c, char o1, char o2, char o3)
- public static bool IsOneOf(this char c, char o1, char o2, char o3, char o4)
-
public interface IReadOnlyTextSource : IDisposable
-
public interface ITextSource : IReadOnlyTextSource, IDisposable
-
public sealed class ReadOnlyMemoryTextSource : IReadOnlyTextSource, IDisposable
-
public static class StringExtensions
- public static StringOrMemory HtmlLower(this StringOrMemory value)
- public static bool Is(this string current, StringOrMemory other)
- public static bool Is(this Span<char> current, string other)
- public static bool Is(this ReadOnlySpan<char> current, ReadOnlyMemory<char> other)
- public static bool Is(this ReadOnlySpan<char> current, ReadOnlySpan<char> other)
- public static bool IsCustomElement(this string tag)
- public static bool IsCustomElement(this StringOrMemory tag)
- public static bool Isi(this string current, StringOrMemory other)
- public static bool Isi(this Span<char> current, string other)
- public static bool Isi(this Span<char> current, ReadOnlySpan<char> other)
- public static bool Isi(this Span<char> current, ReadOnlyMemory<char> other)
- public static bool Isi(this ReadOnlySpan<char> current, string other)
- public static string[] SplitWithoutTrimming(this char[] chars, char c)
- public static string StripLeadingTrailingSpaces(this char[] array)
-
public sealed class StringTextSource : IReadOnlyTextSource, IDisposable
-
public sealed class TextSource : ITextSource, IReadOnlyTextSource, IDisposable
-
public static class XmlExtensions
AngleSharp.Xhtml