diff --git a/bin/Release/AngleSharp.dll b/bin/Release/AngleSharp.dll new file mode 100644 index 0000000..dc5de06 Binary files /dev/null and b/bin/Release/AngleSharp.dll differ diff --git a/bin/Release/AngleSharp.xml b/bin/Release/AngleSharp.xml new file mode 100644 index 0000000..b95de45 --- /dev/null +++ b/bin/Release/AngleSharp.xml @@ -0,0 +1,25528 @@ + + + + AngleSharp + + + + + The various DOM object accessor types. + + + + + Specifies that the property does not have any special meaning. + + + + + Specifies that the property or method should be handled as a getter. + + + + + Specifies that the property or method should be handled as a setter. + + + + + Specifies that the property or method should be handled by delete. + + + + + Specifies that the method should be handled as an event adder. + + + + + Specifies that the method should be handled by an event remover. + + + + + This attribute decorates official DOM objects as specified by the W3C. + You could use it to check if the given property or method should be + placed on special locations, e.g. as a getter, setter or handled by a + delete call. + + + + + Creates a new DomAccessorAttribute. + + + The type of accessors to apply. + + + + + Gets the accessor types for the given property or method. + + + + + This attribute is used to mark a constructor as being + accessible from scripts. + + + + + This attribute is used to place a description on some object. + The description can then be read out at runtime. + + + + + Creates a new DomDescriptionAttribute. + + + The description of the decorated type or member. + + + + + Gets the official name of the given class, + method or property. + + + + + This attribute is used to determine the hosting interface. + + + + + Creates a new DomExposedAttribute. + + + The official name of the target interface. + + + + + Gets the official name of the target interface. + + + + + This attribute decorates official DOM objects that should no longer be + used and are therefore considered deprecated. + + + + + This attribute decorates official DOM methods as specified by the W3C. + It tells scripting engines that bags with objects should be provided, + which have to be expanded to be used as arguments. + + + + + Creates a new DomInitDict attribute. + + The start index of the dictionary. + Has a dictionary to be present? + + + + Gets the offset of the passed arguments. Arguments before the offset + will be skipped and are not part of the dictionary. + + + + + Gets if the dictionary is completely optional and does not have to + be present. + + + + + Represents a single instance object. + + + + + Creates a new instance. + + The name to use. + + + + Gets the name of the variable. + + + + + The attribute indicates that invocations of the attribute's getter + or setter with a this value that is not an object that implements + the interface on which the attribute appears will be ignored. + + + + + This attribute is used to mark an enum as being just a collection of + constant string values (with the names being the strings). + + + + + This attribute decorates official DOM objects as specified by the W3C. + You could use it to detect all DOM types or get the correct spelling + (PascalCase to camelCase). Multiple usages are allowed. + + + + + Creates a new DomNameAttribute. + + + The official name of the decorated type or member. + + + + + Gets the official name of the given class, method or property. + + + + + This attribute appears on an interfaces, which must not be available + in the ECMAScript binding. + + + + + Decorates a read only attribute declaration whose type is an interface + type. It indicates that assigning to the attribute will have specific + behavior. Namely, the assignment is "forwarded" to the named attribute. + + + + + Creates a new DomPutForwardsAttribute. + + + The official name of the property to forward to. + + + + + Gets the official name of the property to forward assignments to. + + + + + An enumeration over all possible cache states. + + + + + The resource is uncached. + + + + + The cache status checker is idle. + + + + + The cache status is being checked. + + + + + The resource is being downloaded. + + + + + An update for the resource is available. + + + + + The resource is practically obsolete. + + + + + The event that is published in case of an interactivity + request coming from the dynamic DOM. + + + + + Creates a new event for an interactivity request. + + The name of the event. + The data to be transported. + + + + Gets the currently set result, if any. + + + + + Sets the result to the given value. Multiple results + will be combined accordingly. + + The resulting task. + + + + Gets the transported data. + + + + + The event that is published in case of a tracking + possibility (e.g., errors) coming from the dynamic DOM. + + + + + Creates a new event for a tracking request. + + The name of the event. + The error to be transported. + + + + Provides a way to cache web resources to improve performance, reduce + server loads, and enable access to content when there is no network + connectivity. + + + + + Gets the status of the application cache. + + + + + Performs an update of the application cache. + + + + + Aborts the current action (download / update) of the cache. + + + + + Swaps the application's cache. + + + + + Event triggered when the cache is being checked. + + + + + Event triggered after an error occurred. + + + + + Event triggered after no update is available. + + + + + Event triggered when the download started. + + + + + Event triggered after progress. + + + + + Event triggered after an update is ready to be applied. + + + + + Event triggered after the cache has been updated. + + + + + Event triggered after the cache has been marked obsolete. + + + + + The History interface allows to manipulate the browser session history, + that is the pages visited in the tab or frame that the current page is + loaded in. + + + + + Gets the number of elements in the session history, including the + currently loaded page. + + + + + Gets the index within the session history. + + + + + Gets the document at the given position of the history. + + The position within the history. + The document related to that position. + + + + Gets an any value representing the state at the top of the history + stack. + + + + + Loads a page from the session history, identified by its relative + location to the current page, for example -1 for the previous page + or 1 for the next page. When integerDelta is out of bounds (e.g. -1 + when there are no previously visited pages in the session history), + the method doesn't do anything and doesn't raise an exception. + Calling go() without parameters or with a non-integer argument has + no effect. + + The number of states to surpass. + + + + Goes to the previous page in session history, the same action as + when the user clicks the browser's Back button. Equivalent to + history.go(-1). + + + + + Goes to the next page in session history, the same action as when + the user clicks the browser's Forward button; this is equivalent to + history.go(1). + + + + + Pushes the given data onto the session history stack with the + specified title and, if provided, URL. The data is treated as + opaque by the DOM. + + The data to use. + The title to take. + The URL to consider. + + + + Updates the most recent entry on the history stack to have the + specified data, title, and, if provided, URL. The data is treated + as opaque by the DOM. + + The data to use. + The title to take. + The URL to consider. + + + + Represents the navigator information of a browsing context. + + + + + A set of utilities to modify the navigator's behavior. + + + + + Allows web sites to register themselves as possible handlers for particular protocols. + + The protocol the site wishes to handle, specified as a string. + The URI to the handler as a string. + The title of the handler presented to the user as a string. + + + + Allows web sites to register themselves as possible handlers for content of a particular MIME type. + + The desired MIME type as a string. + The URI to the handler as a string. + The title of the handler presented to the user as a string. + + + + Checks if any handler is registered at the given URI for the specified scheme. + + The scheme to check for. + The URI to the handler. + True if a handler is registered, otherwise false. + + + + Checks if any handler is registered at the given URI for the specified mime-type. + + The mime-type to check for. + The URI to the handler. + True if a handler is registered, otherwise false. + + + + Removes the specified protocol handler, if any. + + The name of the handled scheme to remove. + The URI to the handler of the scheme. + + + + Removes the specified content handler, if any. + + The name of the handled mime-type to remove. + The URI to the handler of the mime-type. + + + + Holds the user-agent information. + + + + + Gets the name of the application. + + + + + Gets the version of the application. + + + + + Gets the platform of the application. + + + + + Gets the full name of the user-agent. + + + + + Connectivity information regarding the navigator. + + + + + Gets if the connection is established. + + + + + Defines a set of methods for working with IO. + + + + + Blocks the current operation until storage operations have completed. + + + + + Implementation of an encoding meta handler. + + + + + Create a new instance of the EncodingMetaHandler + + This will initialize additional encoding providers to correctly support all encodings + + + + Gets the associated encoding, if any. + + The element to get the encoding from. + The discovered encoding or null. + + + + A set of useful extensions for the event loop. + + + + + Enqueues another action without considering the cancellation token. + + The loop to extend. + The action to enqueue. + The priority of the item. + + + + Enqueues another function with respecting the async nature. + Exceptions will be emitted respectively. + + The loop to extend. + The action to enqueue. + The priority of the item. + A task that is completed when the action has been invoked. + + + + Represents a command that can be executed from the document. + + + + + The id of the command. + + + + + Executes the command for the given document. + + The document to alter. + Should the UI be shown? + The argument value. + A boolean if the command could be run. + + + + Checks if the command is currently enabled. + + The document to apply to. + A boolean if the command is enabled. + + + + Checks if the command is currently neither enabled nor disabled. + + The document to apply to. + A boolean if the command is indeterminate. + + + + Checks if the command has been run already. + + The document to apply to. + A boolean if the command has already been applied. + + + + Checks if the command is currently supported at all. + + The document to apply to. + A boolean if the command is supported. + + + + Gets the value that would be changed at the moment. + + The document to apply to. + The value that would be used by the command. + + + + Represents a provider to get document commands. + + + + + Gets the command with the given id. + + The id of the command. + The document command if any. + + + + Represents a service to determine the default encoding. + + + + + Suggests the initial Encoding for the given locale. + + + The locale defined by the BCP 47 language tag. + + The suggested encoding. + + + + Represents the DOM event loop processing stages and steps of algorithms. + See 7.1.4.2 Processing model. + + + + + Enqueues a given task with the associated document. + + The continuation action to enqueue. + The priority to use. + The created loop entry. + + + + Spins the event loop. + + + + + Cancels all running and remaining tasks. + + + + + Defines the interface to be used for handling meta data. + + + + + Handles the content of the given HTML meta element. + + The meta element. + + + + Defines a handler for navigation requests. + + + + + Determines if the given protocol is supported by + the current handler. + + The protocol of the navigation target. + True if the protocol is supported, otherwise false. + + + + Performs the navigation with respect to a given request. + + The navigation request. + The cancellation token. + + The task yielding a document representing the navigation result. + + + + + Defines the basic events for all parsers. + + + + + Fired when a parser is starting. + + + + + Fired when a parser is finished. + + + + + Fired when a parse error is encountered. + + + + + Provides a spell correction service. + + + + + Gets the culture for the spell check service. + + + + + Ignores the word. + + The word to ignore. + If true, should be added to dictionary. Otherwise false. + + + + Checks if the given word is correct. + + The word to check. + True if the word is correctly spelled, otherwise false. + + + + Suggests correct spellings for the given word. + + The base word. + An enumeration over possibly right variants. + + + + Represents the default loader service. This class can be inherited. + + + + + Suggests the initial Encoding for the given locale. + + + The locale defined by the BCP 47 language tag. + + The suggested encoding. + + + + Implementation of a refresh handler. + + + + + Creates a new instance of the refresh meta handler. + + Optionally defines a predicate. + + + + Setting used to restrict the abilities that potentially + untrusted resources have. + + + + + No flag is set, everything is accepted. + + + + + This flag prevents content from navigating browsing contexts + other than the sandboxed browsing context itself (or browsing + contexts further nested inside it), auxiliary browsing contexts + (which are protected by the sandboxed auxiliary navigation + browsing context flag defined next), and the top-level browsing + context (which is protected by the sandboxed top-level navigation + browsing context flag defined below). + + + + + This flag prevents content from creating new auxiliary browsing + contexts, e.g. using the target attribute, or the window.open() + method. + + + + + This flag prevents content from navigating their top-level browsing + context and prevents content from closing their top-level browsing + context. + + + + + This flag prevents content from instantiating plugins, whether using + the embed element, the object element, the applet element, or through + navigation of a nested browsing context, unless those plugins can be + secured. + + + + + This flag forces content into a unique origin, thus preventing it + from accessing other content from the same origin. + + + + + This flag blocks form submission. + + + + + This flag disables the Pointer Lock API. + + + + + This flag blocks script execution. + + + + + This flag blocks features that trigger automatically, such as automatically + playing a video or automatically focusing a form control. + + + + + This flag prevents content from using the requestFullscreen() method. + + + + + This flag prevents content from using the document.domain feature to change + the effective script origin. + + + + + This flag allows the sandboxed content to run presentational content. + + + + + Describes the various task priorities. + + + + + The lowest possible priority. + + + + + The normal priority. + + + + + Microtasks are preferred. + + + + + Critical tasks are always executed asap. + + + + + A simple and lightweight browsing context. + + + + + Creates a new browsing context with the given configuration, or the + default configuration, if no configuration is provided. + + + This constructor was only added due to PowerShell. See #844 for details. + + The optional configuration. + + + + Gets or sets the currently active document. + + + + + Gets the document that created the current context, if any. The + creator is the active document of the parent at the time of + creation. + + + + + Gets the original services for the given browsing context. + + + + + Gets the current window proxy. + + + + + Gets the parent of the current context, if any. If a parent is + available, then the current context contains only embedded + documents. + + + + + Gets the session history of the given browsing context, if any. + + + + + Gets the sandboxing flag of the context. + + + + + Gets an instance of the given service. + + The type of service to resolve. + The instance of the service or null. + + + + Gets all registered instances of the given service. + + The type of service to resolve. + An enumerable with all service instances. + + + + Creates a new named browsing context as child of the given parent. + + The name of the child context, if any. + The security flags to apply. + + + + + Finds a named browsing context. + + The name of the browsing context. + The found instance, if any. + + + + Creates a new browsing context with the given configuration, or the + default configuration, if no configuration is provided. + + The optional configuration. + The browsing context to use. + + + + Creates a new browsing context from the given service. + + The service instance. + The browsing context to use. + + + + A set of extensions for the browsing context. + + + + + Opens a new document without any content in the given context. + + The browsing context to use. + The optional base URL of the document. By default "http://localhost/". + The cancellation token (optional) + The new, yet empty, document. + + + + Opens a new document created from the response asynchronously in + the given context. + + The browsing context to use. + The response to examine. + The cancellation token. + The task that creates the document. + + + + Opens a new document loaded from the specified request + asynchronously in the given context. + + The browsing context to use. + The request to issue. + The cancellation token. + The task that creates the document. + + + + Opens a new document loaded from the provided url asynchronously in + the given context. + + The browsing context to use. + The URL to load. + The cancellation token. + The task that creates the document. + + + + Opens a new document loaded from a virtual response that can be + filled via the provided callback. + + The browsing context to use. + Callback with the response to setup. + The cancellation token. + The task that creates the document. + + + + Opens a new document loaded from the provided address asynchronously + in the given context. + + The browsing context to use. + The address to load. + The cancellation token (optional) + The task that creates the document. + + + + Plan to navigate to an action using the specified method with the given + entity body of the mime type. + http://www.w3.org/html/wg/drafts/html/master/forms.html#plan-to-navigate + + The browsing context. + The request to issue. + + A task that will eventually result in a new document. + + + + Navigates to the given document. Includes the document in the + session history and sets it as the active document. + + The browsing context to use. + The new document. + + + + Gets the navigation handler that supports the provided protocol. + + The browsing context to use. + The URL to navigate to. + The found navigation handler, if any. + + + + Gets the default encoding to use as initial guess. + + The current context. + The encoding from the provider or UTF-8. + + + + Gets the culture info associated with the current context. + + The current context. + The culture info assigned to the context. + + + + Gets the culture from the language string (or the current culture). + + The current context. + The ISO culture name. + + The culture info representing the language or the current culture. + + + + + Gets the language of the current context. + + The current context. + The ISO name of the culture. + + + + Gets a factory service instance. Exactly one has to be available. + + The type of the factory service. + The current context. + The factory instance. + + + + Gets a provider service instance. At most one has to be available. + + The type of the provider service. + The current context. + The provider instance or null. + + + + Gets a resource service. Multiple resource services may be registered, so + the one that matches the given mime-type will be returned, if any. + + The type of the resource service. + The current context. + The mime-type of the resource. + The service instance or null. + + + + Gets the cookie for the given URL, if any. + + The current context. + The URL of the cookie. + The cookie or the empty string. + + + + Sets the cookie for the given URL. + + The current context. + The URL of the cookie. + The cookie value to set. + + + + Gets the spell check service for the given language, if any. + + The current context. + The language of the spellchecker. + The spell check service, if any. + + + + Tries to get the CSS styling service, if available. + + The current context. + The CSS styling service if any. + + + + Tries to get the styling service for the given mime-type. + + The current context. + The type of the style engine. + The styling service if any. + + + + Gets if the context allows scripting or not. + + The current context. + True if a scripting provider is available, otherwise false. + + + + Tries to get the JavaScript service, if available. + + The current context. + The JavaScript scripting service, if any. + + + + Tries to get the scripting service for the given mime-type. + + The current context. + The type of the scripting language. + The scripting service, if any. + + + + Tries to get the command with the given name. + + The current context. + The command to get. + The command if any. + + + + Notifies the context of an exception that was handled internally. + + The current context. + The exception to notify. + + + + Fires an interactive event at the given context. + + The type of interactivity payload. + The current context. + The name of the event to fire. + The data to transport. + The task with the response to the event. + + + + Resolves the given target context. + + The current context. + The desired target frame. + The target context. + + + + Creates the specified target browsing context. + + The current context. + The specified target name. + The new context. + + + + Gets the specified target browsing context. + + The current context. + The specified target name. + + The available context, or null, if the context does not exist yet. + + + + + Checks if the context is waiting for tasks from originator of type + T to finish downloading. + + The context to use. + Enumerable of awaitable tasks. + + + + Common methods and variables of all tokenizers. + + + + + Creates a new instance of the base tokenizer. + + The source to tokenize. + + + + Gets the current insertion point. + + + + + Gets the current source index. + + + + + Gets the current character. + + + + + Gets the allocated string buffer. + + + + + Gets if the current index has been normalized (CRLF -> LF). + + + + + Flushes the buffer. + + The content of the buffer. + + + + Disposes the tokenizer by releasing the buffer. + + + + + Gets the current text position in the source. + + The (row, col) position. + + + + Checks if the source continues with the given string. + The comparison is case-insensitive. + + The string to compare to. + True if the source continues with the given string. + + + + Checks if the source continues with the given string. + The comparison is case-sensitive. + + The string to compare to. + True if the source continues with the given string. + + + + Gets the string formed by the next characters. + + The length of the string. + The upcoming string. + + + + Skips the next space character(s). + + The upcoming first non-space. + + + + Gets the next character in the source by advancing. + + The next char. + + + + Gets the previous character in the source by going back. + + The previous char. + + + + Advances in the source by 1 character if possible. + + + + + Advances in the source by n characters or less if possible. + + The positive number of characters. + + + + Goes back in the source by 1 character if possible. + + + + + Goes back in the source by n characters or less if possible. + + The positive number of characters. + + + + Implemented by OM classes that may change internal state reflected with + a changed string representation. + + + + + Triggered when the internal state changed. + + + + + Update the string representation without calling Changed. + + The representation's new value. + + + + Represents a cancellable task with result. + + + + + Gets the associated awaitable task. + + + + + Represents a cancellable task without result. + + + + + Cancels the covered task. + + + + + Gets if the task has already completed. + + + + + Gets if the task is (still) running. + + + + + The collection of used keywords and strings. + + + + + The url keyword. + + + + + The on keyword. + + + + + The off keyword. + + + + + The of keyword. + + + + + The yes keyword. + + + + + The no keyword. + + + + + The top keyword. + + + + + The any keyword. + + + + + The PUBLIC keyword. + + + + + The SYSTEM keyword. + + + + + The "[CDATA[" keyword. + + + + + The replace keyword. + + + + + The alternate keyword. + + + + + The odd keyword. + + + + + The even keyword. + + + + + The 2d keyword. + + + + + The webgl keyword. + + + + + Some methods for working with bare objects. + + + + + Transforms the values of the object into a dictionary of strings. + + The object instance to convert. + A dictionary mapping field names to values. + + + + Gets an item from the enumerable by its index. Throws an exception + if the provided index is invalid. + + The type of enumerable. + The items to iterate over. + The index to look for. + The item at the specified index. + + + + Returns the concatenation of the provided enumerable with the + specified element. The item is added to the beginning. + + The type of the enumeration. + The items. + The item to concat. + The new enumerable. + + + + Returns the removal of the specified element from the provided + enumerable. + + The type of the enumeration. + The items. + The item to remove. + The new enumerable. + + + + Tries to obtain the given key, otherwise returns the default value. + + The struct type. + The dictionary for the lookup. + The key to look for. + A nullable struct type. + + + + Tries to obtain the given key, otherwise returns null. + + The dictionary for the lookup. + The key to look for. + An object instance or null. + + + + Gets the value of the given key, otherwise the provided default + value. + + The type of the keys. + The type of the value. + The dictionary for the lookup. + The key to look for. + The provided fallback value. + The value or the provided fallback. + + + + Constraints the given value between the min and max values. + + The value to limit. + The lower boundary. + The upper boundary. + The value in the [min, max] range. + + + + Retrieves a string describing the error of a given error code. + + A specific error code. + The description of the error. + + + + Represents context configuration for the AngleSharp library. Custom + configurations can be made by deriving from this class, just + implementing IConfiguration or modifying an instance of this specific + class. + + + + + Creates a new immutable configuration. + + The services to expose. + + + + Gets the default configuration to use. The default configuration + can be overriden by calling the SetDefault method. + + + + + Gets an enumeration over the registered services. + + + + + A set of useful extensions for Configuration (or derived) objects. + + + + + Returns a new configuration that includes the given service. + + The configuration to extend. + The service to register. + The new instance with the service. + + + + Returns a new configuration that includes only the given service, + excluding other instances or instance creators for the same service. + + The service to include exclusively. + The configuration to extend. + The service to include. + The new instance with only the given service. + + + + Returns a new configuration that includes only the given service + creator, excluding other instances or instance creators for the same + service. + + The service to include exclusively. + The configuration to extend. + The service creator to include. + The new instance with only the given service. + + + + Returns a new configuration that excludes the given service. + + The configuration to extend. + The service to unregister. + The new instance without the service. + + + + Returns a new configuration that includes the given services. + + The configuration to extend. + The services to register. + The new instance with the services. + + + + Returns a new configuration that excludes the given services. + + The configuration to extend. + The services to unregister. + The new instance without the services. + + + + Returns a new configuration that includes the given service creator. + + The type of service to create. + The configuration to extend. + The creator to register. + The new instance with the services. + + + + Returns a new configuration that excludes the given service creator. + + The type of service to remove. + The configuration to extend. + The new instance without the services. + + + + Checks if the configuration holds any references to the given service. + + The type of service to check for. + The configuration to examine. + True if any service / creators are found, otherwise false. + + + + Registers the default loader service, if no other loader has been registered yet. + + The configuration to extend. + Configuration for the loader service. + The new configuration with the service. + + + + Returns a new configuration that uses the culture with the provided + name. + + The configuration to extend. + The name of the culture to set. + The new instance with the culture being set. + + + + Returns a new configuration that uses the given culture. Providing + null will reset the culture to the default one. + + The configuration to extend. + The culture to set. + The new instance with the culture being set. + + + + Registeres a handler to include the meta data refresh. + + The configuration to extend. + The optional callback. + The new instance with the service. + + + + Registeres the default encoding determination algorithm, as + specified by the W3C. + + The configuration to extend. + The new instance with the service. + + + + Registers the default cookie service if no other cookie service has + been registered yet. + + The configuration to extend. + The new instance with the service. + + + + The collection of known CSS selector combinator symbols. + + + + + The "=" attribute combinator. + + + + + The "!=" attribute combinator. + + + + + The "~=" attribute combinator. + + + + + The "|=" attribute combinator. + + + + + The "^=" attribute combinator. + + + + + The "$=" attribute combinator. + + + + + The "*=" attribute combinator. + + + + + The "||" combinator. + + + + + The "|" combinator. + + + + + The "+" combinator. + + + + + The " " combinator. + + + + + The ">>>" combinator. + + + + + The ">" combinator. + + + + + The "~" combinator. + + + + + Represents the standard CSS3 style formatter. + + + + + An instance of the CssStyleFormatter. + + + + + Provides string to CSS attribute selector instance mappings. + + + + + Represents a creator delegate for creating an attribute selector. + + The name of the attribute. + The value of the attribute. + The prefix for the attribute. + Sets the evaluation mode. + + + + + Registers a new creator for the specified combinator. + Throws an exception if another creator for the given + combinator is already added. + + The used CSS combinator. + The creator to invoke. + + + + Unregisters an existing creator for the given combinator. + + The used CSS combinator. + The registered creator, if any. + + + + Creates the default CSS attribute selector for the given options. + + The name of the attribute. + The used value, if any. + The given prefix, if any. + Should be evaluated insensitive. + The selector with the given options. + + + + Creates the associated CSS attribute selector. + + The used CSS combinator. + The name of the attribute. + The used value, if any. + The given prefix, if any. + Should be evaluated insensitive. + The associated selector. + + + + Provides string to CSS pseudo class selector instance mappings. + + + + + Registers a new selector for the specified name. + Throws an exception if another selector for the given + name is already added. + + The name of the CSS pseudo class. + The selector to register. + + + + Unregisters an existing selector for the given name. + + The name of the CSS pseudo class. + The registered selector, if any. + + + + Creates the default CSS pseudo class selector for the given + name. + + The name of the CSS pseudo class. + The selector with the given name. + + + + Creates or gets the associated CSS pseudo class selector. + + The name of the CSS pseudo class. + The associated selector. + + + + Provides string to CSS pseudo element selector instance mappings. + + + + + Registers a new selector for the specified name. + Throws an exception if another selector for the given + name is already added. + + The name of the CSS pseudo element. + The selector to register. + + + + Unregisters an existing selector for the given name. + + The name of the CSS pseudo element. + The registered selector, if any. + + + + Creates the default CSS pseudo element selector for the given + name. + + The name of the CSS pseudo class. + The selector with the given name. + + + + Creates or gets the associated CSS pseudo element selector. + + The name of the CSS pseudo element. + The associated selector. + + + + Represents a CSS medium. + + + + + Gets the type of medium that is represented. + + + + + Gets if the medium has been created using the only keyword. + + + + + Gets if the medium has been created using the not keyword. + + + + + Gets a string describing the covered constraints. + + + + + Gets an enumerable of contained features. + + + + + Represents a CSS media feature. + + + + + Gets the name of the feature. + + + + + Gets if the feature represents the minimum. + + + + + Gets if the feature represents the maximum. + + + + + Gets the value of the feature, if any. + + + + + Gets if a value has been set for this feature. + + + + + A collection of media queries. + + + + + Gets or sets the parsable textual representation of the media list. + This is a comma-separated list of media. + + + + + Gets the number of media in the list. + + + + + Gets the medium item at the specified index. + + Index into the collection. + + The medium at the index-th position in the MediaList, + or null if that is not a valid index. + + + + + Adds the medium to the end of the list. If the medium is already used, + it is first removed. + + The new medium to add. + + + + Deletes the medium indicated from the list of media queries. + + The medium to delete from the list. + + + + Base class for all nth-child (or related) selectors. + + + + + Represents a complex selector, i.e. one or more compound selectors + separated by combinators. + + + + + Represents a compound selector, which is a chain of simple selectors + that are not separated by a combinator. + + + + + The nth-child selector. + + + + + The nth-column selector. + + + + + The nth-of-type selector. + + + + + The nth-lastchild selector. + + + + + The nth-last-column selector. + + + + + The nth-last-of-type selector. + + + + + Represents a group of selectors, i.e., zero or more selectors separated + by commas. + + + + + A list of selectors, which is the basis for CompoundSelector and + SelectorGroup. + + + + + Represents a CSS selector for matching elements. + More information: http://dev.w3.org/csswg/selectors4/ + + + + + Determines if the given object is matched by this selector. + + The element to be matched. + The selector scope. + + True if the selector matches the given element, otherwise false. + + + + + Gets the string representation of the selector. + + + + + Gets the specificity of the given selector. + + + + + Accepts a selector visitor to expose more information. + + The visitor for showing around. + + + + A set of extension methods for selectors. + + + + + Returns the first element within the given elements (using depth-first + pre-order traversal) that match the selectors with the given scope. + + A selector object. + The elements to take as source. + The element to take as scope. + The resulting element or null. + + + + Returns the elements within the given elements (using depth-first + pre-order traversal) that match the selectors with the given scope. + + A selector object. + The elements to take as source. + The element to take as scope. + The collection containing the resulting elements. + + + + Provides an alternate to that sets the + scope to the owning document element (if there is one). + + The selector. + The element to match against. + The result of the match. + + + + A set of extension methods for style / related methods. + + + + + Gets all possible style sheet sets from the list of style sheets. + + The list of style sheets. + An enumeration over all sets. + + + + Gets the enabled style sheet sets from the list of style sheets. + + The list of style sheets. + An enumeration over the enabled sets. + + + + Sets the enabled style sheet sets in the list of style sheets. + + The list of style sheets. + The name of the set to enabled. + + + + Creates a new StyleSheetList instance for the given node. + + The node to get the StyleSheets from. + The new StyleSheetList instance. + + + + Creates a new StringList instance with stylesheet sets for the given + node. + + The node to get the sets from. + The new StringList instance. + + + + Gets an enumeration over all the stylesheets from the given parent. + + The parent to use. + The enumeration over all stylesheets. + + + + Tries to find the matching namespace url for the given prefix. + + The list of style sheets. + The prefix of the namespace to find. + + + + Represents a factory for attribute selectors. + + + + + Creates a new attribute selector from the given arguments. + + The used combinator. + The name of the attribute. + The provided value. + The prefix, if any. + Should be evaluated insensitive. + The created selector, if possible. + + + + Represents a factory for pseudo-class selectors. + + + + + Creates a new pseudo-class selector for the given name. + + The name of the pseudo-class. + The created selector, if any. + + + + Represents a factory for pseudo-element selectors. + + + + + Creates a new pseudo-element selector for the given name. + + The name of the pseudo-element. + The created selector, if any. + + + + Describes the interface for visiting a selector. + + + + + Visited by attribute selectors. + + The name of the attribute. + The operator, if any. + The value, if any. + + + + Visited by type selectors. + + The name of the type or *. + + + + Visited by id selectors. + + The value of the id. + + + + Visited by child selectors. + + The name of the selector. + The step parameter. + The offset parameter. + The applied inner selector, if any. + + + + Visited by class selectors. + + The name of the class. + + + + Visited by pseudo-class selectors. + + The name of the pseudo class. + + + + Visited by pseudo-element selectors. + + The name of the pseudo element. + + + + Visited by comma-separated list selectors. + + The contained selectors. + + + + Visited by combinator selectors. + + The contained N selectors. + The N - 1 combinator symbols. + + + + Visited by aggregated / combined selectors. + + The combined selectors. + + + + Defines the API of an available engine for computing the stylesheet. + + + + + Checks if the given type is supported. + + The type of the style. + True if the type is supported, otherwise false. + + + + Parses a style sheet for the given response asynchronously. + + + The response with the stream representing the source of the + stylesheet. + + + The options with the parameters for evaluating the style. + + The cancellation token. + The task resulting in the style sheet. + + + + An enumeration with possible CSS combinator values. + + + + + The child operator (>). + + + + + The deep combinator (>>>). + + + + + The descendent operator (space, or alternatively >>). + + + + + The adjacent sibling combinator +. + + + + + The sibling combinator ~. + + + + + The namespace combinator |. + + + + + The column combinator ||. + + + + + Gets the transformation function for the combinator. + + + + + Gets the delimiter that represents the combinator. + + + + + Changes the selector on the LHS according to some special rules. + + The original selector. + The modified (or unmodified) selector. + + + + Class for construction for CSS selectors as specified in + http://www.w3.org/html/wg/drafts/html/master/selectors.html. + + + + + The various parsing states. + + + + + Allows the simply creation of CSS selectors. + + + + + Creates a new selector parser. + + + + + Creates a new selector parser using the different factories. + + + + + Takes a string and transforms it into a selector object. + + + + + The CSS selector token. + + + + + Contains some useful extension methods for the StringSource + from the perspective of the CSS micro parsers. + + + + + Skips all characters to the end of a CSS comment. Assumes the + start of a CSS comment has been seen. + + + + + Consumes the escape sequence if any. Assumes, the source currently being at a + solidus (valid escape). + + + + + Checks if the current position holds a valid escape. + + + + + The CSS tokenizer. + See http://dev.w3.org/csswg/css-syntax/#tokenization for more details. + + + + + Gets the next available token. + + + + + 4.4.1. Data state + + + + + 4.4.2. Double quoted string state + + + + + 4.4.3. Single quoted string state + + + + + 4.4.4. Hash state + + + + + 4.4.5. Hash-rest state + + + + + 4.4.7. At-keyword state + + + + + 4.4.8. At-keyword-rest state + + + + + 4.4.9. Ident state + + + + + 4.4.10. Ident-rest state + + + + + 4.4.12. Number state + + + + + 4.4.13. Number-rest state + + + + + 4.4.14. Number-fraction state + + + + + 4.4.15. Dimension state + + + + + 4.4.16. SciNotation state + + + + + 4.4.17. URL state + + + + + 4.4.18. URL-double-quoted state + + + + + 4.4.19. URL-single-quoted state + + + + + 4.4.21. URL-unquoted state + + + + + 4.4.20. URL-end state + + + + + 4.4.22. Bad URL state + + + + + 4.4.23. Unicode-range State + + + + + An enumation of all possible tokens. + + + + + A string token (usually in quotation marks). + + + + + A hash token (starts with #). + + + + + A class token (starts with .). + + + + + An identifier token. + + + + + An function token. + + + + + An number token. + + + + + An dimension token. + + + + + The column ( || ) token. + + + + + The descendent ( >> ) token. + + + + + The deep ( >>> ) token. + + + + + The delimiter token to delimiter character. + + + + + The match token (~=, |=, $=, ^=, *=, or !=). + + + + + The RoundBracketClose ( ) ) token. + + + + + The SquareBracketOpen ( [ ) token. + + + + + The SquareBracketClose ( ] ) token. + + + + + The special character colon ( : ). + + + + + The special character comma ( , ). + + + + + The special character whitespace ( ). + + + + + The invalid token (any). + + + + + The end-of-file marker. + + + + + Represents the parser for a selector. + + + + + Takes a string and transforms it into a selector object. + + + + + A priority object for comparing priorities. + + + + + Gets the lowest (zero) priority. + + + + + Gets the priority for having a single tag. + + + + + Gets the priority for having a single class. + + + + + Gets the priority for having a single Id. + + + + + Gets the priority for having an inline element. + + + + + Creates a new priority with the given hashcode. + + The hashcode to use. + + + + Creates a new priority with the given values. + + The number of inlines. + The number of ids. + The number of classes. + The number of tags. + + + + Gets the number of tags for this priority. + + + + + Gets the number of classes for this priority. + + + + + Gets the number of ids for this priority. + + + + + Gets the number of inlines for this priority. + + + + + Adds the two given priorities. + + The first priority. + The second priority. + The result of adding the two priorities. + + + + Compares two priorities and returns a boolean indicating if the two do match. + + The first priority to use. + The second priority to use. + True if both priorities are equal, otherwise false. + + + + Compares two priorities and returns a boolean indicating if the first one is greater. + + The first priority to use. + The second priority to use. + True if the first priority is higher, otherwise false. + + + + Compares two priorities and returns a boolean indicating if the first one is greater or equal. + + The first priority to use. + The second priority to use. + True if the first priority is higher or equal, otherwise false. + + + + Compares two priorities and returns a boolean indicating if the second one is greater. + + The first priority to use. + The second priority to use. + True if the second priority is higher, otherwise false. + + + + Compares two priorities and returns a boolean indicating if the second one is greater or equal. + + The first priority to use. + The second priority to use. + True if the second priority is higher or equal, otherwise false. + + + + Compares two priorities and returns a boolean indicating if the two do not match. + + The first priority to use. + The second color to use. + True if both priorities are not equal, otherwise false. + + + + Checks two priorities for equality. + + The other priority. + True if both priorities or equal, otherwise false. + + + + Tests if another object is equal to this object. + + The object to test with. + True if the two objects are equal, otherwise false. + + + + Returns a hash code that defines the current priority. + + The integer value of the hashcode. + + + + Compares the current priority with another priority. + + The priority to compare to. + A value greater than 1 if the current priority is larger. + + + + Returns a string representing the priority. + + The string representation. + + + + The collection of (known / used) selector pseudo class names. + + + + + The root pseudo class. + + + + + The scope pseudo class. + + + + + The only-of-type pseudo class. + + + + + The first-of-type pseudo class. + + + + + The last-of-type pseudo class. + + + + + The only-child pseudo class. + + + + + The first-child pseudo class. + + + + + The last-child pseudo class. + + + + + The empty pseudo class. + + + + + The any-link pseudo class. + + + + + The link pseudo class. + + + + + The visited pseudo class. + + + + + The active pseudo class. + + + + + The hover pseudo class. + + + + + The focus pseudo class. + + + + + The target pseudo class. + + + + + The enabled pseudo class. + + + + + The disabled pseudo class. + + + + + The checked pseudo class. + + + + + The unchecked pseudo class. + + + + + The indeterminate pseudo class. + + + + + The placeholder-shown pseudo class. + + + + + The default pseudo class. + + + + + The valid pseudo class. + + + + + The invalid pseudo class. + + + + + The required pseudo class. + + + + + The in-range pseudo class. + + + + + The out-of-range pseudo class. + + + + + The optional pseudo class. + + + + + The read-only pseudo class. + + + + + The read-write pseudo class. + + + + + The shadow pseudo class. + + + + + The dir pseudo function. + + + + + The has pseudo function. + + + + + The matches pseudo function. + + + + + The nth-child pseudo function. + + + + + The nth-last-child pseudo function. + + + + + The nth-of-type pseudo function. + + + + + The nth-last-of-type pseudo function. + + + + + The nth-column pseudo function. + + + + + The nth-last-column pseudo function. + + + + + The not pseudo function. + + + + + The lang pseudo function. + + + + + The contains pseudo function. + + + + + The host-context pseudo function. + + + + + The separating colon. + + + + + The collection of (known / used) selector pseudo element names. + + + + + The before pseudo element. + + + + + The after pseudo element. + + + + + The slotted pseudo element. + + + + + The selection pseudo element. + + + + + The first-line pseudo element. + + + + + The first-letter pseudo element. + + + + + The footnote-call pseudo element. + + + + + The footnote-marker pseudo element. + + + + + The content pseudo element. + + + + + The separating double-colon. + + + + + Transport object for evaluating stylesheets. + + + + + Creates new style options for the given document. + + The document to use. + + + + Gets the parent document for hosting the style sheet. + + + + + Gets or sets the element that triggered the evaluation. + + + + + Gets or sets if the stylesheet is disabled. + + + + + Gets or sets if the stylesheet is an alternate. + + + + + Enumeration with possible values for the adjacent position insertation. + + + + + Before the element itself. + + + + + Just inside the element, before its first child. + + + + + Just inside the element, after its last child. + + + + + After the element itself. + + + + + Extensions for the list of attributes. + + + + + Compares another attribute container to the current container. + + The original attribute list. + The list to compare to. + True if both objects are equal, otherwise false. + + + + Clears the given attribute collection. + + The collection to clear. + The collection itself. + + + + The collection of (known / used) attribute names. + + + + + The name attribute. + + + + + The http-equiv attribute. + + + + + The scheme attribute. + + + + + The content attribute. + + + + + The class attribute. + + + + + The style attribute. + + + + + The label attribute. + + + + + The action attribute. + + + + + The prompt attribute. + + + + + The href attribute. + + + + + The hreflang attribute. + + + + + The lang attribute. + + + + + The disabled attribute. + + + + + The selected attribute. + + + + + The value attribute. + + + + + The title attribute. + + + + + The type attribute. + + + + + The rel attribute. + + + + + The rev attribute. + + + + + The accesskey attribute. + + + + + The download attribute. + + + + + The media attribute. + + + + + The target attribute. + + + + + The charset attribute. + + + + + The alt attribute. + + + + + The coords attribute. + + + + + The shape attribute. + + + + + The formaction attribute. + + + + + The formmethod attribute. + + + + + The formtarget attribute. + + + + + The formenctype attribute. + + + + + The formnovalidate attribute. + + + + + The dirname attribute. + + + + + The dir attribute. + + + + + The nonce attribute. + + + + + The noresize attribute. + + + + + The src attribute. + + + + + The srcset attribute. + + + + + The srclang attribute. + + + + + The srcdoc attribute. + + + + + The scrolling attribute. + + + + + The longdesc attribute. + + + + + The frameborder attribute. + + + + + The width attribute. + + + + + The height attribute. + + + + + The marginwidth attribute. + + + + + The marginheight attribute. + + + + + The cols attribute. + + + + + The rows attribute. + + + + + The align attribute. + + + + + The encoding attribute. + + + + + The standalone attribute. + + + + + The version attribute. + + + + + The dropzone attribute. + + + + + The draggable attribute. + + + + + The spellcheck attribute. + + + + + The tabindex attribute. + + + + + The contenteditable attribute. + + + + + The translate attribute. + + + + + The contextmenu attribute. + + + + + The hidden attribute. + + + + + The id attribute. + + + + + The sizes attribute. + + + + + The scoped attribute. + + + + + The reversed attribute. + + + + + The start attribute. + + + + + The ping attribute. + + + + + The ismap attribute. + + + + + The usemap attribute. + + + + + The crossorigin attribute. + + + + + The sandbox attribute. + + + + + The allowfullscreen attribute. + + + + + The allowpaymentrequest attribute. + + + + + The data attribute. + + + + + The typemustmatch attribute. + + + + + The autofocus attribute. + + + + + The accept-charset attribute. + + + + + The enctype attribute. + + + + + The autocomplete attribute. + + + + + The method attribute. + + + + + The novalidate attribute. + + + + + The for attribute. + + + + + The seamless attribute. + + + + + The valign attribute. + + + + + The span attribute. + + + + + The bgcolor attribute. + + + + + The colspan attribute. + + + + + The referrerpolicy attribute. + + + + + The rowspan attribute. + + + + + The nowrap attribute. + + + + + The abbr attribute. + + + + + The scope attribute. + + + + + The headers attribute. + + + + + The axis attribute. + + + + + The border attribute. + + + + + The cellpadding attribute. + + + + + The rules attribute. + + + + + The summary attribute. + + + + + The cellspacing attribute. + + + + + The frame attribute. + + + + + The form attribute. + + + + + The required attribute. + + + + + The multiple attribute. + + + + + The min attribute. + + + + + The max attribute. + + + + + The open attribute. + + + + + The challenge attribute. + + + + + The keytype attribute. + + + + + The size attribute. + + + + + The wrap attribute. + + + + + The maxlength attribute. + + + + + The minlength attribute. + + + + + The placeholder attribute. + + + + + The readonly attribute. + + + + + The accept attribute. + + + + + The pattern attribute. + + + + + The step attribute. + + + + + The list attribute. + + + + + The checked attribute. + + + + + The kind attribute. + + + + + The default attribute. + + + + + The autoplay attribute. + + + + + The preload attribute. + + + + + The loop attribute. + + + + + The controls attribute. + + + + + The muted attribute. + + + + + The mediagroup attribute. + + + + + The poster attribute. + + + + + The color attribute. + + + + + The face attribute. + + + + + The command attribute. + + + + + The icon attribute. + + + + + The radiogroup attribute. + + + + + The cite attribute. + + + + + The async attribute. + + + + + The defer attribute. + + + + + The language attribute. + + + + + The event attribute. + + + + + The alink attribute. + + + + + The background attribute. + + + + + The link attribute. + + + + + The text attribute. + + + + + THe vlink attribute. + + + + + The show attribute. + + + + + The role attribute. + + + + + The actuate attribute. + + + + + The arcrole attribute. + + + + + The space attribute. + + + + + The window attribute. + + + + + The manifest attribute. + + + + + The datetime attribute. + + + + + The low attribute. + + + + + The high attribute. + + + + + The optimum attribute. + + + + + The slot attribute. + + + + + The body attribute. + + + + + The integrity attribute. + + + + + Data transport class to abstract common options in document creation. + + + + + Creates a new set of document options from the given response with + the provided configuration. + + The response to pass on. + The optional default encoding. + The optional import ancestor. + + + + Gets the response to create the document for. + + + + + Gets the provided content-type. + + + + + Gets the text source that came with the response. + + + + + Gets the import ancestor, if any. + + + + + Provides the default content-type to document creation mapping. + + + + + Represents a creator delegate for creating documents. + + The context of the new document. + The creation options. + The cancellation token. + The task of creating the document. + + + + Registers a new creator for the specified content-type. + Throws an exception if another creator for the given + content-type is already added. + + The content-type value. + The creator to invoke. + + + + Unregisters an existing creator for the given content-type. + + The content-type value. + The registered creator, if any. + + + + Creates the default document for the given options. + + The browsing context to use. + The options to consider. + The cancellation token. + The task creating the document from the response. + + + + Creates a new document from the given arguments using the Content-Type + of the provided options. + + The browsing context to use. + The options to consider. + The cancellation token. + The task creating the document from the response. + + + + Loads the response as an HTML document. + + + + + Loads the response as a plain text (formatted as HTML) document. + + + + + An enumeration with all dir modes. + + + + + Text and other elements go from left to right. + + + + + Text and other elements go from right to left + + + + + Useful methods for document objects. + + + + + Iterates over all ranges in the document, applying the provided + action when the given condition is fulfilled. + + The document that hosts the ranges. + + The condition that needs to be fulfilled. + + The action to apply to the range. + + + + Creates an element of the given type or throws an exception, if + there is no such type. + + The type of the element. + The responsible document. + The created element. + + + + Adopts the given node for the provided document context. + + The new owner of the node. + The node to change its owner. + + + + Queues an action in the event loop of the document. + + + The document that hosts the configuration. + + The action that should be invoked. + + + + Queues an action in the event loop of the document, + which can be awaited. + + + The document that hosts the configuration. + + The action that should be invoked. + + + + Queues a function in the event loop of the document, + which can be awaited with the result returned. + + + The document that hosts the configuration. + + The function that should be invoked. + + + + Queues a mutation record for the corresponding observers. + + The document to use. + The record to enqueue. + + + + Adds a transient observer for the given node. + + The document to use. + The node to be removed. + + + + Applies the manifest to the given document. + + The document to modify. + + + + Performs a microtask checkpoint using the mutations host. + Queue a mutation observer compound microtask. + + The document to use. + + + + Provides a stable state by running the synchronous sections of + asynchronously-running algorithms until the asynchronous algorithm + can be resumed (if appropriate). + + The document to use. + + + + Checks if the document is waiting for a script to finish preparing. + + The document to use. + Enumerable of awaitable tasks. + + + + Checks if the document has any active stylesheets that block the + scripts. A style sheet is blocking scripts if the responsible + element was created by that Document's parser, and the element is + either a style element or a link element that was an external + resource link that contributes to the styling processing model when + the element was created by the parser, and the element's style + sheet was enabled when the element was created by the parser, and + the element's style sheet ready flag is not yet set. + http://www.w3.org/html/wg/drafts/html/master/document-metadata.html#has-no-style-sheet-that-is-blocking-scripts + + The document to use. + Enumerable of awaitable tasks. + + + + Spins the event loop until all stylesheets are downloaded (if + required) and all scripts are ready to be parser executed. + http://www.w3.org/html/wg/drafts/html/master/syntax.html#the-end + (bullet 3) + + The document to use. + Awaitable task. + + + + Gets all downloads associated with resources of the document. + + The document hosting the downloads. + The collection of elements hosting resources. + + + + Enumeration of possible document position values. + + + + + It is the same node. + + + + + There is no relation. + + + + + The node preceeds the other element. + + + + + The node follows the other element. + + + + + The node is contains the other element. + + + + + The node is contained in the other element. + + + + + The relation is implementation specific. + + + + + Defines the document readiness. + + + + + The document is still loading. + + + + + The document is interactive, i.e. interaction possible. + + + + + Loading is complete. + + + + + A collection of official DOM error codes. + + + + + The index is not in the allowed range. + + + + + The size of the string is invalid. + + + + + The operation would yield an incorrect node tree. + + + + + The object is in the wrong document. + + + + + Invalid character detected. + + + + + The data is allowed for this object. + + + + + The object can not be modified. + + + + + The object can not be found here. + + + + + The operation is not supported. + + + + + The element is already in-use. + + + + + The object is in an invalid state. + + + + + The string did not match the expected pattern. + + + + + The object can not be modified in this way. + + + + + The operation is not allowed by namespaces in XML. + + + + + The object does not support the operation or argument. + + + + + The validation failed. + + + + + The provided argument type is invalid. + + + + + The operation is insecure. + + + + + A network error occurred. + + + + + The operation was aborted. + + + + + The given URL does not match another URL. + + + + + The quota has been exceeded. + + + + + The operation timed out. + + + + + The supplied node is incorrect or has an incorrect ancestor for this operation. + + + + + The object can not be cloned. + + + + + Defines the callback signature for an event. + + The callback this argument. + The event arguments. + + + + Represents a DOM exception. + + + + + Creates a new DOMException. + + The error code. + + + + Creates a new DOMException with a custom message. + + The message to transport. + + + + Gets the name of the error. + + + + + Gets the error code for this exception. + + + + + Useful methods for element objects. + + + + + Locates the prefix of the given namespace. + + The element that might contain the namespace information. + The url of the namespace. + The prefix or null, if the namespace could not be found. + + + + Locates the namespace of the given prefix. + + The element that might contain the namespace information. + The prefix of the namespace to find. + The url of the namespace or null, if the prefix could not be found. + + + + Gets the non-fixed namespace of the element. + + The element. + The url of the namespace. + + + + Tries to locate a custom namespace URI. + + The element to locate the namespace URI for. + The prefix of the custom namespace. + The located namespace URI. + True if the namespace URI could be located, otherwise false. + + + + Tries to locate the standard namespace URI. + + The element to locate the namespace URI for. + The located namespace URI. + True if the namespace URI could be located, otherwise false. + + + + Creates a new resource request from the provided element for the + given url. + + The element creating a request. + The address that specifies the target. + The new resource request with the information. + + + + Checks if the element with the provided prefix matches the CSS + namespace. + + The element to examine. + The namespace in question. + True if the namespace is matched, else false. + + + + Gets the CSS namespace that is defined via the provided prefix. + + The element that is connected to a doc. + The prefix to lookup. + The namespace url for the prefix. + + + + Checks if the element is currently hovered. + + The element to check. + True if the element is currently hovered, otherwise false. + + + + Checks if the element is the only of its type among the parent's children. + + The element to check. + True if the element is the only of its type among its siblings. + + + + Checks if the element is the first of its type among the parent's children. + + The element to check. + True if the element is the first of its type among its siblings. + + + + Checks if the element is the last of its type among the parent's children. + + The element to check. + True if the element is the last of its type among its siblings. + + + + Checks if the element is currently targeted. + + The element to check. + True if the element's ID is equal to the hash. + + + + Checks if the element is currently enabled. + + The element to check. + True if the element is currently enabled, otherwise false. + + + + Checks if the element is currently disabled. + + The element to check. + True if the element is currently disabled, otherwise false. + + + + Checks if the element is an input element that is currently in its default state. + + The element to check. + True if the element is currently in its default state, otherwise false. + + + + Checks if the element is a pseudo element (before or after). + + The element to check. + The pseudo element's name. + True if the element is a pseudo element, otherwise false. + + + + Checks if the element is currently checked. + + The element to check. + True if the element is currently checked, otherwise false. + + + + Checks if the element is currently in its indeterminate state. + + The element to check. + True if the element is currently indeterminate, otherwise false. + + + + Checks if the element is currently showing a placeholder. + + The element to check. + True if the element is currently showing a placeholder, otherwise false. + + + + Checks if the element is currently unchecked. + + The element to check. + True if the element is currently unchecked, otherwise false. + + + + Checks if the element is currently active. + + The element to check. + True if the element is currently active, otherwise false. + + + + Checks if the element has already been visited. + + The element to check. + True if the element has been visited, otherwise false. + + + + Checks if the element is a link. + + The element to check. + True if the element is a link, otherwise false. + + + + Checks if the element hosts a shadow tree. + + The element to check. + True if the element hosts a shadow tree. + + + + Checks if the element is only optional and not required. + + The element to check. + True if the element is optional, otherwise false. + + + + Checks if the element is required and must be filled out. + + The element to check. + True if the element is required, otherwise false. + + + + Checks if the element does not validate. + + The element to check. + True if the element is invalid, otherwise false. + + + + Checks if the element does validate. + + The element to check. + True if the element is valid, otherwise false. + + + + Checks if the element is readonly. + + The element to check. + True if the element is readonly, otherwise false. + + + + Checks if the element is editable. + + The element to check. + True if the element can be edited, otherwise false. + + + + Checks if the element's value is out-of-range. + + The element to check. + True if the element is invalid, otherwise false. + + + + Checks if the element's value is within the range. + + The element to check. + True if the element is valid, otherwise false. + + + + Checks if the element is its parent's only child. + + The element to check. + True if the element has no siblings, otherwise false. + + + + Checks if the element is its parent's first child. + + The element to check. + True if the element's first child is the given one, otherwise false. + + + + Checks if the element is its parent's last child. + + The element to check. + True if the element's last child is the given one, otherwise false. + + + + Sets the specified attribute name to the specified value for all + elements in the given collection. + + The type of element collection. + The collection. + The name of the attribute. + The value of the attribute. + The collection itself. + + + + Sets the specified attribute name to the specified value for all + elements in the given collection. + + The type of element collection. + The collection. + + An enumeration of attributes in form of key-value pairs. + + The collection itself. + + + + Sets the specified attribute name to the specified value for all + elements in the given collection. + + The type of element collection. + The collection of elements. + + An enumeration of attributes in form of an anonymous object, that + carries key-value pairs. + + The collection itself. + + + + Gets the values of the specified attribute for all elements in the + given collection. + + The type of element collection. + The collection of elements. + The name of the attribute. + The attributes' values. + + + + Clears the attributes of the given element. + + The element to clear. + The element itself. + + + + Clears the attributes of all elements. + + The type of element collection. + The collection to clear. + The collection itself. + + + + Empties the provided element. + + The element to empty. + The element itself. + + + + Empties all provided elements. + + The type of element collection. + The collection. + The collection itself. + + + + Gets the inner HTML of the given element. + + The element. + The source code of the inner HTML. + + + + Sets the inner HTML of the given elements. + + The type of collection. + The collection. + + The source code of the inner HTML to set. + + The collection itself. + + + + Adds the specified class name(s) for all elements in the given + collection. + + The type of element collection. + The collection. + The name(s) of the class(es). + The collection itself. + + + + Removes the specified class name(s) for all elements in the given + collection. + + The type of element collection. + The collection. + The name(s) of the class(es). + The collection itself. + + + + Toggles the specified class name(s) for all elements in the given + collection. + + The type of element collection. + The collection. + The name(s) of the class(es). + The collection itself. + + + + Checks if any element in the given collection has the given + class(es). + + The collection of elements. + The name(s) of the class(es). + + True if any element has the class(es), otherwise false. + + + + + Inserts the nodes generated from the given HTML code before + each element of the provided elements. + + The type of collection. + The elements to iterate through. + The HTML code that generates the nodes. + The unchanged collection. + + + + Inserts the nodes generated from the given HTML code after + each element of the provided elements. + + The type of collection. + The elements to iterate through. + The HTML code that generates the nodes. + The unchanged collection. + + + + Appends the nodes generated from the given HTML code to each + element of the provided elements. + + The type of collection. + The elements to iterate through. + The HTML code that generates the nodes. + The unchanged collection. + + + + Prepends the nodes generated from the given HTML code to each + element of the provided elements. + + The type of collection. + The elements to iterate through. + The HTML code that generates the nodes. + The unchanged collection. + + + + Wraps the given elements in the inner most element of the tree + generated form the provided HTML code. + + The type of collection. + The elements to iterate through. + The HTML code that generates the tree. + The unchanged collection. + + + + Wraps the content of the given elements in the inner most element + of the tree generated form the provided HTML code. + + The type of collection. + The elements to iterate through. + The HTML code that generates the tree. + The unchanged collection. + + + + Wraps all elements in the inner most element of the tree + generated form the provided HTML code. The tree is appended before + the first element of the given list. + + The type of collection. + The elements to wrap. + The HTML code that generates the tree. + The unchanged collection. + + + + Creates a new HTML Collection from the provided elements. + + The base type of the elements. + The elements to include. + The created collection. + + + + Navigates to the hyper reference given by the provided element + without any possibility for cancellation. + + The type of element. + The element of navigation. + The task eventually resulting in the response. + + + + Navigates to the hyper reference given by the provided element. + + The type of element. + The element of navigation. + The token for cancellation. + The task eventually resulting in the response. + + + + Creates a task to use the processor for loading and processing the + resource from the provided url. + + The element to use. + The processor to use. + The url of the resource. + + + + Gets a suitable image candidate for the provided image element. + + The element to use. + The possibly valid URL to the right candidate. + + + + Faster way of getting the (known) attribute. + + The element to host the attribute. + The name of the attribute. + The attribute's value, if any. + + + + Faster way of checking for a (known) attribute. + + The element to host the attribute. + The name of the attribute. + True if the attribute exists, otherwise false. + + + + Easy way of getting the current absolute url from attributes. + + The element to host the attribute. + The name of the attribute. + The attribute's absolute url value. + + + + Checks if the given attribute name corresponds to a boolean attribute. + + + + + Easy way of getting the current boolean value from attributes. + + The element to host the attribute. + The name of the attribute. + The attribute's boolean value. + + + + Easy way of setting the current boolean value of an attribute. + + The element to host the attribute. + The name of the attribute. + The attribute's value. + + + + Faster way of setting the (known) attribute. + + The element to host the attribute. + The name of the attribute. + The attribute's value. + Flag to suppress callbacks. + + + + Creates a unique selector path used to locate the element in the DOM. + + The starting node to create the selector path from. + The unique selector path for this element. + + + + Parses the HTML subtree of the given content in the context of + the provided element. + + The element to use as context. + The HTML source for the subtree. + The root element of the HTML subtree. + + + + The collection of (known / used) event names. + + + + + The invalid event. + + + + + The load event. + + + + + The DOMContentLoaded event. + + + + + The error event. + + + + + The beforescriptexecute event. + + + + + The afterscriptexecute event. + + + + + The readystatechanged event. + + + + + The abort event. + + + + + The blur event. + + + + + The cancel event. + + + + + The click event. + + + + + The change event. + + + + + The canplaythrough event. + + + + + The canplay event. + + + + + The cuechange event. + + + + + The dblclick event. + + + + + The drag event. + + + + + The dragend event. + + + + + The dragenter event. + + + + + The dragexit event. + + + + + The dragleave event. + + + + + The dragover event. + + + + + The dragstart event. + + + + + The drop event. + + + + + The durationchange event. + + + + + The emptied event. + + + + + The focus event. + + + + + The fullscreenchange event. + + + + + The fullscreenerror event. + + + + + The hashchange event. + + + + + The input event. + + + + + The message event. + + + + + The keydown event. + + + + + The keypress event. + + + + + The keyup event. + + + + + The ended event. + + + + + The loadeddata event. + + + + + The loadedmetadata event. + + + + + The loadend event. + + + + + The loadstart event. + + + + + The wheel event. + + + + + The mouseup event. + + + + + The mouseover event. + + + + + The mouseout event. + + + + + The mousemove event. + + + + + The mouseleave event. + + + + + The mouseenter event. + + + + + The mousedown event. + + + + + The pause event. + + + + + The play event. + + + + + The playing event. + + + + + The progress event. + + + + + The ratechange event. + + + + + The waiting event. + + + + + The volumechange event. + + + + + The toggle event. + + + + + The timeupdate event. + + + + + The suspend event. + + + + + The submit event. + + + + + The stalled event. + + + + + The show event. + + + + + The select event. + + + + + The seeking event. + + + + + The seeked event. + + + + + The scroll event. + + + + + The resize event. + + + + + The reset event. + + + + + The afterprint event. + + + + + The print event. + + + + + The beforeprint event. + + + + + The beforeunload event. + + + + + The unloading event. + + + + + The offline event. + + + + + The online event. + + + + + The pagehide event. + + + + + The pageshow event. + + + + + The popstate event. + + + + + The unload event. + + + + + The confirmUnload event. + + + + + The storage event. + + + + + The parsing event. + + + + + The parsed event. + + + + + The requesting event. + + + + + The requested event. + + + + + Represents a custom event that provides an additional details property. + + + + + Creates a new event. + + + + + Creates a new event and initializes it. + + The type of the event. + If the event is bubbling. + If the event is cancelable. + Sets the details for the custom event. + + + + Gets the details that have been associated with the custom event. + + + + + Initializes the custom event. + + The type of event. + Determines if the event bubbles. + Determines if the event is cancelable. + Sets the details for the custom event. + + + + Provides string to Event instance creation mappings. + + + + + Represents a creator delegate for creating a new event. + + The created event. + + + + Creates a new event factory. + + + + + Registers a new creator for the specified event name. + Throws an exception if another creator for the given + event name is already added. + + The name of the event. + The creator to invoke. + + + + Unregisters an existing creator for the given event name. + + The name of the event. + The registered creator, if any. + + + + Creates the default event for the given name. By default + this returns null. + + The name of the event. + The created event. + + + + Creates a new event. + + The name of the event. + The created event. + + + + Represents the error event arguments. + + + + + Gets the message describing the error. + + + + + Gets the filename where the error occurred. + + + + + Gets the line number of the error. + + + + + Gets the column number of the error. + + + + + Gets the exception describing the error. + + + + + Initializes the error event. + + The name of the file containing the error. + The line within the file. + The column within the line,. + The specific error that was thrown. + + + + Represents an event argument. + + + + + Creates a new event. + + + + + Creates a new event and initializes it. + + The type of the event. + If the event is bubbling. + If the event is cancelable. + + + + Gets the associated flags. + + + + + Gets the type of event. + + + + + Gets the original target of the event. + + + + + Gets the current target (if bubbled). + + + + + Gets the phase of the event. + + + + + Gets if the event is actually bubbling. + + + + + Gets if the event is cancelable. + + + + + Gets if the default behavior has been prevented. + + + + + Gets if the event is trusted. + + + + + Gets the originating timestamp. + + + + + Prevents further propagation of the event. + + + + + Stops the immediate propagation. + + + + + Prevents the default behavior. + + + + + Initializes the event. + + The type of the event. + If the event is bubbling. + If the event is cancelable. + + + + Dispatch the event as described in the specification. + http://www.w3.org/TR/DOM-Level-3-Events/ + + The target of the event. + A boolean if the event has been cancelled. + + + + Represents the different phases of an event. + + + + + Events not currently dispatched are in this phase. + + + + + When an event is dispatched to an object that + participates in a tree it will be in this phase + before it reaches its target attribute value. + + + + + When an event is dispatched it will be in this + phase on its target attribute value. + + + + + When an event is dispatched to an object that + participates in a tree it will be in this phase + after it reaches its target attribute value. + + + + + Represents the arguments for a focus event. + + + + + Creates a new event. + + + + + Creates a new event and initializes it. + + The type of the event. + If the event is bubbling. + If the event is cancelable. + Sets the associated view for the UI event. + Sets the detail id for the UIevent. + The target that is being focused. + + + + Gets the target of the event. + + + + + Initializes the focus event. + + The type of event. + Determines if the event bubbles. + Determines if the event is cancelable. + Sets the associated view for the UI event. + Sets the detail id for the UIevent. + The target that is being focused. + + + + Represents a custom event that provides an additional details property. + + + + + Creates a new event. + + + + + Creates a new event and initializes it. + + The type of the event. + If the event is bubbling. + If the event is cancelable. + The previous URL. + The current URL. + + + + Gets the URL before the hash changed. + + + + + Gets the URL after the hash changed. + + + + + Initializes the hashchanged event. + + The type of event. + Determines if the event bubbles. + Determines if the event is cancelable. + The previous URL. + The current URL. + + + + Represents a factory to create event data. + + + + + Creates a new event data object for the given event. + + The name of the event. + The event data for the given event. + + + + Defines a set of event handlers that are implemented by all HTML elements. + + + + + Event triggered after aborting. + + + + + Event triggered after losing focus. + + + + + Event triggered after cancelling. + + + + + Event triggered when the media can be played. + + + + + Event triggered when the media can be fully played. + + + + + Event triggered after the value changed. + + + + + Event triggered after being clicked. + + + + + Event triggered after changing the cue. + + + + + Event triggered after performing a double click. + + + + + Event triggered after starting to be dragged. + + + + + Event triggered after being dragged. + + + + + Event triggered after entering in dragging mode. + + + + + Event triggered after exiting the dragging mode. + + + + + Event triggered after leaving in dragging mode. + + + + + Event triggered after hovering in dragging mode. + + + + + Event triggered after starting to drag. + + + + + Event triggered after dropping. + + + + + Event triggered when the media cursor changed. + + + + + Event triggered after being emptied. + + + + + Event triggered after the media ended. + + + + + Event triggered after an error occurred. + + + + + Event triggered after receiving focus. + + + + + Event triggered after input has happend. + + + + + Event triggered after validation failed. + + + + + Event triggered after key down. + + + + + Event triggered after key press. + + + + + Event triggered after key up. + + + + + Event triggered after the content has been fully loaded. + + + + + Event triggered after the data has been loaded. + + + + + Event triggered after the meta data has been received. + + + + + Event triggered when loading begins. + + + + + Event triggered after mouse down. + + + + + Event triggered after mouse enter. + + + + + Event triggered after mouse leave. + + + + + Event triggered after mouse move. + + + + + Event triggered after mouse out. + + + + + Event triggered after mouse over. + + + + + Event triggered after mouse up. + + + + + Event triggered after mouse wheel. + + + + + Event triggered after the media paused. + + + + + Event triggered after the media started. + + + + + Event triggered before the media started. + + + + + Event triggered after progress. + + + + + Event triggered after the rate changed. + + + + + Event triggered after resetting the form. + + + + + Event triggered after resizing the window. + + + + + Event triggered after scrolling has happened. + + + + + Event triggered after seeking in the media stream. + + + + + Event triggered before seeking in the media stream. + + + + + Event triggered after selected the element. + + + + + Event triggered after being shown. + + + + + Event triggered after being stalled. + + + + + Event triggered after the form has been submitted. + + + + + Event triggered after suspending. + + + + + Event triggered after the time updated. + + + + + Event triggered after being toggled. + + + + + Event triggered after the volume changed. + + + + + Event triggered when waiting for input. + + + + + Represents a message port as defined here: + http://www.whatwg.org/specs/web-apps/current-work/multipage/comms.html#messageport + + + + + Sends a message over the current message port. + + The message to send. Will be serialized to a string. + + + + Opens the message port. + + + + + Closes the message port. + + + + + Fired when a message has been received. + + + + + Represents a set of event handlers for a Window. + + + + + Event triggered after printing. + + + + + Event triggered before printing. + + + + + Event triggered before closing the document. + + + + + Event triggered when the hash has been changed. + + + + + Event triggered after receiving a message. + + + + + Event triggered after losing connection. + + + + + Event triggered after being connected. + + + + + Event triggered after the page has been hidden. + + + + + Event triggered after showing the page. + + + + + Event triggered after popping the state from the history. + + + + + Event triggered after using the provided storage. + + + + + Event triggered after after closing the document. + + + + + Represents the event arguments when receiving a message. + + + + + Creates a new event. + + + + + Creates a new event and initializes it. + + The type of the event. + If the event is bubbling. + If the event is cancelable. + Sets the data for the message event. + Sets the origin who send the message. + Sets the id of the last event. + Sets the source window of the message. + The message ports to include. + + + + Gets the data that is carried by the message. + + + + + Gets the origin of the message. + + + + + Gets the id of the last event. + + + + + Gets the source of the message. + + + + + Gets the used message ports. + + + + + Initializes the message event. + + The type of event. + Determines if the event bubbles. + Determines if the event is cancelable. + Sets the data for the message event. + Sets the origin who send the message. + Sets the id of the last event. + Sets the source window of the message. + The message ports to include. + + + + Represents a page transition event argument. + + + + + Creates a new event. + + + + + Creates a new event and initializes it. + + The type of the event. + If the event is bubbling. + If the event is cancelable. + Indicates if a webpage is loading from a cache. + + + + Gets if a webpage is loading from a cache.. + + + + + Initializes the event. + + The type of the event. + If the event is bubbling. + If the event is cancelable. + Indicates if a webpage is loading from a cache. + + + + The event that is published in case of new request. + + + + + Creates a new event for a request. + + The data of the request. + The received response. + + + + Gets the transmitted request. + + + + + Gets the received response. + + + + + Represents the event args for any UI event. + + + + + Creates a new event. + + + + + Creates a new event and initializes it. + + The type of the event. + If the event is bubbling. + If the event is cancelable. + Sets the associated view for the UI event. + Sets the detail id for the UIevent. + + + + Gets the associated view. + + + + + Gets the event details. + + + + + Initializes the UI event. + + The type of event. + Determines if the event bubbles. + Determines if the event is cancelable. + Sets the associated view for the UI event. + Sets the detail id for the UIevent. + + + + Event target base of all DOM nodes. + + + + + Register an event handler of a specific event type on the Node. + + + A string representing the event type to listen for. + + + The listener parameter indicates the EventListener function to be + added. + + + True indicates that the user wishes to initiate capture. After + initiating capture, all events of the specified type will be + dispatched to the registered listener before being dispatched to + any Node beneath it in the DOM tree. Events which are bubbling + upward through the tree will not trigger a listener designated to + use capture. + + + + + Removes an event listener from the Node. + + + A string representing the event type being removed. + + + The listener parameter indicates the EventListener function to be + removed. + + + Specifies whether the EventListener being removed was registered as + a capturing listener or not. + + + + + Removes all listeners. + + + + + Calls the listener registered for the given event. + + The event that asks for the listeners. + + + + Checks if the given event type has any listeners registered. + + The name of the event. + + True if listeners are registered, otherwise false. + + + + + Dispatch an event to this Node. + + The event to dispatch. + + False if at least one of the event handlers, which handled this + event called preventDefault(). Otherwise true. + + + + + A set of extensions for EventTarget objects. + + + + + Firing a simple event means that a trusted event with a name, which + does not bubble, is not cancelable and which uses the Event + interface. It is created and dispatched at the given target. + + The target of the simple event. + The name of the event to be fired. + Optional parameter to enable bubbling. + Should it be cancelable? + + True if the element was cancelled, otherwise false. + + + + + Fires a trusted event with the provided event data. + + The target of the event. + The event data to dispatch. + + True if the element was cancelled, otherwise false. + + + + + Firing an event means dispatching the initialized (and trusted) + event at the specified event target. + + + The target, where the event has been invoked. + + The used initializer. + + The current event target, if different to the invoked target. + + + True if the element was cancelled, otherwise false. + + + + + Returns a task that is completed once the event is fired. + + The event target type. + The node that fires the event. + The name of the event to be awaited. + The awaitable task returning the event arguments. + + + + An enumeration that contains the valid results of examining a node. + + + + + The Node is accepted. + + + + + The Node (and its children) are rejected. + + + + + The Node is skipped. Children are still considered. + + + + + The enumeration with the flags for setting the NodeIterator. + + + + + All nodes will be considered. + + + + + Elements will be shown. + + + + + Attributes will be shown. + + + + + Text nodes will be shown. + + + + + CData sections will be shown. + + + + + EntityReferences will be shown. + + + + + Entities will be shown. + + + + + ProcessingInstructions will be shown. + + + + + Comments will be shown. + + + + + Documents will be shown. + + + + + DocumentTypes will be shown. + + + + + DocumentFragments will be shown. + + + + + Notations will be shown. + + + + + The list of possible horizontal alignments. + + + + + The inline contents are aligned to the left edge of the line box. + This is the default value for table data. + + + + + The inline contents are centered within the line box. This is + the default value for table headers. + + + + + The inline contents are aligned to the right edge of the line box. + + + + + The text is justified. Text should line up their left and right + edges to the left and right content edges of the paragraph. + + + + + This type represents a DOM element's attribute as an object. + + + + + Gets the local name of the attribute. + + + + + Gets the attribute's name. + + + + + Gets the attribute's value. + + + + + Gets the namespace URL of the attribute. + + + + + Gets the prefix used by the namespace. + + + + + Represents the interface for observing attribute changes. + + + + + Defines the callback signature to react once an attribute changes. + + The element hosting the attribute. + The name of the changed attribute. + The new value of the attribute. + + + + The CharacterData abstract interface represents a Node object that + contains characters. + + + + + Gets or sets the contained text. + + + + + Gets the length of the contained text. + + + + + Returns a string containing the part of Data of the specified + length and starting at the specified offset. + + The point where to start. + The numbers of characters to copy. + + A string that contains a subset of the characters of Data. + + + + + Appends the given value to the Data string. + + The text to append. + + + + Inserts the specified characters, at the specified offset, + in the Data text. + + The offset where to insert the text. + The text to insert. + + + + Removes the specified amount of characters, starting at + the specified offset, from the Data. + + + The offset, where the removal should begin. + + The number of characters to remove. + + + + Replaces the specified amount of characters, starting at the + specified offset, with the specified value. + + + The offset, where the text should be inserted. + + + The amount of characters that should be overwritten. + + The value to insert. + + + + The ChildNode interface contains methods that are particular to Node + objects that can have a parent. + + + + + Inserts nodes just before the current node. + + The nodes to insert. + + + + Inserts nodes just after the current node. + + The nodes to insert. + + + + Replaces the current node with nodes. + + The nodes to insert. + + + + Removes the current node. + + + + + The Comment interface represents textual notations within markup; + although it is generally not visually shown, such comments are + available to be read in the source view. + + + + + The Document interface serves as an entry point to the web page's + content. + + + + + Gets a list of all elements in the document. + + + + + Gets a list of all of the anchors in the document. + + + + + Gets the DOM implementation associated with the current document. + + + + + Gets or sets whether the entire document is editable. + + + + + Gets or sets the value of the dir attribute. + + + + + Gets the URI of the current document. + + + + + Gets the character encoding of the current document. + + + + + Gets a value to indicate whether the document is rendered in Quirks + mode (BackComp) or Strict mode (CSS1Compat). + + + + + Gets a string containing the URL of the current document. + + + + + Gets the Content-Type from the MIME Header of the current document. + + + + + Causes the Document to be replaced in-place, as if it was a new + Document object, but reusing the previous object, which is then + returned. + + The new content type. + + Special annotation to replace the history. + + + + + Finishes writing to a document. + + + + + Writes text to a document. + + + The text to be written on the document. + + + + + Writes a line of text to a document. + + + The text to be written on the document. + + + + + Loads the document content from the given url. + + The url that hosts the content. + + + + Gets the document type. + + + + + Gets the root element of the document. + + + + + Returns a list of elements with a given name in the HTML document. + + + The value of the name attribute of the element. + + A collection of HTML elements. + + + + Returns a set of elements which have all the given class names. + + + A string representing the list of class names to match; class names + are separated by whitespace. + + A collection of elements. + + + + Returns a NodeList of elements with the given tag name. The + complete document is searched, including the root node. + + + A string representing the name of the elements. The special string + "*" represents all elements. + + + A collection of elements in the order they appear in the tree. + + + + + Returns a list of elements with the given tag name belonging to the + given namespace. The complete document is searched, including the + root node. + + + The namespace URI of elements to look for. + + + Either the local name of elements to look for or the special value + "*", which matches all elements. + + + A collection of elements in the order they appear in the tree. + + + + + Creates an event of the type specified. + + + Represents the type of event (e.g., uievent, event, customevent, + ...) to be created. + + The event. + + + + Creates a new Range object. + + The range. + + + + Creates a new comment node, and returns it. + + + A string containing the data to be added to the Comment. + + The new comment. + + + + Creates an empty DocumentFragment object. + + The new document fragment. + + + + Creates a new element with the given tag name. + + + A string that specifies the type of element to be created. + + The created element object. + + + + Creates a new element with the given tag name and namespace URI. + + + Specifies the namespace URI to associate with the element. + + + A string that specifies the type of element to be created. + + The created element. + + + + Creates an Attr of the given name. + + + The name of the attribute. + + + A new Attr object with the nodeName attribute set to name, and + localName, prefix, and namespaceURI set to null. The value of the + attribute is the empty string. + + + + + Creates an attribute of the given qualified name and namespace URI. + + + The namespace URI of the attribute to create. + + + The qualified name of the attribute to instantiate. + + A new Attr object. + + + + Creates a ProcessingInstruction node given the specified name and + data strings. + + + The target part of the processing instruction. + + The data for the node. + The new processing instruction. + + + + Creates a new text node and returns it. + + + A string containing the data to be put in the text node. + + The created text node. + + + + Creates a new NodeIterator object. + + + The root node at which to begin the NodeIterator's traversal. + + + Indicates which nodes to iterate over. + + + An optional callback function for filtering. + + The created node NodeIterator. + + + + Creates a new TreeWalker object. + + + Is the root Node of this TreeWalker traversal. + + + Indicates which nodes to iterate over. + + + An optional callback function for filtering. + + The created node TreeWalker. + + + + Creates a copy of a node from an external document that can be + inserted into the current document. + + + The node from another document to be imported. + + + Optional argument, indicating whether the descendants of the + imported node need to be imported. + + + The new node that is imported into the document. The new node's + parentNode is null, since it has not yet been inserted into the + document tree. + + + + + Adopts a node from an external document. The node and its subtree + is removed from the document it's in (if any), and its + ownerDocument is changed to the current document. The node can then + be inserted into the current document. The new node's parentNode is + null, since it has not yet been inserted into the document tree. + + + The node from another document to be adopted. + + + The adopted node that can be used in the current document. + + + + + Gets the date of the last modification. + + + + + Gets the current ready state of the document. + + + + + Gets the current location of the document. + + + + + Gets the forms in the document. + + + + + Gets the images in the document. + + + + + Gets the scripts in the document. + + + + + Gets a list of the embed elements within the current document. + + + + + Gets a list of the commands (menu item, button, and link elements) + within the current document. + + + + + Gets a collection of all area and anchor elements in a document + with a value for the href attribute. + + + + + Gets or sets the title of the document. + + + + + Gets or sets the head element. + + + + + Gets the body element. + + + + + Gets or sets the document cookie. + + + + + Gets the Unicode serialization of document's origin. + + + + + Gets or sets the domain portion of the origin of the current + document. + + + + + Gets the referer to that pointed to the current document. + + + + + Event triggered after the ready state changed. + + + + + Gets the currently focused element, that is, the element that will + get keystroke events if the user types any. + + + + + Gets the script element which is currently being processed. + + + + + Gets the window object associated with the document or null if none + available. + + + + + Checks if the document is currently focused. + + True if the document is active and in the focus. + + + + Executes a command with the provided id and the optional arguments. + + The id of the command to issue. + Shall the UI be shown? + + The argument value of the command, if any. + + + True if the command has been successfully executed, otherwise + false. + + + + + Checks if the command with the provided id is enabled. + + The id of the command to check. + + True if the command exists and is enabled, otherwise false. + + + + + Checks if the command with the provided id is currently in an + indeterminate state. + + The id of the command to check. + + True if the command exists and is neither enabled nor disabled, + otherwise false. + + + + + Checks if the command with the provided id has already been + executed for the current value. + + The id of the command to check. + + True if the command has been executed, otherwise false. + + + + + Checks if a command with the provided id exists and is supported + in the current context. + + The id of the command to check. + True if the command exists, otherwise false. + + + + Gets the value of the document, range, or current selection, for + the provided command. + + The id of the command to issue. + The modified value. + + + + Gets the browsing context to use. + + + + + Gets the import ancestor, if any. + + + + + Gets the underlying source. + + + + + Gets the status code of the server's response, if any. + + + + + Gets the associated entity provider. + + + + + Represents the factory for creating documents from responses. + + + + + Creates a new attribute selector from the given arguments. + + The browsing context to use. + The options to consider. + The cancellation token. + The task creating the document from the response. + + + + The DocumentFragment interface represents a minimal document object + that has no parent. + + + + + Extends the document with further properties for styling. + + + + + Gets a list of stylesheet objects for stylesheets explicitly linked + into or embedded in a document. + + + + + Gets or sets the selected set of stylesheets. + + + + + Gets the last stylesheet set. + + + + + Gets the preferred stylesheet set. + + + + + Gets a live list of all of the currently-available style sheet + sets. + + + + + Enables the stylesheets matching the specified name in the current + style sheet set, and disables all other style sheets (except those + without a title, which are always enabled). + + The name of the sheets to enable. + + + + The DocumentType interface represents a Node containing a doctype. + + + + + Gets or sets the name of the document type. + + + + + Gets or sets the public ID of the document type. + + + + + Gets or sets the system ID of the document type. + + + + + Defines how a DOMException should look like. + + + + + Gets the error code for this exception. + + + + + The Element interface represents an object within a DOM document. + + + + + Gets the namespace prefix of this element. + + + + + Gets the local part of the qualified name of this element. + + + + + Gets the namespace URI of this element. + + + + + Gets the sequence of associated attributes. + + + + + Gets the list of class names. + + + + + Gets or sets the value of the class attribute. + + + + + Gets or sets the id value of the element. + + + + + Inserts new HTML elements specified by the given HTML string at + a position relative to the current element specified by the + position. + + The relation to the current element. + The HTML code to generate elements for. + + + + Returns a boolean value indicating whether the specified element + has the specified attribute or not. + + The attributes name. + The return value of true or false. + + + + Returns a boolean value indicating whether the specified element + has the specified attribute or not. + + + A string specifying the namespace of the attribute. + + The attributes name. + The return value of true or false. + + + + Returns the value of the named attribute on the specified element. + + + The name of the attribute whose value you want to get. + + + If the named attribute does not exist, the value returned will be + null, otherwise the attribute's value. + + + + + Returns the value of the named attribute on the specified element. + + + A string specifying the namespace of the attribute. + + + The name of the attribute whose value you want to get. + + + If the named attribute does not exist, the value returned will be + null, otherwise the attribute's value. + + + + + Adds a new attribute or changes the value of an existing attribute + on the specified element. + + The name of the attribute as a string. + The desired new value of the attribute. + The current element. + + + + Adds a new attribute or changes the value of an existing attribute + on the specified element. + + + A string specifying the namespace of the attribute. + + The name of the attribute as a string. + The desired new value of the attribute. + + + + Removes an attribute from the specified element. + + + Is a string that names the attribute to be removed. + + True if an attribute was removed, otherwise false. + + + + Removes an attribute from the specified element. + + + A string specifying the namespace of the attribute. + + + Is a string that names the attribute to be removed. + + True if an attribute was removed, otherwise false. + + + + Returns a set of elements which have all the given class names. + + + A string representing the list of class names to match; class names + are separated by whitespace. + + A collection of elements. + + + + Returns a NodeList of elements with the given tag name. The + complete document is searched, including the root node. + + + A string representing the name of the elements. The special string + "*" represents all elements. + + + A collection of elements in the order they appear in the tree. + + + + + Returns a list of elements with the given tag name belonging to the + given namespace. The complete document is searched, including the + root node. + + + The namespace URI of elements to look for. + + + Either the local name of elements to look for or the special value + "*", which matches all elements. + + + A collection of elements in the order they appear in the tree. + + + + + Checks if the element is matched by the given selector. + + Represents the selector to test. + + True if the element would be selected by the specified selector, + otherwise false. + + + + + Returns the closest ancestor of the current element (or the current element itself) which matches the selectors given in the parameter. + + Represents the selector to test. + + The closest ancestor of the current element (or the current element itself) which matches the selectors given. If there isn't such an ancestor, it returns null. + + + + + Gets or sets the inner HTML (excluding the current element) of the + element. + + + + + Gets or sets the outer HTML (including the current element) of the + element. + + + + + Gets the name of the tag that represents the current element. + + + + + Creates a new shadow root for the current element, if there is none + already. + + The mode of the shadow root. + The new shadow root. + + + + Gets the assigned slot of the current element, if any. + + + + + Gets the value of the slot attribute. + + + + + Gets the shadow root of the current element, if any. + + + + + Gets if the element is currently focused. + + + + + Gets the source reference if available. + + + + + Represents an element factory. + + The type of root document. + The common type of elements to create. + + + + Creates a new element with the given local name and optional prefix. + + The owner of the element. + The local name of the element. + The optional prefix of the element. + The optional flags for the node. + The created document's child element. + + + + Defines methods to create a custom entity service. + + + + + Gets a symbol specified by its entity name usually trailed with + the semicolon, if available. + + The name of the entity in the markup. + The string with the symbol or null. + + + + EventTarget is a DOM interface implemented by objects that can receive + DOM events and have listeners for them. + + + + + Register an event handler of a specific event type on the + EventTarget. + + + A string representing the event type to listen for. + + + The listener parameter indicates the EventListener function to be + added. + + + True indicates that the user wishes to initiate capture. After + initiating capture, all events of the specified type will be + dispatched to the registered listener before being dispatched to + any EventTarget beneath it in the DOM tree. Events which are + bubbling upward through the tree will not trigger a listener + designated to use capture. + + + + + Removes an event listener from the EventTarget. + + + A string representing the event type being removed. + + + The listener parameter indicates the EventListener function to be + removed. + + + Specifies whether the EventListener being removed was registered as + a capturing listener or not. + + + + + Calls the listener registered for the given event. + + The event that asks for the listeners. + + + + Dispatch an event to this EventTarget. + + The event to dispatch. + + False if at least one of the event handlers, which handled this + event called preventDefault(). Otherwise true. + + + + + An HTMLAllCollection is always rooted at document and matching all + elements. It represents the tree of elements in a one-dimensional + fashion. + + + + + HTMLCollection is an interface representing a generic collection + (array) of elements (in document order) and offers methods and + properties for selecting from the list. + + + + + Gets the number of items in the collection. + + + + + Gets the specific node at the given zero-based index into the list. + + The zero-based index. + Returns the element at the specified index. + + + + Gets the specific node whose ID or, as a fallback, name matches the + string specified by name. Matching by name is only done as a last + resort, only in HTML, and only if the referenced element supports + the name attribute. + + The id or name to match. + Returns the element with the specified name. + + + + The DOMImplementation interface represent an object providing methods + which are not dependent on any particular document. + + + + + Creates and returns an HTML Document. + + + The title to give the new HTML document. + + A new document. + + + + Creates and returns a DocumentType. + + + The qualified name, like svg:svg. + + + The PUBLIC identifier. + + + The SYSTEM identifiers. + + A document type with the specified attributes. + + + + Returns a Boolean indicating if a given feature is supported or + not. This function is unreliable and kept for compatibility purpose + alone: except for SVG-related queries, it always returns true. + + The feature name. + + The version of the specification defining the feature. + + + + + + Implemented by elements that may expose imports. + + + + + Gets the Document object associated with the given element, or null + if there is none. + + + + + Implemented by elements that may expose stylesheets. + + + + + Gets the StyleSheet object associated with the given element, or + null if there is none. + + + + + The Location interface represents the location of the object it is + linked to. Changes done on it are reflected on the object it relates + to. + + + + + Loads the resource at the URL provided in parameter. + + The path to the resource. + + + + Replaces the current resource with the one at the provided URL. The + difference from the assign() method is that after using replace() + the current page will not be saved in session History, meaning the + user won't be able to use the back button to navigate to it. + + + The path to the resource that should replace the current resource. + + + + + Reloads the resource from the current URL. + + + + + MutationRecord defines an interface that will be passed to the + observer's callback. + + + + + Gets attributes if the mutation was an attribute mutation, + characterData if it was a mutation to a CharacterData node, and + childList if it was a mutation to the tree of nodes. + + + + + Gets the node the mutation affected, depending on the type. For + attributes, it is the Element whose attribute changed. For + CharacterData, it is the CharacterData node. For ChildList, it is + the node whose children changed. + + + + + Gets the nodes added, or null. + + + + + Gets the nodes removed, or null. + + + + + Gets the previous sibling of the added or removed nodes, or null. + + + + + Gets the next sibling of the added or removed nodes, or null. + + + + + Gets the local name of the changed attribute, or null. + + + + + Gets the namespace of the changed attribute, or null. + + + + + Gets a string depending on the type. For attributes, it is the + value of the changed attribute before the change. For + characterData, it is the data of the changed node before the + change. For childList, it is null. + + + + + NamedNodeNap is a key/value pair of nodes that can be accessed by + numeric or string index. + https://dom.spec.whatwg.org/#interface-namednodemap + + + + + Gets the node at the specified numeric index. + + The index of the element. + The attribute at the specified numeric index. + + + + Gets the node with the specified name. + + The name of the element. + The attribute at the specfied name. + + + + Gets the number of nodes in the NamedNodeMap. + + The number of nodes in the collection. + + + + Gets a named item in the NamedNodeMap. + + The name of the item to get. + The attribute with the given name. + + + + Sets a named item in the NamedNodeMap. + + The named item to set. + The replaced attribute, if any. + + + + Removes a named item from the NamedNodeMap + + The named item to remove. + The removed attribute. + + + + Gets a named item in the NamedNodeMap identified by namespace and + local name. + + The namespace of the item. + The local name of the item. + The attribute with the namespaceUri and name. + + + + Sets a named item in the NamedNodeMap. + + The named item to set. + The replaced attribute, if any. + + + + Removes a named item from the NamedNodeMap. + + The namespace of the item. + The local name of the item. + The removed attribute. + + + + A Node is an interface from which a number of DOM types inherit, and + allows these various types to be treated similarly. + + + + + Gets a string representing the base URL. + + + + + Gets the base url. + + + + + Gets a string containing the name of the Node. The structure of the + name will differ with the name type. + + + + + Gets a live NodeList containing all the children of this node. + Being live means that if the children of the node change, the + NodeList object is automatically updated. + + + + + Clones the node, and optionally, all of its contents. + By default, it clones the content of the node. + + + Optionally: Sets if all of the content should be cloned as well. + + The cloned node. + + + + Determines if two nodes are equal. + + + The node to be compared to the node that is executing the method. + + + True if the node specified in the otherNode parameter is equal to + the current node. + + + + + Compares the position of two nodes in a document. + + + The node to be compared to the reference node, which is the node + executing the method. + + The relation between the two nodes. + + + + Cleans up all the text nodes under this element, i.e. merges + adjacent and removes empty text nodes. + + + + + Gets the Document that this node belongs to. If no document is + associated with it, returns null. + + + + + Gets an Element that is the parent of this node. If the node has no + parent, or if that parent is not an Element, this property returns + null. + + + + + Gets a node that is the parent of this node. If there is no such + node, like if this node is the top of the tree or if doesn't + participate in a tree, this property returns null. + + + + + Returns true if other is an inclusive descendant of the context + object, and false otherwise (including when other is null). + + The Node to check the childs for. + + True if the given node is contained within this Node, otherwise + false. + + + + + Gets a Node representing the first direct child node of the node, + or null if the node has no child. + + + + + Gets a node representing the last direct child node of the node, + or null if the node has no child. + + + + + Gets a Node representing the next node in the tree, or null if + there isn't such node. + + + + + Gets a Node representing the previous node in the tree, or null if + there isn't such node. + + + + + Indicates whether or not a namespace is the default namespace for a + document. + + + The namespace to be compared to the default namespace. + + + True if the given namespace URI is the default for the current + document. + + + + + Gets the Uniform Resource Identifier (URI) of the namespace + associated with a namespace prefix, if any. + + The namespace prefix. + The URI of the namespace. + + + + Gets the namespace prefix associated with a Uniform + Resource Identifier (URI), if any. + + The URI. + The namespace prefix associated with the URI. + + + + Gets an unsigned short representing the type of the node. + + + + + Gets or sets a string representing the value of an object. For most + node types, this returns null and any set operation is ignored. + + + + + Gets or sets the textual content of an element and all its + descendants. + + + + + Gets an indicator if the element has any child nodes, or not. + + + + + Inserts a node as the last child node of this element. + + The node to be appended. + The appended Node. + + + + Inserts the newElement immediately before the referenceElement. + + The node to be inserted. + + The existing child element that will succeed the new element. + + The inserted node. + + + + Removes a child node from the current element, which must be a + child of the current node. + + The child to be removed. + The removed node. + + + + Replaces one child node of the current one with the second one + given in the parameters. + + The child to be inserted. + The child to be removed. + The old node, if any. + + + + Gets the associated node flags. + + + + + The NodeIterator interface represents an iterator over the members of a + list of the nodes in a subtree of the DOM. The nodes will be returned + in document order. + + + + + Gets a Node representing the root node as specified when the + NodeIterator was created. + + + + + Gets the Node to which the iterator is anchored. + + + + + Gets an indicator whether the NodeFilter is anchored before the + reference node. + + + + + Gets a description of the types of nodes that must to be presented. + Non-matching nodes are skipped, but their children may be included, + if relevant. + + + + + Gets the NodeFilter used to select the relevant nodes. + + + + + Returns the next Node in the document, or null if there are none. + + The next Node, if any. + + + + Returns the previous Node in the document, or null if there are + none. + + The previous Node, if any. + + + + NodeList objects are collections of nodes. + + + + + Returns an item in the list by its index, or throws an exception. + + The 0-based index. + The element at the given index. + + + + Gets the number of nodes in the NodeList. + + + + + Extensions to ChildNode nodes that are not document type nodes. + + + + + Gets the Element immediately following this ChildNode in its + parent's children list, or null if there is no Element in the list + following this ChildNode. + + + + + Gets the Element immediately prior to this ChildNode in its + parent's children list, or null if there is no Element in the list + prior to this ChildNode. + + + + + Extensions to ParentNode nodes that are not Element nodes. + + + + + Returns the Element whose ID is given by elementId. If no such + element exists, returns null. The behavior is not defined if + more than one element have this ID. + + + A case-sensitive string representing the unique ID of the element + being sought. + + The matching element. + + + + + + + Represents a generic node attribute. + + + + + Creates a new attribute with the given local name. + + The local name of the attribute. + + + + Creates a new attribute with the given local name and value. + + The local name of the attribute. + The value of the attribute. + + + + Creates a new attribute with the given properties. + + The prefix of the attribute. + The local name of the attribute. + The value of the attribute. + The namespace of the attribute. + + + + Gets the attribute's prefix. + + + + + Gets if the attribute is an id attribute. + + + + + Gets if the value is given or not. + + + + + Gets the attribute's fully qualified name. + + + + + Gets the attribute's value. + + + + + Gets the attribute's local name. + + + + + Gets the attribute's namespace. + + + + + Checks if the attribute equals another attribute. + + The other attribute. + True if both are equivalent, otherwise false. + + + + Computes the hash code of the attribute. + + The computed hash code. + + + + The base class for all characterdata implementations. + + + + + A bunch of methods for getting DOM elements on some internal collections. + + + + + Gets the descendents from the provided parent that fulfill the + specified predicate, if any. + + The type of elements to obtain. + The parent of the descendents. + + True if all descendents, false if only direct descendents should be + considered. + + The filter function, if any. + The collection with the corresponding elements. + + + + Gets an element by its ID. + + The nodelist to investigate. + The id to find. + The element or null. + + + + Gets a list of HTML elements given by their name attribute. + + The list to investigate. + The name attribute's value. + The result collection. + + + + Determines if the current filter settings includes the provided + node. + + The filter settings to use. + The node to check against. + True if the node is accepted, otherwise false. + + + + Gets the element with the provided id, if any. Otherwise the + element with the same name is searched. + + The type of node to obtain. + The list of elements to filter. + The id of the element to find. + The element with the given id, or null. + + + + Represents a node that contains a comment. + + + + + An enumeration with all contenteditable modes. + + + + + Not contenteditable. + + + + + The element is contenteditable. + + + + + Inherited from the parent element. + + + + + Represents the default attribute observer. + + + + + Creates a new instance. + + + + + Registers the standard attribute observers, e.g., for class, style, ... attributes. + + + + + Registers a new attribute observer. + + The associated element type. + The name of the attribute. + The callback to invoke when the condition is met. + + + + Represents a document node. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Clears the whole document without any notification. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sets the document up with the given parameters. + + The received response. + The content-type. + The ancestor, if any. + + + + Creates a new element in the current namespace from the infos. + + The name of the new element. + The optional prefix to use. + The optional flags, if any. + The created element. + + + + Waits for the given task before raising the load event. + + The task to wait for. + + + + Gets the specified attached references. + + The type of values to get. + Gets the enumeration over all values. + + + + Attaches another reference to this document. + + The value to attach. + + + + Sets the focus to the provided element. + + The element to focus on. + + + + Finishes writing to a document. + + + + + Potentially prompts the user to unload the document. + + True if unload okay, otherwise false. + + + + Unloads the document. For more details, see: + http://www.w3.org/html/wg/drafts/html/CR/browsers.html#unload-a-document + + The recycle parameter. + + + + + + + + + + + + + + + + + + + Represents a document fragment. + + + + + Represents the document type node. + + + + + Creates a new document type node. + + + + + Gets the element immediately preceding in this node's parent's list + of nodes, null if the current element is the first element in that + list. + + + + + Gets the element immediately following in this node's parent's list + of nodes, or null if the current element is the last element in + that list. + + + + + Gets a list of defined entities. + + + + + Gets a list of defined notations. + + + + + Gets or sets the name of the document type. + + + + + Gets or sets the public ID of the document type. + + + + + Gets or sets the system ID of the document type. + + + + + Gets or sets the internal subset of the document type. + + + + + Inserts nodes before the current node. + + The nodes to insert before. + The current element. + + + + Inserts nodes after the current node. + + The nodes to insert after. + The current element. + + + + Replaces the current node with the nodes. + + The nodes to replace. + + + + Removes the current element from the parent. + + + + + + + + Provides a number of methods for performing operations that are + independent of any particular instance of the DOM. + + + + + Represents an element node. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Takes a given string source and parses it into a subtree + using the current element as context. + Follows the fragment parsing strategy for the given namespace. + + The source to parse into a subtree. + The documentElement of the new subtree. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Adds an attribute. + + The attribute to add. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Represents an entity node. + + + + + Creates a new entity node. + + + + + Creates a new entity node. + + + + + Gets the public identiifer. + + + + + Gets the system identifier. + + + + + Gets or sets the notation name. + + + + + Gets the used input encoding. + + + + + Gets the used XML encoding. + + + + + Gets the used XML version. + + + + + Gets or sets the entity's value. + + + + + Gets or sets the value of the entity. + + + + + Returns a duplicate of the node on which this method was called. + + + + + Represents a reference to an entity. + + + + + Creates a new entity node. + + + + + Creates a new entity node. + + The initial owner. + Name of the entity reference. + + + + A general collection for all elements of type IElement. + + + + + A specialized collection containing elements of type T. + + The type of elements that is contained. + + + + A specialized collection containing elements of type HTMLFormControlElement. + + + + + A location object with information about a Url. + + + + + Couples the mutation events to mutation observers and the event loop. + + + + + Represents a recording of DOM changes. + + + + + NamedNodeNap is a key/value pair of nodes that can be accessed by + numeric or string index. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Represents a node in the generated tree. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Clones the current node using the new owner. + + The new document owner, if any. + True if a deep clone is wanted, otherwise false. + The cloned node. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + For more information, see: + https://dom.spec.whatwg.org/#validate-and-extract + + + + + + + + + + + + + + Run any adopting steps defined for node in other applicable + specifications and pass node and oldDocument as parameters. + + + + + Specifications may define insertion steps for all or some nodes. + + + + + Specifications may define removing steps for all or some nodes. + + + + + + + + + + + Defines some properties of a node. + Exclusive maximum is 0x100000000. + Inclusive maximum is 0x0FFFFFFFF. + General range: 0x1 to 0x80 + HTML range : 0x100 to 0x8000 + MathML range : 0x10000 to 0x800000 + SVG range : 0x1000000 to 0x80000000 + + + + + No special properties. + + + + + The element is self-closing. + + + + + The element is special. + + + + + The element has literal text. + + + + + The element may start with an additional free line. + + + + + The element is implicitely closed. + + + + + The end of the element is implied. + + + + + The element is opening a scope. + + + + + The element is part of the HTML namespace. + + + + + The element is an HTML text integration point. + + + + + The element is an HTML formatting element. + + + + + The element is opening a list scope. + + + + + The element is opening a select scope. + + + + + The element is opening a table section scope. + + + + + The element is opening a table scope. + + + + + The element is part of the MathML namespace. + + + + + The element is an MathML text integration point. + + + + + The element is part of the SVG namespace. + + + + + The element is an SVG text integration point. + + + + + The iterator through a collection of DOM nodes. + + + + + Represents a list of Node instances or nodes. + + + + + Gets an empty node-list. Shouldn't be modified. + + + + + Represents a notation node. + + + + + Creates a new notation node. + + + + + Gets or sets the value of the public identifier. + + + + + Gets or sets the value of the system identifier. + + + + + Returns a duplicate of the node on which this method was called. + + The duplicate node. + + + + A collection specialized on IHtmlOptionElement elements. + + + + + Represents a processing instruction node. + + + + + Creates a processing instruction by splitting data into the name/target and data. + + + + + A list of possible quirks mode states. + + + + + The quirks mode is deactivated. + + + + + The quirks mode is partly activated. + + + + + The quirks mode is activated. + + + + + A DOM range to gather DOM tree information. + + + + + A list of tokens that can be modified. + + + + + Represents a shadow root. + + + + + Contains simple choices. + + + + + Yes. + + + + + No. + + + + + Represents a string list. + + + + + Represents a list of DOMTokens. + + + + + A collection of CSS elements. + + + + + Creates a new stylesheet class. + + The list to enumerate. + + + + Gets the stylesheet at the specified index. + If index is greater than or equal to the number + of style sheets in the list, this returns null. + + The index of the element. + The stylesheet. + + + + Gets the number of elements in the list of stylesheets. + + + + + Returns an enumerator that iterates through the stylesheets. + + The enumerator. + + + + Returns an enumerator that iterates through the collection. + + The enumerator. + + + + Represents a text node. + + + + + A simple list of tokens that is immutable. + + + + + The treewalker for walking through the DOM tree. + + + + + Represents a sample browsing Window implementation for automated tests, + analysis and as a useful playground. + + + + + Gets the proxy to the current browsing context. + + + + + Gets the user-agent information. + + + + + Gets a reference to the document that the window contains. + + + + + Gets or sets the name of the window. + + + + + Gets or sets the height of the outside of the browser window. + + + + + Gets or sets the width of the outside of the browser window. + + + + + Gets or sets the horizontal distance of the left border of the + user's browser from the left side of the screen. + + + + + Gets or sets the vertical distance of the top border of the user's + browser from the top side of the screen. + + + + + Gets the location of the currently contained document. + + + + + Gets or sets the status string. + + + + + Gets if the window is currently open or already closed. + + + + + Defines the ParentNode interface that is implemented by possible + parents. + + + + + Gets the child elements. + + + + + Gets the first child element of this element. + + + + + Gets the last child element of this element. + + + + + Gets the number of child elements. + + + + + Appends nodes to current document. + + The nodes to append. + + + + Prepends nodes to the current document. + + The nodes to prepend. + + + + Returns the first element within the document (using depth-first + pre-order traversal of the document's nodes) that matches the + specified group of selectors. + + The group of selectors to use. + The found element. + + + + Returns a list of the elements within the document (using + depth-first pre-order traversal of the document's nodes) that match + the specified group of selectors. + + The group of selectors to use. + A non-live NodeList of element objects. + + + + A processing instruction provides an opportunity for + application-specific instructions to be embedded within XML and which + can be ignored by XML processors which do not support processing their + instructions (outside of their having a place in the DOM). + + + + + Gets the target of the processing instruction. + + + + + The PseudoElement interface is used for representing CSS + pseudo-elements. + + + + + Gets the assigned pseudo name (e.g., before). + + + + + The Range interface represents a fragment of a document that can + contain nodes and parts of text nodes in a given document. + + + + + Gets the node that starts the container. + + + + + Gets the offset of the StartContainer in the document. + + + + + Gets the node that ends the container. + + + + + Gets the offset of the EndContainer in the document. + + + + + Gets a value that indicates if the representation is collapsed. + + + + + Gets the common ancestor node of the contained range. + + + + + Selects the start of the given range by using the given reference + node and a relative offset. + + The reference node to use. + + The offset relative to the reference node. + + + + + Selects the end of the given range by using the given reference + node and a relative offset. + + The reference node to use. + + The offset relative to the reference node. + + + + + Selects the start of the given range by using an inclusive + reference node. + + The reference node to use. + + + + Selects the end of the given range by using an inclusive reference + node. + + The reference node to use. + + + + Selects the start of the given range by using an exclusive + reference node. + + The reference node to use. + + + + Selects the end of the given range by using an exclusive reference + node. + + The referenced node. + + + + Collapses the range to a single level. + + + Determines if only the first level should be selected. + + + + + Selects the contained node. + + The node to use. + + + + Selects the contained nodes by taking a reference node as origin. + + The reference node. + + + + Clears the contained nodes. + + + + + Clears the node representation and returns a document fragment with + the originally contained nodes. + + The document fragment containing the nodes. + + + + Creates a document fragement of the contained nodes. + + The created document fragment. + + + + Inserts a node into the range. + + The node to include. + + + + Includes the given node with its siblings in the range. + + The range to surround. + + + + Creates a copy of this range. + + The copy representing the same range. + + + + Detaches the range from the DOM tree. + + + + + Checks if the given node is within this range by using a offset. + + The node to check for. + The offset to use. + + True if the point is within the range, otherwise false. + + + + + Compares the boundary points of the range. + + + Determines how these points should be compared. + + + The range of the other boundary points. + + A relative position. + + + + Compares the node to the given offset and returns the relative + position. + + The node to use. + The offset to use. + The relative position in the range. + + + + Checks if the given node is contained in this range. + + The node to check for. + + True if the node is within the range, otherwise false. + + + + + The same as TokenList, except that it allows the underlying string to + be directly changed. + + + + + Gets or sets the underlying string. + + + + + The ShadowRoot interface represents the shadow root. + + + + + Gets the currently focused element in the shadow tree, if any. + + + + + Gets the host element, which contains this shadow root. + + + + + Gets the markup of the current shadow root's contents. + + + + + Gets the shadow root style sheets. + + + + + Represents a reference from an element to its original source code. + + + + + Gets the position in the original source code. + + + + + Represents a string list. + + + + + Gets the value at the specified index. + + The index of the value. + The string value at the given index. + + + + Gets the number of entries. + + + + + Returns a boolean indicating if the specified entry is available. + + The entry that will be looked for. + + True if the element is available, otherwise false. + + + + + The DOMStringMap interface represents a set of name-value pairs. + + + + + Gets or sets an item in the dictionary. + + The name of the item to get or set. + The item with the associated name. + + + + Deletes the string with the given name from the map. + + The name of the string to remove. + + + + Represent a stylesheet for collecting style information. + + + + + Gets the style sheet language for this style sheet. + + + + + Gets the value of the attribute, which is its location. For inline + style sheets, the value of this attribute is null. + + + + + Gets the element that associates this style sheet with the + document. + + + + + Gets the advisory title. The title is often specified in the + ownerNode. + + + + + Gets the indented destination media for style information. The + media is often specified in the ownerNode. If no media has been + specified, the MediaList is empty. + + + + + Gets or sets if the stylesheet is applied to the document. + Modifying this attribute may cause a new resolution of style for + the document. If the media doesn't apply to the current user agent, + the disabled attribute is ignored. + + + + + Gets the browsing context to use. + + + + + Gets the underlying source. + + + + + Sets the owner of the sheet. + + The owning element. + + + + Tries to find the matching namespace url for the given prefix. + + The prefix of the namespace to find. + The namespace assigned to the prefix, if any. + + + + Represents a list of stylesheet elements. + + + + + Gets the stylesheet at the specified index. If index is greater + than or equal to the number of style sheets in the list, this + returns null. + + The index of the element. + The stylesheet. + + + + Gets the number of elements in the list of stylesheets. + + + + + The Text interface represents the textual content of Element or Attr. + If an element has no markup within its content, it has a single child + implementing Text that contains the element's text. However, if the + element contains markup, it is parsed into information items and Text + nodes that form its children. + + + + + Breaks the node into two nodes at a specified offset. + + + The point where the Node should be split. + + + The freshly created Text element with the rest of the content. + + + + + Gets a string containing the text of all Text nodes logically + adjacent to this Node, concatenated in document order. + + + + + Gets the assigned slot of the current text, if any. + + + + + This type represents a set of space-separated tokens. + + + + + Gets the number of contained tokens. + + + + + Gets an item in the list by its index. + + The index of the item. + The item at the specified index. + + + + Returns true if the underlying string contains a token, otherwise + false. + + The token to search for. + The result of the search. + + + + Adds some tokens to the underlying string. + + A list of tokens to add. + + + + Remove some tokens from the underlying string. + + A list of tokens to remove. + + + + Removes the specified token from string and returns false. + If token doesn't exist it's added and the function returns true. + + The token to toggle. + + + True if the token has been added, otherwise false. + + + + + The TreeWalker object represents the nodes of a document subtree and a + position within them. + + + + + Gets a Node representing the root node as specified when the + TreeWalker was created. + + + + + Gets or sets the Node on which the TreeWalker is currently pointing + at. + + + + + Gets a description of the types of nodes that must to be presented. + Non-matching nodes are skipped, but their children may be included, + if relevant. + + + + + Gets the NodeFilter used to select the relevant nodes. + + + + + Moves the current Node to the next visible node in the document + order, and returns the found node. It also moves the current node + to this one. If no such node exists, returns null and the current + node is not changed. + + The next Node, if any. + + + + Moves the current Node to the previous visible node in the document + order, and returns the found node. It also moves the current node + to this one. If no such node exists,or if it is before that the + root node defined at the object construction, returns null and the + current node is not changed. + + The previous Node, if any. + + + + Moves the current Node to the first visible ancestor node in the + document order, and returns the found node. It also moves the + current node to this one. If no such node exists, or if it is + before that the root node defined at the object construction, + returns null and the current node is not changed. + + + + + + Moves the current Node to the first visible child of the current + node, and returns the found child. It also moves the current node + to this child. If no such child exists, returns null and the + current node is not changed. + + + + + + Moves the current Node to the last visible child of the current + node, and returns the found child. It also moves the current node + to this child. If no such child exists, returns null and the + current node is not changed. + + + + + + Moves the current Node to its previous sibling, if any, and returns + the found sibling. I there is no such node, return null and the + current node is not changed. + + + + + + Moves the current Node to its next sibling, if any, and returns the + found sibling. I there is no such node, return null and the current + node is not changed. + + + + + + The URLUtils interface defines utility methods to work with URLs. + + + + + Gets or sets the whole URL. + + + + + Gets or sets the protocol scheme of the URL, including the final + ':'. + + + + + Gets or sets the host, that is the hostname, a ':', and the port of + the URL. + + + + + Gets or sets the domain of the URL. + + + + + Gets or sets the port number of the URL. + + + + + Gets or sets an initial '/' followed by the path of the URL. + + + + + Gets or sets a '?' followed by the parameters of the URL. + + + + + Gets or sets a '#' followed by the fragment identifier of the URL. + + + + + Gets or sets the username specified before the domain name.. + + + + + Gets or sets the password specified before the domain name. + + + + + Gets the canonical form of the origin of the specific location. + + + + + The interface for a browsing window element. + https://developer.mozilla.org/en-US/docs/Web/API/Window + + + + + Gets a reference to the document that the window contains. + + + + + Gets the location of the current document. + + + + + Gets if the window has been closed. + + + + + Gets or sets the status of the window. + + + + + Gets or sets the name of the window. + + + + + Gets the height of the outside of the browser window. + + + + + Gets the width of the outside of the browser window. + + + + + Gets the horizontal distance of the left border of the user's + browser from the left side of the screen. + + + + + Gets the vertical distance of the top border of the user's browser + from the top side of the screen. + + + + + Gets the proxy to the current browsing context. + + + + + Gets the user-agent information. + + + + + Closes the window. + + + + + Opens a window to show url, and returns it. If a window exists with + the provided name already, it is reused. + + The URL to open initially. + The name of the new window. + + Determines the rendering of the new window. + + + Can be used to remove whatever page is currently open from the + session history. + + The new or reused window. + + + + Stops the current document from being loaded. + + + + + Focuses the current window. + + + + + Removes the focus from the current window. + + + + + Shows the messagebox with the given message. + + The message to display. + + + + Opens a confirmation box with the provided message. + + The message to display. + + True if the message has been confirmed, otherwise false. + + + + + Opens the print dialog for the current window. + + + + + Gets the history of the current window. + + + + + Providers timers to the Window object. + + + + + Executes the provided handler after the timeout. + + + The handler that is called after the timeout. + + The timeout in milliseconds. + + The handler to reference clear the timeout. + + + + + Clears a timeout. + + + The handle that specifies, which timeout to clear. + + + + + Keeps executing the provided handler with the interval. + + The handler that is called each time. + The interval in milliseconds. + The handler to reference clear the interval. + + + + Clears an interval. + + + The handle that specifies, which interval to clear. + + + + + Defines the callback signature for a mutation event. + + The sequence of mutations. + The observer. + + + + MutationObserver provides developers a way to react to changes in a + DOM. + + + + + Creates a new mutation observer with the provided callback. + + The callback to trigger. + + + + Queues a record. + + The record to queue up. + + + + Triggers the execution if the queue is not-empty. + + + + + Gets the options, if any, for the given node. If null is returned + then the node is not being observed. + + The node of interest. + The options set for the provided node. + + + + Adds a transient observer for the given node with the provided + ancestor, if the node's ancestor is currently observed. + + + The ancestor that is currently observed. + + + The node to observe as a transient observer. + + + + + Clears all transient observers. + + + + + Stops the MutationObserver instance from receiving + notifications of DOM mutations. Until the observe() + method is used again, observer's callback will not be invoked. + + + + + Registers the MutationObserver instance to receive notifications of + DOM mutations on the specified node. + + + The Node on which to observe DOM mutations. + + + If additions and removals of the target node's child elements + (including text nodes) are to be observed. + + + If mutations to not just target, but also target's descendants are + to be observed. + + + If mutations to target's attributes are to be observed. + + + If mutations to target's data are to be observed. + + + If attributes is set to true and target's attribute value before + the mutation needs to be recorded. + + + If characterData is set to true and target's data before the + mutation needs to be recorded. + + + The attributes to observe. If this is not set, then all attributes + are being observed. + + + + + Empties the MutationObserver instance's record queue and returns + what was in there. + + Returns an Array of MutationRecords. + + + + Contains a list of common namespaces. + + + + + Gets the namespace for HTML elements. + + + + + Gets the namespace for XMLNS elements. + + + + + Gets the namespace for XMLNS elements. + + + + + Gets the namespace for XML elements. + + + + + Gets the namespace for SVG elements. + + + + + Gets the namespace for MathML elements. + + + + + Gets the prefix for XMLNS elements. + + + + + Gets the prefix for XMLNS elements. + + + + + Gets the prefix for XML elements. + + + + + Useful methods for node objects. + + + + + Gets the root of the given node, which is the node itself, if it has + no parent, or the root of the parent. + + The node to get the root of. + The root node. + + + + Checks if the provided node is an endpoint, i.e., does not host any + other node. + + The node that is checked. + True if the node is an endpoint, otherwise false. + + + + Checks if the provided node can be inserted into some other node. + This excludes, e.g., documents from being inserted. + + The node that is checked. + True if the node is insertable, otherwise false. + + + + Gets the hyperreference of the given URL - transforming the given + (relative) URL to an absolute URL if required. + + The node that spawns the hyper reference. + The given URL. + The absolute URL. + + + + Checks if the node is an descendant of the given parent. + + The descendant node to use. + The possible parent to use. + + True if the given parent is actually an ancestor of the node. + + + + + Gets the descendant nodes of the provided parent, in tree order. + + The parent of the descendants. + An iterator over all descendants. + + + + Gets the descendant nodes and itself of the provided parent, in tree order. + + The parent of the descendants. + An iterator over all descendants and itself. + + + + Checks if the node is an inclusive descendant of the given parent. + + The descendant node to use. + The possible parent to use. + + True if the given parent is actually an inclusive ancestor of the + provided node. + + + + + Checks if the parent is an ancestor of the given node. + + The possible parent to use. + The node to check for being descendent. + + True if the given parent is actually an ancestor of the node. + + + + + Gets the ancestor nodes of the provided node, in tree order. + + The child of the ancestors. + An iterator over all ancestors. + + + + Gets the inclusive ancestor nodes of the provided node, in tree + order. + + The child of the ancestors. + + An iterator over all ancestors including the given node. + + + + + Checks if the parent is an inclusive ancestor of the given node. + + The possible parent to use. + The node to check for being descendent. + + True if the given parent is actually an inclusive ancestor of the + provided node. + + + + + Gets the first ancestor node that is of the specified type. + + The child of the potential ancestor. + The specified ancestor or its default value. + + + + Checks if any parent is an HTML datalist element.. + + The node to use as starting point. + + True if a datalist element is among the ancestors, otherwise false. + + + + + Checks if the current node is a sibling of the specified element. + + The maybe sibling. + + The node to check for having the same parent. + + + True if the parent is actually non-null and actually the same. + + + + + Gets the index of the provided node in the parent's collection. + + The node which needs to know its index. + + The index of the node or -1 if the node is not a child of a parent. + + + + + Finds the index of the given node of the provided parent node. + + The parent of the given node. + The node which needs to know its index. + + The node's index or -1 if the node is not a child of the parent. + + + + + Checks if the context node is before the provided node. + + The context node. + The provided ref node. + + True if the context node is preceding the ref node in tree order. + + + + + Checks if the context node is after the provided node. + + The context node. + The provided ref node. + + True if the context node is following the ref node in tree order. + + + + + Gets the associated host object, if any. This is mostly interesting + for the HTML5 template tag. + + The node that probably has an host object + The host object or null. + + + + Checks for an inclusive ancestor relationship or if the host (if + any) has such a relationship. + + The possible parent to use. + The node to check for being descendent. + + True if the given parent is actually an inclusive ancestor + (including the host) of the provided node. + + + + + Ensures the validity for inserting the given node at parent before + the provided child. Throws an error is the insertation is invalid. + + The origin that will be mutated. + The node to be inserted. + The reference node of the insertation. + + + + Pre-inserts the given node at the parent before the provided child. + + The origin that will be mutated. + The node to be inserted. + The reference node of the insertation. + The inserted node, which is node. + + + + Pre-removes the given child of the parent. + + The origin that will be mutated. + The node that will be removed. + The removed node, which is child. + + + + Checks if the node has any text node children. + + The parent of the potential text nodes. + + True if the node has any text nodes, otherwise false. + + + + + Checks if the given child is followed by a document type. + + The child that precedes the doctype. + + True if a doctype node is following the child, otherwise false. + + + + + Checks if the given child is preceded by an element node. + + The child that follows any element. + + True if an element node is preceded the child, otherwise false. + + + + + Gets the element count of the given node. + + The parent of potential element nodes. + The number of element nodes in the parent. + + + + Tries to find a direct child of a certain type. + + The node type to find. + The parent that contains the elements. + The instance or null. + + + + Tries to find a descendant of a certain type. + + The node type to find. + The parent that contains the elements. + The instance or null. + + + + Gets the assigned slot given by the shadow root and the slot name. + + The shadow tree hosting the slots. + The name of the slot to target. + The slot or default slot, if any. + + + + Gets the content text of the given DOM node. + + The node to stringify. + The text of the node and its children. + + + + Sets the text content of the given elements. + + The type of collection. + The collection. + The text that should be set. + The collection itself. + + + + Gets the index of the given item in the list of nodes. + + The source list of nodes. + The item to search for. + The index of the item or -1 if not found. + + + + The signature for a NodeFilter callback function. + + The node to examine. + The result after the examination of the node. + + + + Contains an enumeration of various node types. + + + + + A standard node element. + + + + + An attribute node. + + + + + A text node. + + + + + A CData text node. + + + + + An entity reference node. + + + + + An entity node. + + + + + A processing instruction node. + + + + + A comment node. + + + + + A document node. + + + + + A document type node. + + + + + A document (fragment mode) node. + + + + + A notation node. + + + + + Useful methods for parent node objects. + + + + + Runs the mutation macro as defined in 5.2.2 Mutation methods + of http://www.w3.org/TR/domcore/. + + The parent, which invokes the algorithm. + The nodes array to add. + A (single) node. + + + + Prepends nodes to the parent node. + + The parent, where to prepend to. + The nodes to prepend. + + + + Appends nodes to parent node. + + The parent, where to append to. + The nodes to append. + + + + Inserts nodes before the given child. + + The context object. + The nodes to insert before. + The current element. + + + + Inserts nodes after the given child. + + The context object. + The nodes to insert after. + The current element. + + + + Replaces the given child with the nodes. + + The context object. + The nodes to replace. + + + + Removes the child from its parent. + + The context object. + + + + Inserts a node as the last child node of this element. + + The type of element to add. + The parent of the node to add. + The element to be appended. + The appended element. + + + + Inserts the newElement immediately before the referenceElement. + + The type of element to add. + The parent of the node to add. + The node to be inserted. + + The existing child element that will succeed the new element. + + The inserted element. + + + + Removes a child node from the current element, which must be a + child of the current node. + + The type of element. + The parent of the node to remove. + The element to be removed. + The removed element. + + + + Returns the first element matching the selectors with the provided + type, or null. + + The type to look for. + The parent of the nodes to gather. + The group of selectors to use. + The element, if there is any. + + + + Returns a list of elements matching the selectors with the + provided type. + + The type to look for. + The parent of the nodes to gather. + The group of selectors to use. + An enumeration with the elements. + + + + Gets the descendent nodes of the given parent. + + The type of nodes to obtain. + The parent of the nodes to gather. + The descendent nodes. + + + + Gets the descendent nodes of the given parent. + + The parent of the nodes to gather. + The descendent nodes. + + + + Gets the descendent nodes including itself of the given parent. + + The type of nodes to obtain. + The parent of the nodes to gather. + The descendent nodes including itself. + + + + Gets the descendent nodes including itself of the given parent. + + The parent of the nodes to gather. + The descendent nodes including itself. + + + + Gets the ancestor nodes of the given child. + + The type of nodes to obtain. + The child of the nodes to gather. + The ancestor nodes. + + + + Gets the ancestor nodes of the given child. + + The child of the nodes to gather. + The ancestor nodes. + + + + Extensions for performing QuerySelector operations. + + + + + Returns the first element within the document (using depth-first pre-order traversal + of the document's nodes) that matches the specified group of selectors. + Requires either a non-empty nodelist or a valid scope node. + + The nodes to take as source. + A string containing one or more CSS selectors separated by commas. + The optional node to take as scope. + An element object. + + + + Returns a list of the elements within the document (using depth-first pre-order traversal + of the document's nodes) that match the specified group of selectors. + Requires either a non-empty nodelist or a valid scope node. + + The nodes to take as source. + A string containing one or more CSS selectors separated by commas. + The optional node to take as scope. + A HTMLCollection with all elements that match the selection. + + + + Returns a set of elements which have all the given class names. + + The elements to take as source. + A string representing the list of class names to match; class names are separated by whitespace. + A collection of HTML elements. + + + + Returns a NodeList of elements with the given tag name. The complete document is searched, including the root node. + + The elements to take as source. + A string representing the name of the elements. The special string "*" represents all elements. + A NodeList of found elements in the order they appear in the tree. + + + + Returns a list of elements with the given tag name belonging to the given namespace. + The complete document is searched, including the root node. + + The elements to take as source. + The namespace URI of elements to look for. + Either the local name of elements to look for or the special value "*", which matches all elements. + A NodeList of found elements in the order they appear in the tree. + + + + Returns the first element within the document (using depth-first pre-order traversal + of the document's nodes) that matches the given selector. + + The elements to take as source. + A selector object. + An element object. + + + + Returns the first element within the document (using depth-first pre-order traversal + of the document's nodes) that matches the specified group of selectors. + + The elements to take as source. + A selector object. + An element object. + + + + Returns a list of the elements within the document (using depth-first pre-order traversal + of the document's nodes) that matches the selector. + + The elements to take as source. + A selector object. + A HTMLCollection with all elements that match the selection. + + + + Returns a list of the elements within the document (using depth-first pre-order traversal + of the document's nodes) that match the specified group of selectors. + + The elements to take as source. + A selector object. + A reference to the list where to store the results. + + + + Returns true if the underlying string contains all of the tokens, otherwise false. + + The list that is considered. + The tokens to consider. + True if the string contained all tokens, otherwise false. + + + + Returns a set of elements which have all the given class names. + + The elements to take as source. + An array with class names to consider. + A reference to the list where to store the results. + + + + Returns a NodeList of elements with the given tag name. The complete document is searched, including the root node. + + The elements to take as source. + A string representing the name of the elements. The special string "*" represents all elements. + A reference to the list where to store the results. + + + + Returns a list of elements with the given tag name belonging to the given namespace. + The complete document is searched, including the root node. + + The elements to take as source. + The namespace URI of elements to look for. + Either the local name of elements to look for or the special value "*", which matches all elements. + A reference to the list where to store the results. + + + + An enumeration of possible values for position comparisons in a range object. + + + + + The position of the given point to the other point is before. + + + + + The position of the given point to the other point is equal. + + + + + The position of the given point to the other point is after. + + + + + An enumeration with possible values on how to compare boundary points. + + + + + From the start to the start (periodic). + + + + + From the start to the end (non-periodic). + + + + + From the end to the end (periodic). + + + + + From the end to the start (non-periodic). + + + + + Defines a set of extension methods involving selectors. + + + + + Reduces the elements to the one at the given index, if any. + + The type of element. + The collection. + The index of the element. + The element, or its default value. + + + + Reduces the elements to the ones above the given index. + + The type of element. + The collection. + The minimum exclusive index. + The remaining elements. + + + + Reduces the elements to the ones below the given index. + + The type of element. + The collection. + The maximum exclusive index. + The remaining elements. + + + + Reduces the elements to the ones with even index. + + The type of element. + The collection. + The remaining elements. + + + + Reduces the elements to the ones with odd index. + + The type of element. + The collection. + The remaining elements. + + + + Keeps elements that are matched by the provided selector. + + The elements to be filtered. + The CSS selector to use. + The filtered list of elements. + + + + Keeps elements that are not matched by the provided selector. + + The elements to be filtered. + The CSS selector to use. + The filtered list of elements. + + + + Gets the children of the provided elements. Optionally uses a CSS + selector to filter the results. + + The elements owning the children. + The CSS selector to use, if any. + A filtered list containing the children. + + + + Gets the siblings of the provided elements. Optionally uses a CSS + selector to filter the results. + + The elements with siblings. + The CSS selector to use, if any. + A filtered list containing the siblings. + + + + Gets the parents of the provided elements. Optionally uses a CSS + selector to filter the results. + + The elements with parents. + The CSS selector to use, if any. + A filtered list containing the parents. + + + + Gets the following siblings of the provided elements. Optionally + uses a CSS selector to filter the results. + + The elements with siblings. + The CSS selector to use, if any. + A filtered list containing the next siblings. + + + + Gets the preceding siblings of the provided elements. Optionally + uses a CSS selector to filter the results. + + The elements with siblings. + The CSS selector to use, if any. + A filtered list containing the previous siblings. + + + + Keeps elements that are matched by the provided selector. + + The elements to be filtered. + The CSS selector to use. + The filtered list of elements. + + + + Keeps elements that are not matched by the provided selector. + + The elements to be filtered. + The CSS selector to use. + The filtered list of elements. + + + + Gets the children of the provided elements. Optionally uses a CSS + selector to filter the results. + + The elements owning the children. + The CSS selector to use, if any. + A filtered list containing the children. + + + + Gets the siblings of the provided elements. Optionally uses a CSS + selector to filter the results. + + The elements with siblings. + The CSS selector to use, if any. + A filtered list containing the siblings. + + + + Gets the parents of the provided elements. Optionally uses a CSS + selector to filter the results. + + The elements with parents. + The CSS selector to use, if any. + A filtered list containing the parents. + + + + Gets the following siblings of the provided elements. Optionally + uses a CSS selector to filter the results. + + The elements with siblings. + The CSS selector to use, if any. + A filtered list containing the next siblings. + + + + Gets the preceding siblings of the provided elements. Optionally + uses a CSS selector to filter the results. + + The elements with siblings. + The CSS selector to use, if any. + A filtered list containing the previous siblings. + + + + List of possible shadow root mode states. + + + + + Specifies open encapsulation mode. + + + + + Specifies closed encapsulation mode. + + + + + The collection of (known / used) tags. + + + + + Gets the DOCTYPE constant. + + + + + The html tag. + + + + + The body tag. + + + + + The head tag. + + + + + The meta tag. + + + + + The title tag. + + + + + The bgsound tag. + + + + + The script tag. + + + + + The style tag. + + + + + The noembed tag. + + + + + The noscript tag. + + + + + The noframes tag. + + + + + The menu tag. + + + + + The menuitem tag. + + + + + The var tag. + + + + + The ruby tag. + + + + + The sub tag. + + + + + The sup tag. + + + + + The rp tag. + + + + + The rt tag. + + + + + The rb tag. + + + + + The rtc tag. + + + + + The applet tag. + + + + + The embed tag. + + + + + The marquee tag. + + + + + The param tag. + + + + + The object tag. + + + + + The canvas tag. + + + + + The font tag. + + + + + The ins tag. + + + + + The del tag. + + + + + The template tag. + + + + + The slot tag. + + + + + The caption tag. + + + + + The col tag. + + + + + The colgroup tag. + + + + + The table tag. + + + + + The thead tag. + + + + + The tbody tag. + + + + + The tfoot tag. + + + + + The th tag. + + + + + The td tag. + + + + + The tr tag. + + + + + The input tag. + + + + + The keygen tag. + + + + + The textarea tag. + + + + + The p tag. + + + + + The span tag. + + + + + The dialog tag. + + + + + The fieldset tag. + + + + + The legend tag. + + + + + The label tag. + + + + + The details tag. + + + + + The form tag. + + + + + The isindex tag. + + + + + The pre tag. + + + + + The data tag. + + + + + The datalist tag. + + + + + The ol tag. + + + + + The tag ul. + + + + + The dl tag. + + + + + The li tag. + + + + + The dd tag. + + + + + The dt tag. + + + + + The b tag. + + + + + The big tag. + + + + + The strike tag. + + + + + The code tag. + + + + + The em tag. + + + + + The i tag. + + + + + The s tag. + + + + + The small tag. + + + + + The strong tag. + + + + + The u tag. + + + + + The tt tag. + + + + + The nobr tag. + + + + + The select tag. + + + + + The option tag. + + + + + The optgroup tag. + + + + + The link tag. + + + + + The frameset tag. + + + + + The frame tag. + + + + + The iframe tag. + + + + + The audio tag. + + + + + The video tag. + + + + + The source tag. + + + + + The track tag. + + + + + The h1 tag. + + + + + The h2 tag. + + + + + The h3 tag. + + + + + The h4 tag. + + + + + The h5 tag. + + + + + The h6 tag. + + + + + The div tag. + + + + + The quote tag. + + + + + The blockquote tag. + + + + + The q tag. + + + + + The base tag. + + + + + The basefont tag. + + + + + The a tag. + + + + + The area tag. + + + + + The button tag. + + + + + The cite tag. + + + + + The main tag. + + + + + The summary tag. + + + + + The xmp tag. + + + + + The br tag. + + + + + The wbr tag. + + + + + The hr tag. + + + + + The dir tag. + + + + + The center tag. + + + + + The listing tag. + + + + + The img tag. + + + + + The image tag (this is not the right tag). + + + + + The nav tag. + + + + + The address tag. + + + + + The article tag. + + + + + The aside tag. + + + + + The figcaption tag. + + + + + The figure tag. + + + + + The section tag. + + + + + The footer tag. + + + + + The header tag. + + + + + The hgroup tag. + + + + + The plaintext tag. + + + + + The time tag. + + + + + The progress tag. + + + + + The meter tag. + + + + + The output tag. + + + + + The map tag. + + + + + The picture tag. + + + + + The mark tag. + + + + + The dfn tag. + + + + + The kbd tag. + + + + + The samp tag. + + + + + The abbr tag. + + + + + The bdi tag. + + + + + The bdo tag. + + + + + The math tag. + + + + + The mi tag. + + + + + The mo tag. + + + + + The mn tag. + + + + + The ms tag. + + + + + The mtext tag. + + + + + The annotation-xml tag. + + + + + The svg tag. + + + + + The foreignObject tag. + + + + + The desc tag. + + + + + The circle tag. + + + + + The xml tag. + + + + + The list of possible vertical alignments (extended by CSS). + + + + + Aligns the baseline of the element with the baseline of its parent. + The baseline of some replaced elements, like textarea is not specified + by the HTML specification, meaning that their behavior with this keyword + may change from one browser to the other. + + + + + Aligns the baseline of the element with the subscript-baseline + of its parent. + + + + + Aligns the baseline of the element with the superscript-baseline + of its parent. + + + + + Aligns the top of the element with the top of the parent + element's font. + + + + + Aligns the bottom of the element with the bottom of the parent + element's font. + + + + + Aligns the middle of the element with the middle of lowercase + letters in the parent. + + + + + Align the top of the element and its descendants with the top + of the entire line. + + + + + Align the bottom of the element and its descendants with the + bottom of the entire line. + + + + + An enumeration with the various visibility states. + + + + + Default value, the box is visible. + + + + + The box is invisible (fully transparent, nothing is drawn), + but still affects layout. + + + + + For table rows, columns, column groups, and row groups the + row(s) or column(s) are hidden and the space they would have + occupied is removed (as if display: none were applied to the + column/row of the table). However, the size of other rows and + columns is still calculated as though the cells in the collapsed + row(s) or column(s) are present. This was designed for fast + removal of a row/column from a table without having to recalculate + widths and heights for every portion of the table. For XUL elements, + the computed size of the element is always zero, regardless of other + styles that would normally affect the size, although margins still + take effect. For other elements, collapse is treated the same as hidden. + + + + + The list of possible horizontal alignments. + + + + + Use the default line break rule. + + + + + Word breaks may be inserted between any + character for non-CJK (Chinese/Japanese/Korean) text. + + + + + Don't allow word breaks for CJK text. + Non-CJK text behavior is the same as for normal. + + + + + Extensions for formatting, e.g., markup or styling. + + + + + Returns the (complete) CSS style representation of the node. + + The style node to format. + The source code snippet. + + + + Returns the (complete) CSS style representation of the node. + + The style node to format. + The formatter to use. + The source code snippet. + + + + Writes the serialization of the node guided by the formatter. + + The style node to format. + The output target of the serialization. + + + + Returns the (complete) HTML markup representation of the node. + + The markup node to format. + The source code snippet. + + + + Returns the serialization of the node guided by the formatter. + + The markup node to format. + The formatter to use. + The source code snippet. + + + + Writes the serialization of the node guided by the formatter. + + The markup node to format. + The output target of the serialization. + + + + Returns a minified serialization of the node guided by the + MinifyMarkupFormatter with the default options. + + The markup node to format. + The source code snippet. + + + + Returns a prettified serialization of the node guided by the + PrettyMarkupFormatter with the default options. + + The markup node to format. + The source code snippet. + + + + Provides string to InputType instance mappings. + + + + + Represents a creator delegate for creating input type providers. + + The input to create the provider for. + The created input type provider. + + + + Registers a new creator for the specified input type. + Throws an exception if another creator for the given + input type is already added. + + The input type value. + The creator to invoke. + + + + Unregisters an existing creator for the given input type. + + The input type value. + The registered creator, if any. + + + + Creates the default InputType provider for the given input element + and input type. By default this is the text input type. + + The input element. + The current value of the type attribute. + The InputType provider instance. + + + + Creates an InputType provider for the provided element. + + The input element. + The current value of the type attribute. + The InputType provider instance. + + + + Provides string to Relation instance mappings. + + + + + Represents a creator delegate for creating link relation providers. + + The link to create the provider for. + The created link relation provider. + + + + Registers a new creator for the specified relation. + Throws an exception if another creator for the given + relation is already added. + + The relation value. + The creator to invoke. + + + + Unregisters an existing creator for the given relation. + + The relation value. + The registered creator, if any. + + + + Creates the default LinkRel provider for the given link element + and relation. By default this is null. + + The link element. + The current value of the rel attribute. + The LinkRel provider instance or null. + + + + Creates an LinkRel provider for the provided element. + + The link element. + The current value of the rel attribute. + The LinkRel provider instance or null. + + + + Represents the event arguments for a composed event. + + + + + Creates a new event. + + + + + Creates a new event and initializes it. + + The type of the event. + If the event is bubbling. + If the event is cancelable. + Sets the associated view for the UI event. + Sets the data to carry. + + + + Gets the associated data. + + + + + Initializes the composition event. + + The type of event. + Determines if the event bubbles. + Determines if the event is cancelable. + Sets the associated view for the UI event. + Sets the data to carry. + + + + The event that is published in case of an HTML parse error. + + + + + Creates a new HtmlParseErrorEvent event. + + The provided error code. + The position in the source. + + + + + Gets the position of the error. + + + + + Gets the provided error code. + + + + + Gets the associated error message. + + + + + The event that is published in case of starting HTML parsing. + + + + + Creates a new event for starting HTML parsing. + + The document to be filled. + Determines if parsing is done. + + + + Gets the document, which is to be filled. + + + + + Represents the event arguments for an input event. + + + + + Creates a new event. + + + + + Creates a new event and initializes it. + + The type of the event. + If the event is bubbling. + If the event is cancelable. + Sets the data for the input event. + + + + Gets the data that has been entered. + + + + + Initializes the input event. + + The type of event. + Determines if the event bubbles. + Determines if the event is cancelable. + Sets the data for the input event. + + + + Represents a list with touch points. + + + + + Gets the number of contained touch points. + + + + + Gets the data of the touch point at the given index. + + The index of the touch point. + The touch point at the index. + + + + Represents the interface for the data of a single touch point. + + + + + Gets the id of the touch point. + + + + + Gets the target of the touch point. + + + + + Gets the x-coordinate relative to the screen. + + + + + Gets the y-coordinate relative to the screen. + + + + + Gets the x-coordinate relative to the client. + + + + + Gets the y-coordinate relative to the client. + + + + + Gets the x-coordinate relative to the page. + + + + + Gets the y-coordinate relative to the page. + + + + + Represents the event arguments for a keyboard event. + + + + + Creates a new event. + + + + + Creates a new event and initializes it. + + The type of the event. + If the event is bubbling. + If the event is cancelable. + Sets the associated view for the UI event. + Sets the detail id for the UI event. + Sets the key that is currently pressed. + Sets the position of the originating keyboard. + A list with keyboard modifiers that have been pressed. + Sets if the key has been pressed again. + + + + Gets string representation of the pressed key. + + + + + Gets the location of the keyboard that initiated the event. + + + + + Gets if the control key is pressed. + + + + + Gets if the shift key is pressed. + + + + + Gets if the alt key is pressed. + + + + + Gets if the meta key is pressed. + + + + + Gets if the key press was repeated. + + + + + Returns the current state of the specified modifier key. + + The modifier key to lookup. + True if the key is currently pressed, otherwise false. + + + + Gets the locale of the keyboard. + + + + + Initializes the keyboard event. + + The type of event. + Determines if the event bubbles. + Determines if the event is cancelable. + Sets the associated view for the UI event. + Sets the detail id for the UI event. + Sets the key that is currently pressed. + Sets the position of the originating keyboard. + A list with keyboard modifiers that have been pressed. + Sets if the key has been pressed again. + + + + An enumeration over all possible keyboard locations. + + + + + The standard location. + + + + + The left location. + + + + + The right location. + + + + + The location of the numpad. + + + + + A couple of useful extensions for the modifier list. + + + + + All possible mouse button values that may appear in UI events. + + + + + The primary button of the device. In general, the left button or the only button on single-button + devices, used to activate a user interface control or select text. + + + + + The auxiliary button. In general, the middle button, often combined with a mouse wheel. + + + + + The secondary button. In general, the right button, often used to display a context menu. + + + + + All possible mouse button values that are currently pressed. + + + + + No buttons currently pressed. + + + + + The primary button of the device. In general, the left button or the only button on single-button + devices, used to activate a user interface control or select text. + + + + + The secondary button. In general, the right button, often used to display a context menu. + + + + + The auxiliary button. In general, the middle button, often combined with a mouse wheel. + + + + + Represents the event args for a mouse event. + + + + + Creates a new event. + + + + + Creates a new event and initializes it. + + The type of the event. + If the event is bubbling. + If the event is cancelable. + Sets the associated view for the UI event. + Sets the detail id for the UI event. + Sets the screen X coordinate. + Sets the screen Y coordinate. + Sets the client X coordinate. + Sets the client Y coordinate. + Sets if the control key was pressed. + Sets if the alt key was pressed. + Sets if the shift key was pressed. + Sets if the meta key was pressed. + Sets which button has been pressed. + The target of the mouse event. + + + + Gets the screen X coordinates. + + + + + Gets the screen Y coordinates. + + + + + Gets the client X coordinates. + + + + + Gets the client Y coordinates. + + + + + Gets if the control key is pressed. + + + + + Gets if the shift key is pressed. + + + + + Gets if the alt key is pressed. + + + + + Gets if the meta key is pressed. + + + + + Gets which button has been pressed. + + + + + Gets the currently pressed buttons. + + + + + Gets the target of the mouse event. + + + + + Returns the current state of the specified modifier key. + + The modifier key to lookup. + True if the key is currently pressed, otherwise false. + + + + Initializes the mouse event. + + The type of event. + Determines if the event bubbles. + Determines if the event is cancelable. + Sets the associated view for the UI event. + Sets the detail id for the UIevent. + Sets the screen X coordinate. + Sets the screen Y coordinate. + Sets the client X coordinate. + Sets the client Y coordinate. + Sets if the control key was pressed. + Sets if the alt key was pressed. + Sets if the shift key was pressed. + Sets if the meta key was pressed. + Sets which button has been pressed. + The target of the mouse event. + + + + Represents the event arguments for a touch event. + + + + + Creates a new event. + + + + + Creates a new event and initializes it. + + The type of the event. + If the event is bubbling. + If the event is cancelable. + Sets the associated view for the UI event. + Sets the detail id for the UIevent. + The list of active touches. + The list of target-active toches. + The list of changed touches. + Sets if the control key was pressed. + Sets if the alt key was pressed. + Sets if the shift key was pressed. + Sets if the meta key was pressed. + + + + Gets a list with all active touch points. + + + + + Gets a list with touch points over the target. + + + + + Gets a list with changed touch points. + + + + + Gets if the alt key is pressed. + + + + + Gets if the meta key is pressed. + + + + + Gets if the control key is pressed. + + + + + Gets if the shift key is pressed. + + + + + Initializes the focus event. + + The type of event. + Determines if the event bubbles. + Determines if the event is cancelable. + Sets the associated view for the UI event. + Sets the detail id for the UIevent. + The list of active touches. + The list of target-active toches. + The list of changed touches. + Sets if the control key was pressed. + Sets if the alt key was pressed. + Sets if the shift key was pressed. + Sets if the meta key was pressed. + + + + Represents a track that provides an additional track information. + + + + + Creates a new event. + + + + + Creates a new event and initializes it. + + The type of the event. + If the event is bubbling. + If the event is cancelable. + The track object. + + + + Gets the assigned track object, if any. + + + + + Initializes the mouse event. + + The type of event. + Determines if the event bubbles. + Determines if the event is cancelable. + The track object. + + + + Represents the event args for a mouse wheel event. + + + + + Creates a new event. + + + + + Creates a new event and initializes it. + + The type of the event. + If the event is bubbling. + If the event is cancelable. + Sets the associated view for the UI event. + Sets the detail id for the UI event. + Sets the screen X coordinate. + Sets the screen Y coordinate. + Sets the client X coordinate. + Sets the client Y coordinate. + Sets which button has been pressed. + The target of the mouse event. + A list with keyboard modifiers that have been pressed. + The mouse wheel delta in X direction. + The mouse wheel delta in Y direction. + The mouse wheel delta in Z direction. + The delta mode for the wheel event. + + + + Gets the mouse wheel delta X. + + + + + Gets the mouse wheel delta Y. + + + + + Gets the mouse wheel delta Z. + + + + + Gets the mouse wheel delta mode. + + + + + Initializes the mouse wheel event. + + The type of event. + Determines if the event bubbles. + Determines if the event is cancelable. + Sets the associated view for the UI event. + Sets the detail id for the UIevent. + Sets the screen X coordinate. + Sets the screen Y coordinate. + Sets the client X coordinate. + Sets the client Y coordinate. + Sets which button has been pressed. + The target of the mouse event. + A list with keyboard modifiers that have been pressed. + The mouse wheel delta in X direction. + The mouse wheel delta in Y direction. + The mouse wheel delta in Z direction. + The delta mode for the wheel event. + + + + Enumeration with the various mouse wheel modes. + + + + + The unit of change is pixels. + + + + + The unit of change is lines. + + + + + The unit of change is pages. + + + + + A set of useful extension methods when dealing with the DOM. + + + + + Set the field values of given form by using the dictionary which + contains name value pairs of input fields. + + The form to set. + The fields to use as values. + + What to do if some field(s) have not been found in the form. If + true, then new input will be created. Otherwise, an exception will + be thrown. + + The given form for chaining. + + + + Submits the given form by decomposing the object into a dictionary + that contains its properties as name value pairs. + + The form to submit. + The fields to use as values. + The task eventually resulting in the response. + + + + Submits the given form by using the dictionary which contains name + value pairs of input fields to submit. + + The form to submit. + The fields to use as values. + + What to do if some field(s) have not been found in the form. If + true, then new input will be created. Otherwise, an exception will + be thrown. + + The task eventually resulting in the response. + + + + Submits the form of the element by decomposing the object into a dictionary + that contains its properties as name value pairs. + + The element to submit its form. + The optional fields to use as values. + The task eventually resulting in the response. + + + + Submits the form of the element by using the dictionary which contains name + value pairs of input fields to submit. + + The element to submit its form. + The fields to use as values. + + What to do if some field(s) have not been found in the form. If + true, then new input will be created. Otherwise, an exception will + be thrown. + + The task eventually resulting in the response. + + + + Represents the a HTML element. + + + + + Gets or sets the name of the target frame to which the resource applies. + + + + + Gets or sets the linked resource is intended to be downloaded rather than displayed. + The value represent the proposed name of the file. If the name is not a valid filename of the + underlying OS, the navigator will adapt it. + + + + + Gets the element's ping attribute as a settable list of tokens. + + + + + Gets or sets the rel HTML attribute, specifying the relationship + of the target object to the link object. + + + + + Gets the rel HTML attribute, as a list of tokens. + + + + + Gets or sets the language code for the linked resource. + + + + + Gets or sets the type of the resource. If present, the attribute must be a valid MIME type. + + + + + Gets the text of the anchor tag (same as TextContent). + + + + + Represents the area HTML element. + + + + + Gets or sets the alternative text for the element. + + + + + Gets or sets the coordinates to define the hot-spot region. + + + + + Gets or sets the shape of the hot-spot, limited to known values. + + + + + Gets or sets the browsing context in which to open the linked resource. + + + + + Gets or sets the linked resource is intended to be downloaded rather than displayed. + The value represent the proposed name of the file. If the name is not a valid filename of the + underlying OS, the navigator will adapt it. + + + + + Gets the ping HTML attribute, as a settable list of otkens. + + + + + Gets or sets the value indicating relationships of the + current document to the linked resource. + + + + + Gets the value indicating relationships of the current + document to the linked resource, as a list of tokens. + + + + + Gets or sets the language of the linked resource. + + + + + Gets or sets the MIME type of the linked resource. + + + + + Represents the audio HTML element. + + + + + Represents the base HTML element. + + + + + Gets or sets the hyperreference to the base URL. + + + + + Gets or sets the base target. + + + + + Represents the body HTML element. + + + + + Represents the br HTML element. + + + + + Represents the button HTML element. + + + + + Gets or sets the autofocus HTML attribute, which indicates whether the + control should have input focus when the page loads. + + + + + Gets or sets if the button is enabled or disabled. + + + + + Gets the associated HTML form element. + + + + + Gets the list of assigned labels. + + + + + Gets or sets the name of the element. + + + + + Gets or sets the type of button. + + + + + Gets or sets the value. + + + + + Gets or sets the URI of a resource that processes information submitted by the button. + If specified, this attribute overrides the action attribute of the form element that owns this element. + + + + + Gets or sets the type of content that is used to submit the form to the server. If specified, this + attribute overrides the enctype attribute of the form element that owns this element. + + + + + Gets or sets the HTTP method that the browser uses to submit the form. If specified, this attribute + overrides the method attribute of the form element that owns this element. + + + + + Gets or sets that the form is not to be validated when it is submitted. If specified, this attribute + overrides the enctype attribute of the form element that owns this element. + + + + + Gets or sets A name or keyword indicating where to display the response that is received after submitting + the form. If specified, this attribute overrides the target attribute of the form element that owns this element. + + + + + Represents the canvas HTML element. + + + + + Gets or sets the pixel width of the canvas element. + + + + + Gets or sets the pixel height of the canvas element. + + + + + Returns a Data URI with the bitmap data of the context. + + The type of image e.g image/png. + A data URI with the data if any. + + + + Creates a BLOB out of the canvas pixel data and passes it + to the given callback. + + The callback function. + The type of object to create. + + + + Gets the drawing context. + + A context id like 2d. + An object that defines the drawing context. + + + + Changes the context the element is related to the given one. + + The new context. + + + + Gets an indicator if a context with the given parameters could be created. + + A context id like 2d. + True if the context is supported, otherwise false. + + + + Represents the command HTML element. + + + + + Gets or sets the type of command. + + + + + Gets or sets the assigned label. + + + + + Gets or sets the icon of the command. + + + + + Gets or sets if the command is disabled. + + + + + Gets or sets if the command is checked. + + + + + Gets or sets the id of the radio group of the command. + + + + + Gets the assigned element. + + + + + Represents the data HTML element. + + + + + Gets or sets the machine readable value. + + + + + Represents the datalist HTML element. + + + + + Gets the associated options. + + + + + Represents the details HTML element. + + + + + Gets or sets if the element is opened. + + + + + Repesents the dialog HTML element. + + + + + Gets or sets if the dialog is open. + + + + + Gets or sets the return value of the dialog. + + + + + Shows the dialog, optionally anchored to the element. + + The element, where the dialog is anchored. + + + + Shows the dialog modally, optionally anchored to the element. + + The element, where the dialog is anchored. + + + + Closes the dialog. + + The return value to set. + + + + Represents the div HTML element. + + + + + Serves as an entry point to the content of an HTML document. + + + + + The HTMLElement interface represents any HTML element. Some elements directly + implement this interface, other implement it via an interface that inherit it. + + + + + Gets or sets the value of the lang attribute. + + + + + Gets or sets the value of the title attribute. + + + + + Gets or sets the value of the dir attribute. + + + + + Gets access to all the custom data attributes (data-*) set on the element. It is a map of DOMString, + one entry for each custom data attribute. + + + + + Gets or sets if the element should be translated. + + + + + Gets or sets the position of the element in the tabbing order. + + + + + Gets or sets if spell-checking is activated. + + + + + Gets or sets whether or not the element is editable. This enumerated + attribute can have the values true, false and inherited. + + + + + Gets if the element is currently contenteditable. + + + + + Gets or sets if the element is hidden. + + + + + Gets or sets if the element is draggable. + + + + + Gets or sets the access key assigned to the element. + + + + + Gets the element's assigned access key. + + + + + Gets or sets the assigned context menu. + + + + + Gets the dropzone for this element. + + + + + Simulates a mouse click on an element. + + + + + Puts the keyboard focus on the given element. + + + + + Removes the keyboard focus on the given element. + + + + + Forces the invocation of a spell check on the content. + + + + + The embed HTML element. + + + + + Gets or sets the source of the object to embed. + + + + + Gets or sets the type of the embedded object. + + + + + Gets or sets the display width of the object. + + + + + Gets or sets the display height of the object. + + + + + Represents the fieldset HTML element. + + + + + Gets or sets if the element is enabled or disabled. + + + + + Gets the associated HTML form element. + + + + + Gets or sets the value of the name attribute. + + + + + Gets the type of input control (fieldset). + + + + + Gets the elements belonging to this field set. + + + + + Represents a collection of HTML form controls. + + + + + Represents the form HTML element. + + + + + Gets or sets the character encodings that are to be used for the submission. + + + + + Gets or sets the form's name within the forms collection. + + + + + Gets or sets if autocomplete is turned on or off. + + + + + Gets or sets the encoding to use for sending the form. + + + + + Gets or sets the encoding to use for sending the form. + + + + + Gets or sets the method to use for transmitting the form. + + + + + Gets or sets the value of the name attribute. + + + + + Gets or sets the indicator that the form is not to be validated during submission. + + + + + Gets or sets the target name of the response to the request. + + + + + Gets the number of elements in the Elements collection. + + + + + Gets all the form controls belonging to this form element. + + + + + Submits the form element from the form element itself. + + + + + Submits the form element as triggered from another element. + + The form's submitter. + + + + Creates the document request from the form submitting itself. + + The resulting document (e.g., HTTP) request. + + + + Creates the document request from the form by submitting by + some element. + + The form's submitter. + The resulting document (e.g., HTTP) request. + + + + Resets the form to the previous (default) state. + + + + + Checks if the form is valid, i.e. if all fields fulfill their requirements. + + True if the form is valid, otherwise false. + + + + Reports the current validity state after checking the current state + interactively the constraints of the form element. + + True if the form element is valid, otherwise false. + + + + Gets the form element at the specified index. + + The index in the elements collection. + The element or null. + + + + Gets the form element(s) with the specified name. + + The name or id of the element. + A collection with elements, an element or null. + + + + Requests the input fields to be automatically filled with previous entries. + + + + + Represents the head HTML element. + + + + + Represents the heading HTML element(s). + + + + + Represents the hr HTML element. + + + + + Represents the html HTML element. + + + + + Gets or sets the value of the manifest attribute. + + + + + Represents the image HTML element. + + + + + Gets or sets the alternative text. + + + + + Gets the actual used image source. + + + + + Gets or sets the image source. + + + + + Gets or sets the image candidates for higher density images. + + + + + Gets or sets the sizes to responsively. + + + + + Gets or sets the cross-origin attribute. + + + + + Gets or sets the usemap attribute, which indicates that the image + has an associated image map. + + + + + Gets or sets if the image element is a map. The attribute must not + be specified on an element that does not have an ancestor a + element with an href attribute. + + + + + Gets or sets the displayed width of the image element. + + + + + Gets or sets the displayed width of the image element. + + + + + Gets the width of the image. + + + + + Gets the height of the image. + + + + + Gets if the image is completely available. + + + + + Represents the iframe HTML element. + + + + + Gets or sets the frame source. + + + + + Gets the content of the page that the nested browsing context is to contain. + + + + + Gets or sets the name of the frame. + + + + + Gets the tokens of the sandbox attribute. + + + + + Gets or sets if the seamless attribute has been set. + + + + + Gets or sets if the frame's content can trigger the fullscreen mode. + + + + + Gets or sets if the frame's content can trigger a payment request. + + + + + Gets or sets the frame's referrer policy. + + + + + Gets or sets the display width of the frame. + + + + + Gets or sets the display height of the frame. + + + + + Gets the document this frame contains, if there is any. + + + + + Gets the frame's parent's window context. + + + + + Represents the input HTML element. + + + + + Gets or sets the autofocus HTML attribute, which indicates whether + the control should have input focus when the page loads. + + + + + Gets or sets the accept HTML attribute, containing comma-separated + list of file types accepted by the server when type is file. + + + + + Gets or sets the autocomplete HTML attribute, indicating whether + the value of the control can be automatically completed by the + browser. Ignored if the value of the type attribute is hidden, + checkbox, radio, file, or a button type (button, submit, reset, + image). + + + + + Gets or sets if the textarea is enabled or disabled. + + + + + Gets the associated HTML form element. + + + + + Gets the list of assigned labels. + + + + + Gets a list of selected files. + + + + + Gets or sets the name of the element. + + + + + Gets or sets the type of input control. + + + + + Gets or sets if the field is required. + + + + + Gets or sets if the field is read-only. + + + + + Gets or sets the alternative text. + + + + + Gets or sets the image source. + + + + + Gets or sets max HTML attribute, containing the maximum (numeric + or date-time) value for this item, which must not be less than its + minimum (min attribute) value. + + + + + Gets or sets the min HTML attribute, containing the minimum (numeric + or date-time) value for this item, which must not be greater than + its maximum (max attribute) value. + + + + + Gets or sets the pattern HTML attribute, containing a regular + expression that the control's value is checked against. The pattern + must match the entire value, not just some subset. This attribute + applies when the value of the type attribute is text, search, tel, + url or email; otherwise it is ignored. + + + + + Gets or sets the step HTML attribute, which works with min and max + to limit the increments at which a numeric or date-time value can be + set. It can be the string any or a positive floating point number. + If this is not set to any, the control accepts only values at + multiples of the step value greater than the minimum. + + + + + Increments the value by (step * n), where n defaults to 1 if not + specified. + + Optional: The number of steps to take. + + + + Decrements the value by (step * n), where n defaults to 1 if not + specified. + + Optional: The number of steps to take. + + + + Gets the datalist element in the same document. Only options that + are valid values for this input element will be displayed. This + attribute is ignored when the type attribute's value is hidden, + checkbox, radio, file, or a button type. + + + + + Gets or sets the URI of a resource that processes information + submitted by the button. If specified, this attribute overrides the + action attribute of the form element that owns this element. + + + + + Gets or sets the type of content that is used to submit the form to + the server. If specified, this attribute overrides the enctype + attribute of the form element that owns this element. + + + + + Gets or sets the HTTP method that the browser uses to submit the + form. If specified, this attribute overrides the method attribute + of the form element that owns this element. + + + + + Gets or sets that the form is not to be validated when it is + submitted. If specified, this attribute overrides the enctype + attribute of the form element that owns this element. + + + + + Gets or sets A name or keyword indicating where to display the + response that is received after submitting the form. If specified, + this attribute overrides the target attribute of the form element + that owns this element. + + + + + Gets or sets the default value. + + + + + Gets or sets the value. + + + + + Gets if the input field has a value (via attribute or directly). + + + + + Gets or sets the value of the element, interpreted as one of the + following in order: + 1.) Time value + 2.) Number + 3.) otherwise NaN. + + + + + Gets or sets the value of the element, interpreted as a date, or + null if conversion is not possible. + + + + + Gets or sets if the state if indeterminate. + + + + + Gets or sets + + + + + Gets or sets if the input element is checked or not. + + + + + Gets or sets the display size of the element. + + + + + Gets or sets the multiple HTML attribute, whichindicates whether + multiple items can be selected. + + + + + Gets or sets the maxlength HTML attribute, indicating the maximum + number of characters the user can enter. This constraint is + evaluated only when the value changes. + + + + + Gets or sets the minlength HTML attribute, indicating the minimum + number of characters the user can enter. This constraint is + evaluated only when the value changes. + + + + + Gets or sets the placeholder HTML attribute, containing a hint to + the user about what to enter in the control. + + + + + Gets or sets the display width of the input element. + + + + + Gets or sets the display height of the input element. + + + + + Gets the direction in which selection occurred. This is "forward" if + selection was performed in the start-to-end direction of the current + locale, or "backward" for the opposite direction. + + + + + Gets or sets the directionality of the form element. + + + + + Gets or sets the index of the beginning of selected text. If no + text is selected, contains the index of the character that + follows the input cursor. On being set, the control behaves as if + setSelectionRange() had been called with this as the first argument, + and selectionEnd as the second argument. + + + + + Gets or sets the index of the end of selected text. If no text + is selected, contains the index of the character that follows the + input cursor. On being set, the control behaves as if + setSelectionRange() had been called with this as the second + argument, and selectionStart as the first argument. + + + + + Selects the contents of the textarea. + + + + + Selects a range of text, and sets selectionStart and selectionEnd. + If either argument is greater than the length of the value, it is + treated as pointing to the end of the value. If end is less than + start, then both are treated as the value of end. + + The start of the selection. + The end of the selection. + + Optional: The direction of the selection. + + + + + Represents the keygen HTML element. + + + + + Gets or sets the autofocus HTML attribute, which indicates whether the + control should have input focus when the page loads. + + + + + Gets the list of assigned labels. + + + + + Gets or sets if the keygen is enabled or disabled. + + + + + Gets the associated HTML form element. + + + + + Gets or sets the name of the element. + + + + + Gets the type of input control (keygen). + + + + + Gets or sets the type of encryption used. + + + + + Gets or sets the challenge attribute. + + + + + Represents the label HTML element. + + + + + Gets the form element that the label is assigned for, if any. + + + + + Gets or sets the ID of the labeled control. Reflects the for attribute. + + + + + Gets the control that the label is assigned for, if any. + + + + + Represents the legend HTML element. + + + + + Gets the associated form element, if any. + + + + + Represents a link HTML element. + + + + + Gets or sets if the stylesheet is enabled or disabled. + + + + + Gets or sets the URI for the target resource. + + + + + Gets or sets the forward relationship of the linked resource from the document to the resource. + + + + + Gets or sets the reverse relationship of the linked resource from the resource to the document. + + + + + Gets the list of relations contained in the rel attribute. + + + + + Gets or sets the use with one or more target media. + + + + + Gets or sets the language code for the linked resource. + + + + + Gets or sets the content type of the style sheet language. + + + + + Gets the list of sizes defined in the sizes attribute. + + + + + Gets or sets the linked source's integrity, if any. + + + + + Gets or sets the cross-origin attribute. + + + + + Gets or sets the nonce attribute. + + + + + Represents the li HTML element. + + + + + Gets or sets the value in an ordered list. + + + + + Represents the map HTML element. + + + + + Gets or sets the name. + + + + + Gets a collection representing the area elements + associated to this map. + + + + + Gets a collection representing the img and object + elements associated to this element. + + + + + Used to declare properties for the marquee element. + + + + + Gets the minimum delay in ms. + + + + + Gets or sets the amount of scrolling in pixels. + + + + + Gets or sets the delay of scrolling in ms. + + + + + Gets or sets the loop number. + + + + + Represents the base for all HTML media elements. + + + + + Gets or sets the media source. + + + + + Gets or sets the cross-origin attribute. + + + + + Gets or sets the preload attribute. + + + + + Gets or sets the id of the assigned media group. + + + + + Gets the current network state. + + + + + Gets if seeking is currently active. + + + + + Gets the current media source. + + + + + Gets the current media error, if any. + + + + + Gets the current media's controller, if any. + + + + + Gets if the media has ended. + + + + + Gets or sets if the media is automatically played. + + + + + Gets or sets if the media should loop. + + + + + Gets or sets if the controls should be shown to the user. + + + + + Gets or sets if the media is muted by default. + + + + + Loads the currently assigned media source. + + + + + Checks if the given type can be played. + + The type to check for. + One of the following values: probably, maybe or an empty string. + + + + Gets the datetime when the download started. + + + + + Gets a list of contained audio tracks. + + + + + Gets a list of contained video tracks. + + + + + Gets a list of contained text tracks. + + + + + Adds a new text track to the media element. + + The kind of text track to create. + The optional label of the track. + The optional language of the track. + The freshly created text track. + + + + Represents the menu HTML element. + + + + + Gets or sets the text label of the menu element. + + + + + Gets or sets the type of the menu element. + + + + + Represents the menuitem HTML element. + + + + + Gets the assigned master command, if any. + + + + + Gets or sets the type of command. + + + + + Gets or sets the user-visible label. + + + + + Gets or sets the icon for the command. + + + + + Gets or sets if the menuitem element is enabled or disabled. + + + + + Gets or sets if the menuitem element is checked or not. + + + + + Gets or sets if the menuitem element is the default command. + + + + + Gets or sets the name of group of commands to + treat as a radio button group. + + + + + Represents the meta HTML element. + + + + + Gets or sets the name of the meta element. + + + + + Gets or sets the value of the equivalent in a meta element, which + is effective if the server doesn't send a corresponding real header. + + + + + Gets or sets the associated charset. + + + + + Gets or sets the value of the content attribute of the meta element. + + + + + Represents the meter HTML element. + + + + + Gets or sets the current value. + + + + + Gets or sets the minimum value. + + + + + Gets or sets the maximum value. + + + + + Gets or sets the low value. + + + + + Gets or sets the high value. + + + + + Gets or sets the optimum value. + + + + + Represents the mod HTML element. + + + + + Gets the cite HTML attribute, containing a URI of a + resource explaining the change. + + + + + Gets the datetime HTML attribute, containing a date-and-time + string representing a timestamp for the change. + + + + + Represents the object HTML element. + + + + + Gets or sets the address of the resource. + + + + + Gets or sets the type of the resource. If present, + the attribute must be a valid MIME type. + + + + + Gets or sets an attribute whose presence indicates that the resource specified by the data + attribute is only to be used if the value of the type attribute and the Content-Type of the + aforementioned resource match. + + + + + Gets or sets the name of the object. + + + + + Gets or sets the associated image map of the object if the object element represents an image. + + + + + Gets the associated HTML form element. + + + + + Gets or sets the display width of the object element. + + + + + Gets or sets the display height of the object element. + + + + + Gets the active document of the object element's nested browsing context, if it has one; + otherwise returns null. + + + + + Gets the object element's nested browsing context, if it has one; otherwise returns null. + + + + + Represents the option HTML element. + + + + + Gets or sets if the option is enabled or disabled. + + + + + Gets the associated HTML form element. + + + + + Gets or sets the label. + + + + + Gets or sets if the option is selected by default. + + + + + Gets or sets if the option is currently selected. + + + + + Gets or sets the value. + + + + + Gets or sets the text of the option. + + + + + Gets the index of the option element. + + + + + Represents a collection of HTML option elements. + + + + + Gets an HTML option element at the specified index. + + The index of the element. + The option at the given position. + + + + Sets an HTML option element at the specified index. + + The index of the element. + The option to set at the given position. + + + + Adds an option element to the collection. + + The element to add. + The optional reference element for inserting. + + + + Adds an options group element to the collection. + + The element to add. + The optional reference element for inserting. + + + + Removes an element from the collection. + + The index of the element of remove. + + + + Gets or sets the selected index. + + + + + Represents the optgroup HTML element. + + + + + Gets or sets if the optgroup is enabled or disabled. + + + + + Gets or sets the label. + + + + + Represents the ol HTML element. + + + + + Gets or sets if the order is reversed. + + + + + Gets or sets the lowest number. + + + + + Gets or sets the type of enumeration. + + + + + Represents the output HTML element. + + + + + Gets or sets the IDs of the input elements. + + + + + Gets or sets the default value. + + + + + Gets or sets the value. + + + + + Gets the list of assigned labels. + + + + + Gets the type of input control (output). + + + + + Gets the associated HTML form element. + + + + + Gets or sets the name of the element. + + + + + Represents the p HTML element. + + + + + Represents the param HTML element. + + + + + Gets or sets the name of the parameter. + + + + + Gets or sets the value of the parameter. + + + + + Represents the pre HTML element. + + + + + Represents the progress HTML element. + + + + + Gets or sets the current value. + + + + + Gets or sets the maximum value. + + + + + Gets the position. + + + + + Represents the q HTML element. + + + + + Gets or sets the citation of the element. + + + + + Represents the script HTML element. + + + + + Gets or sets the source URL of the script. + + + + + Gets or sets if the script should be run asynchronously. + + + + + Gets or sets if script execution should be deferred. + + + + + Gets or sets the type of script. + + + + + Gets or sets the character set of the script. + + + + + Gets or sets the cross-origin attribute. + + + + + Gets or sets the script's source code. + + + + + Gets or sets the linked source's integrity, if any. + + + + + Represents the select HTML element. + + + + + Gets or sets the autofocus HTML attribute, which indicates whether the + control should have input focus when the page loads. + + + + + Gets or sets if the button is enabled or disabled. + + + + + Gets the associated HTML form element. + + + + + Gets the list of assigned labels. + + + + + Gets or sets the name of the element. + + + + + Gets or sets the value. + + + + + Gets the type of input element (select). + + + + + Gets or sets if the field is required. + + + + + Gets the set of options that are selected. + + + + + Gets or sets the display size of the element. + + + + + Gets the set of option elements contained by this element. + + + + + Gets the number of option elements in this select element. + + + + + Gets or sets the multiple HTML attribute, whichindicates whether multiple items can be selected. + + + + + Gets the index of the first selected option element. + + + + + Gets or sets an HTML option element at the specified index. + + The index of the element. + The option at the given position. + + + + Adds an option element to the options collection. + + The element to add. + The optional reference element for inserting. + + + + Adds an options group element to the options collection. + + The element to add. + The optional reference element for inserting. + + + + Removes an element from the options collection. + + The index of the element of remove. + + + + Represents a slot in the shadow tree. + + + + + Gets or sets the name attribute. + + + + + Gets the nodes from the distributed nodes of the context. + + The sequence of distributed nodes. + + + + Represents the source HTML element. + + + + + Gets or sets the URL for a media resource. Is ignored when used for + the picture element. + + + + + Gets or sets the URL of a picture element. + + + + + Gets or sets the sizes if used in conjunction with a picture. + + + + + Gets or sets the type of the media source. + + + + + Gets or sets the intended type of the media resource. + + + + + Represents the span HTML element. + + + + + Represents a style HTML element. + + + + + Gets or sets if the style is enabled or disabled. + + + + + Gets or sets the use with one or more target media. + + + + + Gets or sets the content type of the style sheet language. + + + + + Gets or sets if the style is scoped. + + + + + Represents the caption HTML element. + + + + + Reprsents the base for td / th HTML element. + + + + + Gets or sets the number of columns spanned by cell. + + + + + Gets or sets the number of rows spanned by cell. + + + + + Gets or sets the list of id attribute values for header cells. + + + + + Gets the index of this cell in the row, starting from 0. + This index is in document tree order and not display order. + + + + + Represents the col HTML element. + + + + + Gets or sets the number of columns in a group or affected by a grouping. + + + + + Represents the td HTML element. + + + + + Represents the table HTML element. + + + + + Gets or sets the assigned caption element. + + + + + Creates a new table caption object or returns the existing one. + + A caption element. + + + + Deletes the table caption, if one exists. + + + + + Gets or sets the assigned head section. + + + + + Creates a new table header section or returns the existing one. + + A table header element. + + + + Deletes the header from the table, if one exists. + + + + + Gets or sets the assigned foot section. + + + + + Creates a table footer section or returns an existing one. + + A footer element. + + + + Deletes the footer from the table, if one exists. + + + + + Gets the assigned body sections. + + + + + Creates a new table body section. + + A body element. + + + + Gets the assigned table rows. + + + + + Inserts a new empty row in the table. The new row is inserted immediately before + and in the same section as the current indexth row in the table. If index is -1 + or equal to the number of rows, the new row is appended. In addition, when the + table is empty the row is inserted into a TBODY which is created and inserted + into the table. + + + The row number where to insert a new row. This index starts from 0 and is relative + to the logical order (not document order) of all the rows contained inside the table. + + The inserted table row. + + + + Deletes a table row. + + + The index of the row to be deleted. This index starts from 0 and is relative to the + logical order (not document order) of all the rows contained inside the table. If the + index is -1 the last row in the table is deleted. + + + + + Gets or sets the border attribute. + + + + + Represents the th HTML element. + + + + + Gets or sets the scope of the th element. + + + + + Represents the tr HTML element. + + + + + Gets the index in the logical order and not in document order. + + + + + Gets the index of this row, relative to the current section starting + from 0. + + + + + Gets the assigned table cells. + + + + + Insert an empty TD or TH cell into this row. If index is -1 or equal to + the number of cells, the new cell is appended. + + + [Optional] The place to insert the cell, starting from 0. A negative + value indicates that the cell should be appended to the row. + + + [Optional] The kind of table cell to insert. + + The inserted table cell. + + + + Deletes a cell from the current row. + + + The index of the cell to delete, starting from 0. If the index is + -1 the last cell in the row is deleted. + + The current row. + + + + Represent the base of table section (tbody, thead, tfoot) elements. + + + + + Gets the assigned table rows. + + + + + Inserts a row into this section. The new row is inserted immediately before the + current indexth row in this section. If index is -1 or equal to the number of + rows in this section, the new row is appended. + + + The row number where to insert a new row. This index starts from 0 and is relative + only to the rows contained inside this section, not all the rows in the table. + + The inserted table row. + + + + Deletes a row from this section. + + + The index of the row to be deleted, or -1 to delete the last row. + This index starts from 0 and is relative only to the rows contained + inside this section, not all the rows in the table. + + + + + Represents the template HTML element. + + + + + Gets the template's content for cloning. + + + + + Represents the textarea HTML element. + + + + + Gets or sets the autofocus HTML attribute, which indicates whether the + control should have input focus when the page loads. + + + + + Gets or sets if the textarea is enabled or disabled. + + + + + Gets the associated HTML form element. + + + + + Gets the list of assigned labels. + + + + + Gets or sets the name of the element. + + + + + Gets the type (textarea). + + + + + Gets or sets if the field is required. + + + + + Gets or sets if the field is read-only. + + + + + Gets or sets the default value. + + + + + Gets or sets the value. + + + + + Gets or sets the wrap HTML attribute, indicating how the control wraps text. + + + + + Gets the codepoint length of the control's value. + + + + + Gets or sets the rows HTML attribute, indicating + the number of visible text lines for the control. + + + + + Gets or sets the cols HTML attribute, indicating + the visible width of the text area. + + + + + Gets or sets the maxlength HTML attribute, indicating + the maximum number of characters the user can enter. + This constraint is evaluated only when the value changes. + + + + + Gets or sets the placeholder HTML attribute, containing a hint to + the user about what to enter in the control. + + + + + Gets the direction in which selection occurred. This is "forward" if + selection was performed in the start-to-end direction of the current + locale, or "backward" for the opposite direction. + + + + + Gets or sets the directionality of the form element. + + + + + Gets or sets the index of the beginning of selected text. + If no text is selected, contains the index of the character + that follows the input cursor. On being set, the control behaves + as if setSelectionRange() had been called with this as the first + argument, and selectionEnd as the second argument. + + + + + Gets or sets the index of the end of selected text. If no text + is selected, contains the index of the character that follows + the input cursor. On being set, the control behaves as if + setSelectionRange() had been called with this as the second + argument, and selectionStart as the first argument. + + + + + Selects the contents of the textarea. + + + + + Selects a range of text, and sets selectionStart and selectionEnd. + If either argument is greater than the length of the value, it is treated + as pointing to the end of the value. If end is less than start, then + both are treated as the value of end. + + The start of the selection. + The end of the selection. + Optional: The direction of the selection. + + + + Represents the time HTML element. + + + + + Gets or sets the time. + + + + + Represents the title HTML element. + + + + + Gets or sets the text of the title. + + + + + Represents the track HTML element. + + + + + Gets or sets the kind of the track. + + + + + Gets or sets the media source. + + + + + Gets or sets the language of the source. + + + + + Gets or sets the label text. + + + + + Gets or sets if given track is the default track. + + + + + Gets the ready state of the given track. + + + + + Gets the associated text track. + + + + + Represents an unknown HTML element. + + + + + Represents an ul HTML element. + + + + + Represents the video HTML element. + + + + + Gets or sets the displayed width of the video element. + + + + + Gets or sets the displayed height of the video element. + + + + + Gets the width of the video. + + + + + Gets the height of the video. + + + + + Gets or sets the URL to a preview image. + + + + + This interface marks elements that allow to have an attached label. + + + + + Gets the list of assigned labels. + + + + + Useful extension methods for the HtmlImageElement. + + + + + Gathers the source elements for the provided image element. + + The image to extend. + The stack of source elements. + + + + The list of possible horizontal alignments. + + + + + The bottom of the object should be vertically aligned with + the current baseline. This is the default value. + + + + + The center of the object should be vertically aligned with + the current baseline. + + + + + The top of the object should be vertically aligned with the + top of the current text line. + + + + + Float to the current left margin. + + + + + Float to the current right margin. + + + + + The address HTML element. + + + + + Represents an anchor element. + + + + + Creates a new anchor element. + + + + + Gets or sets the character encoding for the target resource. + + + + + Gets or sets the anchor name. + + + + + Gets or sets the text of the anchor tag (same as TextContent). + + + + + Represents the HTML applet element. + + + + + Represents the area element. + + + + + Creates a new area element. + + + + + Gets or sets the alternative text for the element. + + + + + Gets or sets the coordinates to define the hot-spot region. + + + + + Gets or sets the shape of the hot-spot, limited to known values. + The known values are: circle, default. poly, rect. The missing + value is rect. + + + + + Represents the HTML audio element. + + + + + Creates a new HTML audio element. + + + + + Represents the HTML base element. + + + + + Represents an HTML basefont element. + Deprecated in HTML 4.01. + + + + + Represents the HTML bgsound element. + + + + + The big HTML element. + + + + + Represents the HTML body element. + + + + + The bold HTML element. + + + + + Represents the HTML br element. + + + + + Represents an HTML button element. + + + + + Creates a new HTML button element. + + + + + Gets or sets the behavior of the button. + + + + + Gets or sets the URI of a resource that processes information submitted by the button. + If specified, this attribute overrides the action attribute of the form element that owns this element. + + + + + Gets or sets the type of content that is used to submit the form to the server. If specified, this + attribute overrides the enctype attribute of the form element that owns this element. + + + + + Gets or sets the HTTP method that the browser uses to submit the form. If specified, this attribute + overrides the method attribute of the form element that owns this element. + + + + + Gets or sets that the form is not to be validated when it is submitted. If specified, this attribute + overrides the enctype attribute of the form element that owns this element. + + + + + Gets or sets A name or keyword indicating where to display the response that is received after submitting + the form. If specified, this attribute overrides the target attribute of the form element that owns this element. + + + + + Gets or sets the current value of the control. + + + + + Gets or sets if the link has been visited. + + + + + Gets or sets if the link is currently active. + + + + + Represents the HTML canvas element. + See: http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html + Alternative: http://www.w3.org/html/wg/drafts/html/master/embedded-content-0.html#the-canvas-element + + + + + Creates a new HTML canvas element. + + + + + Gets or sets the displayed width of the canvas element. + + + + + Gets or sets the displayed height of the canvas element. + + + + + Gets the drawing context. + + A context id like 2d. + An object that defines the drawing context. + + + + Gets an indicator if a context with the given parameters could be created. + + A context id like 2d. + True if the context is supported, otherwise false. + + + + Changes the context the element is related to the given one. + + The new context. + + + + Returns a Data URI with the bitmap data of the context. + + The type of image e.g image/png. + A data URI with the data if any. + + + + Creates a BLOB out of the canvas pixel data and passes it + to the given callback. + + The callback function. + The type of object to create. + + + + The code HTML element. + + + + + Represents the HTML data element. + + + + + Represents the HTML datalist element. + + + + + Represents the HTML dl element. + + + + + Represents the HTML details element. + + + + + Represents the object for HTML dialog elements. + + + + + Represents the HTML dir element. + This element is obsolete since HTML 4.01. + + + + + Represents the HTML div element. + + + + + Represents a document node that contains only HTML nodes. + + + + + Represents a standard HTML element in the node tree. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Represents the embed element. + + + + + The em HTML element. + + + + + Represents the HTML fieldset element. + + + + + Represents a font element. + See (19) obsolete features of [WHATWG]. + + + + + Represents the base class for all HTML form control elements. + + + + + Represents the base class for all HTML form controls that contain a state. + + + + + Gets the status if the element can contain a range endpoint. + + + + + Gets the status if the element should save and restore the control state. + + + + + Saves the current control's state. + + The current state. + + + + Resets the form control state to the given state. + + The desired state. + + + + Represents the form element. + + + + + More information can be found at: + http://www.w3.org/html/wg/drafts/html/master/forms.html#submit-data-post + + + + + More information can be found at: + http://www.w3.org/html/wg/drafts/html/master/forms.html#submit-mailto-headers + + + + + More information can be found at: + http://www.w3.org/html/wg/drafts/html/master/forms.html#submit-mailto-body + + + + + More information can be found at: + http://www.w3.org/html/wg/drafts/html/master/forms.html#submit-get-action + + + + + Submits the body of the form. + http://www.w3.org/html/wg/drafts/html/master/forms.html#submit-body + + + + + More information can be found at: + http://www.w3.org/html/wg/drafts/html/master/forms.html#submit-mutate-action + + + + + Represents the HTML frame element. + + + + + Represents the base class for frame elements. + + + + + Represents the base class for frame owned elements. + + + + + Represents the HTML frameset element. + Obsolete since HTML 4.01. + + + + + Represents the HTML head element. + + + + + Represents the an HTML heading element (h1, h2, h3, h4, h5, h6). + + + + + Represents the hr element. + + + + + Represents the HTML html element. + + + + + Represents the HTML iframe element. + + + + + Represents the image element. + + + + + Represents an HTML input element. + + + + + Represents the HTML isindex element. + + + + + The i HTML element. + + + + + Represents the keygen element. + + + + + Creates a new HTML keygen element. + + + + + Gets or sets the challenge attribute. + + + + + Gets or sets the type of key used. + + + + + Gets the type of input control (keygen). + + + + + Represents the HTML label element. + + + + + Gets the control that the label is assigned for if any. + + + + + Gets or sets the ID of the labeled control. Reflects the for attribute. + + + + + Gets the form element that the label is assigned for if any. + + + + + Represents the HTML legend element. + + + + + Gets the associated form. + + + + + Represents the HTML link element. + + + + + Defines a set of extension methods for link elements. + + + + + Gets if the link contains a stylesheet that is regarded persistent. + + The link to examine. + True if the link hosts a persistent stylesheet. + + + + Gets if the link contains a stylesheet that is regarded preferred. + + The link to examine. + True if the link hosts a preferred stylesheet. + + + + Gets if the link contains a stylesheet that is regarded alternate. + + The link to examine. + True if the link hosts an alternate stylesheet. + + + + Represents an HTML li, dd or dt tag. + + + + + Creates a new item tag. + + + + + Represents the HTML map element. + + + + + Gets or sets the value of the href attribute. + + + + + Gets a collection representing the area elements + associated to this map. + + + + + Gets a collection representing the img and object + elements associated to this element. + + + + + Represents the HTML marquee element. + + + + + Gets the minimum delay in ms. + + + + + Gets or sets the amount of scrolling in pixels. + + + + + Gets or sets the delay of scrolling in ms. + + + + + Gets or sets the loop number. + + + + + Starts the marquee loop. + + + + + Stops the marquee loop. + + + + + Represents the abstract base for HTML media (audio / video) elements. + + + + + Represents the HTML menu element. + + + + + Creates a new HTML menu element. + + + + + Gets or sets the type of the menu element. + + + + + Gets or sets the text label of the menu element. + + + + + Represents the HTML menuitem element. + + + + + Creates a new HTML menuitem element. + + + + + Gets or sets if the link has been visited. + + + + + Gets or sets if the link is currently active. + + + + + Gets the assigned master command, if any. + + + + + Gets or sets the type of command. + + + + + Gets or sets the user-visible label. + + + + + Gets or sets the icon for the command. + + + + + Gets or sets if the menuitem element is enabled or disabled. + + + + + Gets or sets if the menuitem element is checked or not. + + + + + Gets or sets if the menuitem element is the default command. + + + + + Gets or sets the name of group of commands to + treat as a radio button group. + + + + + Represents the HTML meta element. + + + + + Represents the HTML meter element. + https://html.spec.whatwg.org/multipage/forms.html#dom-meter-low + + + + + Represents the HTML modifier (ins / del) element. + + + + + Gets or sets the value that contains a URI of a resource + explaining the change. + + + + + Gets or sets the value that contains date-and-time string + representing a timestamp for the change. + + + + + Represents a noembed HTML element. + + + + + Represents a noframes HTML element. + + + + + The nobr HTML element. + + + + + Represents a noscript HTML element. + + + + + Represents the HTML object element. + + + + + Represents the HTML option element. + + + + + Represents the HTML optgroup element. + + + + + Represents the HTML ordered list (ol) element. + + + + + Gets or sets if the order is reversed. + + + + + Gets or sets the start of the numbering. + + + + + Gets or sets a value within [ 1, a, A, i, I ]. + + + + + Represents an HTML output element. + + + + + Represents the HTML paragraph element. + + + + + Represents a param element. + + + + + Represents the HTML picture element. + + + + + The plaintext HTML element. + + + + + Represents the HTML pre element. + + + + + Represents the HTML progress element. + https://html.spec.whatwg.org/multipage/forms.html#the-progress-element + + + + + Rperesents the HTML quote element. + + + + + Gets or sets the citation. + + + + + The rb HTML element. + + + + + The rp HTML element. + + + + + The rtc HTML element. + + + + + The rt element. + + + + + The ruby HTML element. + + + + + Represents an HTML script element. + http://www.w3.org/TR/html5/scripting-1.html#execute-the-script-block + + + + + More information available at: + http://www.w3.org/TR/html5/scripting-1.html#prepare-a-script + + + + + Represents the select element. + + + + + Represents an HTML element with only semantic meaning. + + + + + Represents an HTML slot element. + + + + + The small HTML element. + + + + + Represents the HTML source element. + + + + + Represents the HTML span element. + + + + + The strike HTML element. + + + + + The strong HTML element. + + + + + The s HTML element. + + + + + Represents the HTML style element. + + + + + Represents the HTML caption element. + + + + + Gets or sets the value of the alignment attribute. + + + + + Represents the object for HTML table cell elements. + + + + + Represents the HTML column element. + + + + + Gets or sets the value of the horizontal alignment attribute. + + + + + Gets or sets the number of columns in a group or affected by a grouping. + + + + + Gets or sets the value of the vertical alignment attribute. + + + + + Gets or sets the value of the width attribute. + + + + + Represents the HTML column group element. + + + + + Gets or sets the value of the horizontal alignment attribute. + + + + + Gets or sets the number of columns in a group or affected by a grouping. + + + + + Gets or sets the value of the vertical alignment attribute. + + + + + Gets or sets the value of the width attribute. + + + + + Represents the object for HTML td elements. + + + + + Represents the HTML table element. + + + + + Represents the object for HTML th elements. + + + + + Represents the HTML tr element. + + + + + Represents the object for HTML table section (thead / tbody / tfoot) elements. + + + + + The tt HTML element. + + + + + Represents the template element. + + + + + Represents a HTML textarea element. + + + + + Creates a new HTML textarea element. + + + + + Gets or sets the wrap HTML attribute, indicating how the control wraps text. + + + + + Gets or sets the default value of the input field. + + + + + Gets the codepoint length of the control's value. + + + + + Gets or sets the rows HTML attribute, indicating + the number of visible text lines for the control. + + + + + Gets or sets the cols HTML attribute, indicating + the visible width of the text area. + + + + + Gets the type of input control (texarea). + + + + + Represents the base class for all HTML text form controls. + + + + + Gets or sets if the value has been modified. + + + + + Gets or sets the dirname HTML attribute. + + + + + Gets or sets the maxlength HTML attribute, indicating + the maximum number of characters the user can enter. + This constraint is evaluated only when the value changes. + + + + + Gets or sets the minlength HTML attribute, indicating + the minimum number of characters the user can enter. + This constraint is evaluated only when the value changes. + + + + + Gets or sets the default value of the input field. + + + + + Gets if the input field has a value (via attribute or directly). + + + + + Gets or sets the current value in the control. + + + + + Gets or sets the placeholder HTML attribute, containing a hint to + the user about what to enter in the control. + + + + + Gets or sets if the field is required. + + + + + Gets or sets if the textarea field is read-only. + + + + + Gets or sets the index of the beginning of selected text. + If no text is selected, contains the index of the character + that follows the input cursor. On being set, the control behaves + as if setSelectionRange() had been called with this as the first + argument, and selectionEnd as the second argument. + + + + + Gets or sets the index of the end of selected text. If no text + is selected, contains the index of the character that follows + the input cursor. On being set, the control behaves as if + setSelectionRange() had been called with this as the second + argument, and selectionStart as the first argument. + + + + + Gets the direction in which selection occurred. This + is "forward" if selection was performed in the start-to-end + direction of the current locale, or "backward" for the opposite + direction. + + + + + Selects a range of text, and sets selectionStart and selectionEnd. + If either argument is greater than the length of the value, it is treated + as pointing to the end of the value. If end is less than start, then + both are treated as the value of end. + + The start of the selection. + The end of the selection. + Optional: The direction of the selection. + + + + Selects the contents of the control. + + + + + An enumeration with possible selection directions. + + + + + The text selection direction is unknown. + + + + + The text is selected in forward direction. + + + + + The text is selected in backward direction. + + + + + Resets the form control to its initial value. + + + + + The time HTML element. + + + + + Represents the title element. + + + + + Creates a new HTML title element. + + + + + Gets or sets the text of the title. + + + + + Represents the HTML track element. + + + + + Creates a new HTML track element. + + + + + Gets or sets the kind of the track. + + + + + Gets or sets the media source. + + + + + Gets or sets the language of the source. + + + + + Gets or sets the label text. + + + + + Gets or sets if given track is the default track. + + + + + Gets the ready state of the given track. + + + + + The u HTML element. + + + + + The class for an unknown HTML element. + + + + + The DOM Object representing the unordered list. + + + + + Represents the base for a / area elements. + + + + + Represents the HTML video element. + + + + + Represents the HTML wbr (word-break-opportunity) element. + This element is used to indicate that the position is a good + point for inserting a possible line-break. + + + + + The xmp HTML element. + + + + + A class for representing the current validity state. + + + + + Creates a new ValidityState instance. + + + + + Gets or sets if a required value is missing. + + + + + Gets or sets if the given type is wrong. + + + + + Gets or sets if the input does not match a given pattern. + + + + + Gets or sets if the input is regarded as invalid. + + + + + Gets or sets if the input is too long. + + + + + Gets or sets if the input is too short. + + + + + Gets or sets if the range is too small. + + + + + Gets or sets if the range is too big. + + + + + Gets or sets if the new value is invalid. + + + + + Gets or sets if validation failed due to a custom error. + + + + + Gets if the value is valid. + + + + + Implemented by elements that can be validated. + + + + + Gets a value if the current element validates. + + + + + Gets the current validation state of the current element. + + + + + Gets the current validation message. + + + + + Checks the validity of the current element. + + True if the object is valid, otherwise false. + + + + Sets a custom validation error. If this is not the empty string, + then the element is suffering from a custom validation error. + + The error message to use. + + + + The ValidityState interface represents the validity states that an element + can be in, with respect to constraint validation. Together, they help explain + why an element's value fails to validate, if it's not valid. + + + + + Gets if the element has a required attribute, but no value. + + + + + Gets if the value is not in the required syntax (when type is email or url). + + + + + Gets if the value does not match the specified pattern. + + + + + Gets if the value exceeds the specified maxlength. + + + + + Gets if the value is below the specified minlength. + + + + + Gets if the value is regarded is invalid input. + + + + + Gets if the value is less than the minimum specified by the min attribute. + + + + + Gets if the value is greater than the maximum specified by the max attribute. + + + + + Gets if the value does not fit the rules determined by the step attribute + (that is, it's not evenly divisible by the step value). + + + + + Gets the element's custom validity message. + + + + + Gets if the element meets all constraint validations, and is therefore + considered to be valid. + + + + + Represents kinds of table cells. + + + + + Td table cell. + + + + + Th table cell. + + + + + The list of possible table frame directives. + + + + + No sides. This is the default value. + + + + + All four sides. + + + + + The top side only. + + + + + The bottom side only. + + + + + The top and bottom sides only. + + + + + The right and left sides only. + + + + + The left-hand side only. + + + + + The right-hand side only. + + + + + All four sides. + + + + + The list of possible table rules. + + + + + No rules. This is the default value. + + + + + Rules will appear between rows only. + + + + + Rules will appear between columns only. + + + + + Rules will appear between row groups and column groups only. + + + + + Rules will appear between all rows and columns. + + + + + An enumeration with track ready state values. + + + + + Not initialized yet. + + + + + Currently loading. + + + + + Loading finished. + + + + + An error occured. + + + + + A set of flags for an event. + + + + + No flags are set. + + + + + Stop propagation has been requested. + + + + + Stop immediate propagation has been requested. + + + + + The event has been cancelled. + + + + + The event has been initialized. + + + + + The event has been dispatched. + + + + + Class to store the state of a form control. + + + + + Creates a new form control state instance. + + The name of the field. + The type of the field. + The value of the field. + + + + Gets the name of the field. + + + + + Gets the field's value. + + + + + Gets the type of the field. + + + + + Bundles information stored in HTML forms. + + + + + Creates a new form data set with a randomly generated boundary. + + + + + Gets the chosen boundary. + + + + + Applies the multipart/form-data algorithm. + http://www.w3.org/html/wg/drafts/html/master/forms.html#multipart/form-data-encoding-algorithm + + (Optional) Explicit encoding. + A stream containing the body. + + + + Applies the urlencoded algorithm. + http://www.w3.org/html/wg/drafts/html/master/forms.html#application/x-www-form-urlencoded-encoding-algorithm + + (Optional) Explicit encoding. + A stream containing the body. + + + + Applies the plain encoding algorithm. + http://www.w3.org/html/wg/drafts/html/master/forms.html#text/plain-encoding-algorithm + + (Optional) Explicit encoding. + A stream containing the body. + + + + Applies the application json encoding algorithm. + https://darobin.github.io/formic/specs/json/#the-application-json-encoding-algorithm + + A stream containing the body. + + + + Applies the given submitter to serialize the form data set. + + The algorithm to use. + (Optional) Explicit encoding. + A stream containing the body. + + + + Appends a text entry to the form data set. + + The name of the entry. + The value of the entry. + The type of the entry. + + + + Appends a file entry to the form data set. + + The name of the entry. + The value of the entry. + The type of the entry. + + + + Gets an enumerator over all entry names. + + The enumerator. + + + + The collection of (known / used) form method names. + + + + + The get method. + + + + + The post method. + + + + + The dialog method. + + + + + A file entry in a form. + + + + + Encapsulates the data contained in an entry. + + + + + Creates a new form data set entry. + + The name of the field. + The type of the field. + + + + Gets if the name has been given. + + + + + Gets the entry's name. + + + + + Gets the entry's type. + + + + + Accepts the provided visitor instance. + + The visitor to accept. + + + + Checks if the provided boundary is already mentioned in the content. + + The string to check for. + The encoding to use for the string. + True if the boundary is matched, otherwise false. + + + + Defines the visitor for form data set entries. + + + + + Called by text form data set entries. + + The entry to pass. + The contained text value. + + + + Called by file form data set entries. + + The entry to pass. + The name of the file. + The MIME-type. + The contained content. + + + + Strategy for serializing form data sets. + + + + + Serializes the visited form data set to the stream. + + The stream writer to use. + + + + A text entry in a form. + + + + + Provides string to HTMLElement instance creation mappings. + + + + + Returns a specialized HTMLElement instance for the given tag name. + + The document that owns the element. + The given tag name. + The prefix of the element, if any. + The optional flags, if any. + The specialized HTMLElement instance. + + + + Represents the list of all Html entities. + + + + + Gets the instance to resolve entities. + + + + + Gets a symbol (that ended with a semicolon) specified by its entity + name. + + + The name of the entity, specified by &NAME; in the Html code. + + The string with the symbol or null. + + + + Converts a given number into its unicode character. + + The code to convert. + The array containing the character. + + + + Converts a set of two numbers into their unicode characters. + + The first (leading) character code. + The second (trailing) character code. + The array containing the two characters. + + + + Determines if the code is an invalid number. + + The code to examine. + True if it is an invalid number, false otherwise. + + + + Determines if the given code is actually in the table of common + redirections. + + The code to examine. + True if the code is in the table, else false. + + + + Gets the symbol mapped by the table of common redirections. + + The original code. + The character wrapped in a string. + + + + Determines if the code is within an invalid range. + + The code to examine. + + True if it is within an invalid range, false otherwise. + + + + + Represents the standard HTML5 markup formatter. + + + + + An instance of the HtmlMarkupFormatter. + + + + + + + + + + + + + + + + + + + + + + + + + + Creates the string representation of the attribute. + + The attribute to serialize. + The string representation. + + + + Escapes the given text by replacing special characters with their + HTML entity (amp, nobsp, lt, and gt). + + The string to alter. + The altered string. + + + + Gets the doctype identifiers from the given public and system identifier. + + The public identifier. + The system identifier. + The combined string representation. + + + + Gets the local name using the XML namespace prefix if required. + + The name to be properly represented. + The string representation. + + + + Represents the interface for producing input validation. + + + + + Creates an input type for the input element. + + The input element. + The name of the type. + The new instance of the type or text. + + + + Represents the factory for resolving link relation. + + + + + Creates an link relation provider for the given element. + + The link element. + The current value of the rel attribute. + The provider instance or null. + + + + The collection of (known / used) input type names. + + + + + The input will be hidden. + + + + + A standard (1-line) text input. + + + + + A search input. + + + + + A telephone number input. + + + + + An URL input field. + + + + + An email input field. + + + + + A password input field. + + + + + A datetime input field. + + + + + A datetime-local input field. + + + + + A date input field. + + + + + A month picker input field. + + + + + A week picker input field. + + + + + A time picker input field. + + + + + A number input field. + + + + + A range picker. + + + + + A color picker input field. + + + + + A checkbox. + + + + + A radio box. + + + + + A file upload box. + + + + + A submit button. + + + + + An image input box. + + + + + A reset form button. + + + + + A simple button. + + + + + A select-multiple select box. + + + + + A select-one select box. + + + + + Base type for the all input field types. Primarely from: + http://www.w3.org/TR/html5/forms.html#range-state-(type=range) + + + + + The start of the unix epoch (1st of January 1970). + + + + + Simple regular expression for floating point numbers. + + + + + Creates a new base input type. + + + + + Gets the name of the input type. + + + + + Gets if the input type can be validated. + + + + + Gets the associated input element. + + + + + Checks if the given type wants to append data. + + + + + Checks the current input for its validity. + + + + + Tries to convert the given string to a number. + + + + + Tries to convert the given number to a string. + + + + + Tries to convert the given string to a date time. + + + + + Tries to convert the given date time to a string. + + + + + Populates the form data set with the current input. + + + + + Changes the value by n steps. + + + + + Checks if the current value does not match the steps. + + + + + Gets the current step size. + + + + + Gets the default step offset. + + + + + Gets the default step size. + + + + + Gets the step scaling factor. + + + + + Converts the given validity state to a validation error enum. + + + + + Validates the time using the given parameters. + + + + + Checks if the string does not follow the pattern. + + + + + Tries to convert the value to a number using the default expression. + + + + + Tries to convert the value to a time starting at the given position. + + + + + Tries to convert the value to a week. + + + + + Checks if the given value is a legal hour. + + + + + Checks if the given value is a legal second. + + + + + Checks if the given value is a legal minute. + + + + + Checks if the given value is a legal month. + + + + + Checks if the given value is a legal year. + + + + + Checks if the given values form a legal date. + + + + + Checks if the given values form a legal week. + + + + + Checks if the given character is a valid time separator. + + + + + Skips all legit digits while returning the final position. + + + + + Checks the assumption that the string continues with a date time. + + + + + The collection of (known / used) link rel names. + + + + + The stylesheet relation. + + + + + The import relation. + + + + + The author relation. + + + + + The prefetch relation. + + + + + The icon relation. + + + + + The prev relation. + + + + + The next relation. + + + + + The license relation. + + + + + The alternate relation. + + + + + The search relation. + + + + + The pingback relation. + + + + + The sidebar relation. + + + + + Base type for the all link rel field types. + + + + + Creates a new instance of the relation processor. + + + + + Gets the assigned request processor. + + + + + Gets the associated link element. + + + + + Gets the currently used URL. + + + + + Starts loading the associated resource(s) asynchronously. + + + + + + See http://www.w3.org/TR/html-imports/#dfn-import-request. + + + + + Represents the an HTML5 markup formatter with a normalization scheme. + + + + + Gets or sets the tags that should have preserved white-space. + + + + + Gets or sets if the automatically inserted standard elements + (html, head, body) should be kept despite adding no value. + + + + + Gets or sets if comments should be preserved. + + + + + Gets or sets if quotes of an attribute should be kept despite + not needing them. + + + + + Gets or sets if empty (zero-length) attributes should be kept. + + + + + Gets or sets if implied end tags (e.g., "/li") should be preserved. + + + + + + + + + + + + + + + + + Represents the Tree construction as specified in + 8.2.5 Tree construction, on the following page: + http://www.w3.org/html/wg/drafts/html/master/syntax.html + + + + + Creates a new instance of the HTML parser with the specified + document based on the given source manager. + + + The document instance to be constructed. + + + + + Gets if the tree builder has been created for parsing fragments. + + + + + Gets the adjusted current node. + + + + + Gets the current node. + + + + + Parses the given source asynchronously and creates the document. + + The options to use for parsing. + The cancellation token to use. + + + + Parses the given source and creates the document. + + The options to use for parsing. + + + + Switches to the fragment algorithm with the specified context + element. Then parses the given source and creates the document. + + The options to use for parsing. + + The context element where the algorithm is applied to. + + + + + Restarts the parser by resetting the internal state. + + + + + Resets the current insertation mode to the rules according to the + algorithm specified in 8.2.3.1 The insertion mode. + http://www.w3.org/html/wg/drafts/html/master/syntax.html#the-insertion-mode + + + + + Consumes a token and processes it. + + The token to consume. + + + + Takes the method corresponding to the current insertation mode. + + The token to insert / use. + + + + See 8.2.5.4.1 The "initial" insertion mode. + + The passed token. + + + + See 8.2.5.4.2 The "before html" insertion mode. + + The passed token. + + + + See 8.2.5.4.3 The "before head" insertion mode. + + The passed token. + + + + See 8.2.5.4.4 The "in head" insertion mode. + + The passed token. + + + + See 8.2.5.4.5 The "in head noscript" insertion mode. + + The passed token. + + + + See 8.2.5.4.6 The "after head" insertion mode. + + The passed token. + + + + See 8.2.5.4.7 The "in body" insertion mode. + + The passed token. + + + + See 8.2.5.4.8 The "text" insertion mode. + + The passed token. + + + + See 8.2.5.4.9 The "in table" insertion mode. + + The passed token. + + + + See 8.2.5.4.10 The "in table text" insertion mode. + + The passed token. + + + + See 8.2.5.4.11 The "in caption" insertion mode. + + The passed token. + + + + See 8.2.5.4.12 The "in column group" insertion mode. + + The passed token. + + + + See 8.2.5.4.13 The "in table body" insertion mode. + + The passed token. + + + + See 8.2.5.4.14 The "in row" insertion mode. + + The passed token. + + + + See 8.2.5.4.15 The "in cell" insertion mode. + + The passed token. + + + + See 8.2.5.4.16 The "in select" insertion mode. + + The passed token. + + + + See 8.2.5.4.17 The "in select in table" insertion mode. + + The passed token. + + + + See 8.2.5.4.18 The "in template" insertion mode. + + The passed token. + + + + See 8.2.5.4.19 The "after body" insertion mode. + + The passed token. + + + + See 8.2.5.4.20 The "in frameset" insertion mode. + + The passed token. + + + + See 8.2.5.4.21 The "after frameset" insertion mode. + + The passed token. + + + + See 8.2.5.4.22 The "after after body" insertion mode. + + The passed token. + + + + See 8.2.5.4.23 The "after after frameset" insertion mode. + + The passed token. + + + + Inserting something in the template. + + The token to insert. + The mode to push. + + + + Closes the template element. + + + + + Closes the table if the section is in table scope. + + The tag to insert (closes table). + + + + Acts if a option end tag had been seen in the InSelect state. + + The actual tag token. + + + + Acts if a optgroup end tag had been seen in the InSelect state. + + The actual tag token. + + + + Act as if an colgroup end tag has been found in the InColumnGroup state. + + The actual tag token. + True if the token was not ignored, otherwise false. + + + + Act as if a body start tag has been found in the AfterHead state. + + The actual tag token. + + + + Follows the generic rawtext parsing algorithm. + + The given tag token. + + + + Follows the generic RCData parsing algorithm. + + The given tag token. + + + + Acts if a li tag in the InBody state has been found. + + The actual tag given. + + + + Acts if a dd or dt tag in the InBody state has been found. + + The actual tag given. + + + + Acts if a block (button) end tag had been seen in the InBody state. + + The actual tag given. + True if the token was not ignored, otherwise false. + + + + Acts if a nobr tag had been seen in the InBody state. + + The actual tag given. + + + + Copies the element and its attributes to create a new element. + + The old element (source). + The new element (target). + + + + Performs the InBody state with foster parenting. + + The given token. + + + + Act as if an anything else tag has been found in the InBody state. + + The actual tag found. + + + + Act as if an body end tag has been found in the InBody state. + + The actual tag token. + True if the token was not ignored, otherwise false. + + + + Act as if an br start tag has been found in the InBody state. + + The actual tag found. + + + + Act as if an p end tag has been found in the InBody state. + + The actual tag token. + True if the token was found, otherwise false. + + + + Act as if an table end tag has been found in the InTable state. + + The actual tag token. + True if the token was not ignored, otherwise false. + + + + Act as if an tr end tag has been found in the InRow state. + + The actual tag token. + True if the token was not ignored, otherwise false. + + + + Act as if an select end tag has been found in the InSelect state. + + True if the token was not ignored, otherwise false. + + + + Act as if an caption end tag has been found in the InCaption state. + + The actual tag token. + True if the token was not ignored, otherwise false. + + + + Act as if an td or th end tag has been found in the InCell state. + + The actual tag token. + True if the token was not ignored, otherwise false. + + + + 8.2.5.5 The rules for parsing tokens in foreign content + + The token to examine. + + + + Processes a special start tag token. + + The tag token to process. + + + + Creates a foreign element from the given html tag. + + The tag of the foreign element. + The element or NULL if it is no MathML or SVG element. + + + + Processes a normal start tag token. + + The token to process. + + + + Determines if the given tag name is in the global scope. + + The tag name to check. + True if it is in scope, otherwise false. + + + + Determines if the given type is in the global scope. + + True if it is in scope, otherwise false. + + + + Determines if the given tag name is in the list scope. + + True if it is in scope, otherwise false. + + + + Determines if a paragraph is in the button scope. + + True if it is in scope, otherwise false. + + + + Determines if the given type is in the table scope. + + True if it is in scope, otherwise false. + + + + Determines if the given tag name is in the table scope. + + The tag name to check. + True if it is in scope, otherwise false. + + + + Determines if the given tag name is in the select scope. + + The tag name to check. + True if it is in scope, otherwise false. + + + + Runs a script given by the current node. + + + + + Runs the current script element, if there is one. + + The task waiting for the document to be ready. + + + + If there is a node in the stack of open elements that is not either + a dd element, a dt element, an li element, a p element, a tbody + element, a td element, a tfoot element, a th element, a thead + element, a tr element, the body element, or the html element, then + this is a parse error. + + + + + Checks if a tag with the given name is currently open. + + The name of the tag to check for. + True if such a tag is open, otherwise false. + + + + Gets the next token and removes the starting newline, if it has one. + + + + + 8.2.6 The end. + + + + + Adds the root element (html) to the document. + + The token which started this process. + + + + Pops the last node from the stack of open nodes. + + + + + Modifies the node by appending all attributes and + acknowledging the self-closing flag if set. + + The node which will be added to the list. + The associated tag token. + Should the self-closing be acknowledged? + + + + Appends a node to the current node and + modifies the node by appending all attributes and + acknowledging the self-closing flag if set. + + The associated tag token. + Should the self-closing be acknowledged? + + + + Appends a node to the current node and + modifies the node by appending all attributes and + acknowledging the self-closing flag if set. + + The node which will be added to the list. + The associated tag token. + Should the self-closing be acknowledged? + + + + Appends a configured node to the current node. + + The node which will be added to the list. + + + + Appends a node to the appropriate foster parent. + http://www.w3.org/html/wg/drafts/html/master/syntax.html#foster-parent + + The node which will be added to the list. + + + + Inserts the given characters into the current node. + + The characters to insert. + + + + Inserts the given character into the foster parent. + + The character to insert. + + + + Clears the stack of open elements back to the given element name. + + The tag that will be the CurrentNode. + + + + Clears the stack of open elements back to any heading element. + + + + + Generates the implied end tags for the dd, dt, li, option, optgroup, p, rp, rt elements except for + the tag given. + + The tag that will be excluded. + + + + Generates the implied end tags for the dd, dt, li, option, optgroup, p, rp, rt elements. + + + + + Reconstruct the list of active formatting elements, if any. + + + + + Extensions to be used exclusively by the DOM Builder. + + + + + A collection of useful helpers when working with foreign content. + + + + + Adjusts the tag name to the correct capitalization. + + The name of adjust. + The name with the correct capitalization. + + + + Setups a new math element with the attributes from the token. + + The element to setup. + The tag token to use. + The finished element. + + + + Setups a new SVG element with the attributes from the token. + + The element to setup. + The tag token to use. + The finished element. + + + + Adds the attribute with the adjusted prefix, namespace and name. + + The element to host the attribute. + The name of the attribute. + The value of the attribute. + + + + Adjusts the attribute name to the correct capitalization. + + The name of adjust. + The name with the correct capitalization. + + + + Adjusts the attribute name to the correct capitalization. + + The name of adjust. + The name with the correct capitalization. + + + + A collection of HTML parse error codes. + + + + + Unexpected end of file detected. + + + + + NULL character replaced by repl. character. + + + + + Bogus comment. + + + + + Ambiguous open tag. + + + + + The tag has been closed unexpectedly. + + + + + The closing slash has been misplaced. + + + + + Undefined markup declaration found. + + + + + Comment ended with an exclamation mark. + + + + + Comment ended with a dash. + + + + + Comment ended with an unexpected character. + + + + + The given tag cannot be self-closed. + + + + + End tags can never be self-closed. + + + + + End tags cannot carry attributes. + + + + + No caption tag has been found within the local scope. + + + + + No select tag has been found within the local scope. + + + + + No table row has been found within the local scope. + + + + + No table has been found within the local scope. + + + + + No paragraph has been found within the local scope. + + + + + No body has been found within the local scope. + + + + + No block element has been found within the local scope. + + + + + No table cell has been found within the local scope. + + + + + No table section has been found within the local scope. + + + + + No object element has been found within the local scope. + + + + + No heading element has been found within the local scope. + + + + + No list item has been found within the local scope. + + + + + No form has been found within the local scope. + + + + + No button has been found within the local scope. + + + + + No nobr element has been found within the local scope. + + + + + No element has been found within the local scope. + + + + + Character reference found no numbers. + + + + + Character reference found no semicolon. + + + + + Character reference within an invalid range. + + + + + Character reference is an invalid number. + + + + + Character reference is an invalid code. + + + + + Character reference is not terminated by a semicolon. + + + + + Character reference in attribute contains an invalid character (=). + + + + + The specified item has not been found. + + + + + The encoding operation (either encoded or decoding) failed. + + + + + Doctype unexpected character after the name detected. + + + + + Invalid character in the public identifier detected. + + + + + Invalid character in the doctype detected. + + + + + Invalid character in the system identifier detected. + + + + + The doctype tag is misplaced and ignored. + + + + + The given doctype tag is invalid. + + + + + Doctype encountered unexpected character. + + + + + The doctype tag is missing. + + + + + The given public identifier for the notation declaration is invalid. + + + + + The given system identifier for the notation declaration is invalid. + + + + + The type declaration is missing a valid definition. + + + + + A required quantifier is missing in the provided expression. + + + + + The double quotation marks have been misplaced. + + + + + The single quotation marks have been misplaced. + + + + + The attribute's name contains an invalid character. + + + + + The attribute's value contains an invalid character. + + + + + The beginning of a new attribute has been expected. + + + + + The attribute has already been added. + + + + + The given tag must be placed in head tag. + + + + + The given tag is not appropriate for the current position. + + + + + The given tag cannot end at the current position. + + + + + The given tag cannot start at the current position. + + + + + The given form cannot be placed at the current position. + + + + + The given input cannot be placed at the current position. + + + + + The closing tag and the currently open tag do not match. + + + + + The given end tag does not match the current node. + + + + + This position does not support a linebreak (LF, FF). + + + + + The head tag can only be placed once inside the html tag. + + + + + The html tag can only be placed once as the root element. + + + + + The body tag can only be placed once inside the html tag. + + + + + The image tag has been named image instead of img. + + + + + Tables cannot be nested. + + + + + An illegal element has been detected in a table. + + + + + Select elements cannot be nested. + + + + + An illegal element has been detected in a select. + + + + + The frameset element has been misplaced. + + + + + Headings cannot be nested. + + + + + Anchor elements cannot be nested. + + + + + The given token cannot be inserted here. + + + + + The current node is not the root element. + + + + + The current node is the root element. + + + + + This tag is invalid in fragment mode. + + + + + There is already an open form. + + + + + The form has been closed wrong. + + + + + The body has been closed wrong. + + + + + An expected formatting element has not been found. + + + + + Exception that is thrown if an ill-formatted HTML document is parsed + in strict mode. + + + + + Creates a new HtmlParseException. + + The provided error code. + The associated error message. + The position in the source. + + + + + Gets the position of the error. + + + + + Gets the provided error code. + + + + + Defines the different tokenization content models. + + + + + Initial state: Parsed Character Data (characters will be parsed). + + + + + Optional state: Raw character data (characters will be parsed from a special table). + + + + + Optional state: Just plain text data (chracters will be parsed matching the given ones). + + + + + Optional state: Rawtext data (characters will not be parsed). + + + + + Optional state: Script data. + + + + + Creates an instance of the HTML parser front-end. + + + + + Fired when the HTML parser is starting. + + + + + Fired when the HTML parser is finished. + + + + + Fired when a HTML parse error is encountered. + + + + + Creates a new parser with the default options and context. + + + + + Creates a new parser with the custom options. + + The options to use. + + + + Creates a new parser with the custom context. + + The context to use. + + + + Creates a new parser with the custom options and the given context. + + The options to use. + The context to use. + + + + Gets the specified options. + + + + + Parses the string and returns the result. + + + + + Parses the string and returns the result. + + + + + Parses the stream and returns the result. + + + + + Parses the string asynchronously with option to cancel. + + + + + Parses the stream asynchronously with option to cancel. + + + + + Extensions for the IHtmlParser instances. + + + + + Parses the string asynchronously. + + + + + Parses the stream asynchronously. + + + + + Populates the given document asynchronously. + + + + + Contains a number of options for the HTML parser. + + + + + Gets or sets if the document is embedded. + + + + + Gets or sets if frames should not be supported. Once + set this will ignore frame elements and respect + noframes elements. + + + + + Gets or sets if scripting is allowed. + + + + + Gets or sets if errors should be treated as exceptions. + + + + + Gets or sets if XML processing instructions should be + parsed into DOM nodes. + + + + + Gets or sets if references to the original source document + should be kept on the elements in form of their tokens. + + + + + Gets or sets if the parsing of character references should + be avoided. + Note: With this option there is no way to determine from + AngleSharp what character references have been fully valid + vs. invalid. + + + + + Gets or sets the callback once a new element was created. + + + + + Performs the tokenization of the source code. Follows the tokenization algorithm at: + http://www.w3.org/html/wg/drafts/html/master/syntax.html + + + + + Fired in case of a parse error. + + + + + See 8.2.4 Tokenization + + The source code manager. + The entity resolver to use. + + + + Gets or sets if CDATA sections are accepted. + + + + + Gets or sets if character references should be avoided. + + + + + Gets or sets the current parse mode. + + + + + Gets or sets if strict mode is used. + + + + + Gets or sets if XML processing instructions should + be parsed into DOM nodes. + + + + + Gets the next available token. + + The next available token. + + + + See 8.2.4.1 Data state + + The next input character. + + + + See 8.2.4.7 PLAINTEXT state + + The next input character. + + + + See 8.2.4.3 RCDATA state + + The next input character. + + + + See 8.2.4.11 RCDATA less-than sign state + + The next input character. + + + + See 8.2.4.13 RCDATA end tag name state + + The next input character. + + + + See 8.2.4.5 RAWTEXT state + + The next input character. + + + + See 8.2.4.14 RAWTEXT less-than sign state + + The next input character. + + + + See 8.2.4.16 RAWTEXT end tag name state + + The next input character. + + + + See 8.2.4.68 CDATA section state + + The next input character. + + + + See 8.2.4.69 Tokenizing character references + + The next input character. + The additionally allowed character if there is one. + + + + See 8.2.4.8 Tag open state + + The next input character. + + + + See 8.2.4.9 End tag open state + + The next input character. + + + + See 8.2.4.10 Tag name state + + The current tag token. + + + + See 8.2.4.43 Self-closing start tag state + + The current tag token. + + + + See 8.2.4.45 Markup declaration open state + + The next input character. + + + + See 8.2.4.44 Bogus comment state + + The current character. + + + + See 8.2.4.46 Comment start state + + The next input character. + + + + See 8.2.4.47 Comment start dash state + + The next input character. + + + + See 8.2.4.48 Comment state + + The next input character. + + + + See 8.2.4.49 Comment end dash state + + The next input character. + + + + See 8.2.4.50 Comment end state + + The next input character. + + + + See 8.2.4.51 Comment end bang state + + The next input character. + + + + See 8.2.4.52 DOCTYPE state + + The next input character. + + + + See 8.2.4.53 Before DOCTYPE name state + + The next input character. + + + + See 8.2.4.54 DOCTYPE name state + + The current doctype token. + + + + See 8.2.4.55 After DOCTYPE name state + + The current doctype token. + + + + See 8.2.4.56 After DOCTYPE public keyword state + + The current doctype token. + + + + See 8.2.4.57 Before DOCTYPE public identifier state + + The current doctype token. + + + + See 8.2.4.58 DOCTYPE public identifier (double-quoted) state + + The current doctype token. + + + + See 8.2.4.59 DOCTYPE public identifier (single-quoted) state + + The current doctype token. + + + + See 8.2.4.60 After DOCTYPE public identifier state + + The current doctype token. + + + + See 8.2.4.61 Between DOCTYPE public and system identifiers state + + The current doctype token. + + + + See 8.2.4.62 After DOCTYPE system keyword state + + The current doctype token. + + + + See 8.2.4.63 Before DOCTYPE system identifier state + + The current doctype token. + + + + See 8.2.4.64 DOCTYPE system identifier (double-quoted) state + + The current doctype token. + + + + See 8.2.4.65 DOCTYPE system identifier (single-quoted) state + + The current doctype token. + + + + See 8.2.4.66 After DOCTYPE system identifier state + + The current doctype token. + + + + See 8.2.4.67 Bogus DOCTYPE state + + The current doctype token. + + + + An enumation of all possible tokens. + + + + + The DOCTYPE token. + + + + + The start tag token to mark open tags. + + + + + The end tag token to mark ending tags. + + + + + The comment tag to mark comments. + + + + + The character token to mark a character data. + + + + + The End-Of-File token to mark the end. + + + + + Possible insertation mode values. + + + + + Initial insertation mode. + + + + + Before the html tag insertation mode. + + + + + Before the head tag insertation mode. + + + + + Within the head tag insertation mode. + + + + + Within the head tag in a noscript section. + + + + + After the head tag insertation mode. + + + + + Within the body tag insertation mode. + + + + + Within some text area insertation mode. + + + + + Within a table tag insertation mode. + + + + + Within the table caption tag. + + + + + Within the column group tag. + + + + + Within the table body tag. + + + + + Within a table row tag. + + + + + Within a table division tag. + + + + + Within a select tag insertation mode. + + + + + Within a select tag in a table. + + + + + Within the template tag. + + + + + After the body tag. + + + + + Within the frameset tag. + + + + + After the frameset tag. + + + + + After the after the body tag. + + + + + Once we are far behind the frameset tag. + + + + + Represents the interface of an HTML parser. + + + + + Parses the string and returns the result. + + + + + Parses the stream and returns the result. + + + + + Parses the string and returns the result. + + + + + Parses the string asynchronously. + + + + + Parses the stream asynchronously. + + + + + Populates the given HTML document asynchronously. + + + + + Extensions to access the underying tokenizer. + + + + + Performs the tokenization on the given text source. + + The source of the tokenization. + The custom entity provider, if any. + The error handler to be used, if any. + A stream of consumed tokens. + + + + The token representation of an HTML tag attribute. + + + + + Creates a new attribute token using the provided information. + + The start position of the attribute's name. + The name of the attribute. + The value of the attribute. + + + + Gets the attribute's name. + + + + + Gets the attribute's value. + + + + + Gets the position of the token. + + + + + The DOCTYPE token. + + + + + Creates a new DOCTYPE token with the quirks mode set initially. + + The state of the force-quirks flag. + The token's position. + + + + Gets or sets the state of the force-quirks flag. + + + + + Gets the state of the public identifier. + + + + + Gets the state of the system identifier. + + + + + Gets or sets the value of the public identifier. + + + + + Gets or sets the value of the system identifier. + + + + + Gets if the given doctype token represents a limited quirks mode state. + + + + + Gets if the given doctype token represents a full quirks mode state. + + + + + Gets the status if the given doctype token matches one of the popular conditions. + + + + + Class for StartTagToken and EndTagToken. + + + + + Sets the default values. + + The type of the tag token. + The token's position. + + + + Creates a new HTML TagToken with the defined name. + + The type of the tag token. + The token's position. + The name of the tag. + + + + Creates a new opening HtmlTagToken for the given name. + + The name of the tag. + The new HTML tag token. + + + + Creates a new closing HtmlTagToken for the given name. + + The name of the tag. + The new HTML tag token. + + + + Gets or sets the state of the self-closing flag. + + + + + Gets the list of attributes. + + + + + Adds a new attribute to the list of attributes. The value will + be set to an empty string. + + The name of the attribute. + The starting position of the attribute. + + + + Adds a new attribute to the list of attributes. + + The name of the attribute. + The value of the attribute. + + + + Sets the value of the last added attribute. + + The value to set. + + + + Gets the value of the attribute with the given name or an empty + string if the attribute is not available. + + The name of the attribute. + The value of the attribute. + + + + The abstract base class of top-level HTML tokens. + + + + + Creates a new HTML token. + + The exact type of the token. + The token's text position. + The optional name of the token, if any. + + + + Gets if the character data contains actually a non-space character. + + True if the character data contains space character. + + + + Gets or sets the name of a tag token. + + + + + Gets if the character data is empty (null or length equal to zero). + + True if the character data is actually NULL or empty. + + + + Gets the data of the comment or character token. + + + + + Gets the position of the token. + + + + + Gets if the token can be used with IsHtmlTIP properties. + + + + + Gets if the given token is a SVG root start tag. + + + + + Gets if the token can be used with IsMathMLTIP properties. + + + + + Gets the type of the token. + + + + + Indicates that this comment token is a processing instruction. + + + + + Removes all ignorable characters from the beginning. + + The trimmed characters. + + + + Removes the a new line in the beginning, if any. + + + + + Converts the current token to a tag token. + + The tag token instance. + + + + Finds out if the current token is a start tag token with the given name. + + The name of the tag. + True if the token is indeed a start tag token with the given name, otherwise false. + + + + Represents the an HTML5 markup formatter with inserted indents. + + + + + Creates a new instance of the pretty markup formatter. + + + + + Gets or sets the indentation string. + + + + + Gets or sets the newline string. + + + + + + + + + + + + + + + + + + + + + + + Represents a useful helper for dealing with source sets. + + + + + Parses the given srcset attribute into an enumeration of candidates. + + The value of the srcset attribute. + The iterator yielding the various candidates. + + + + Gets the promising candidates from the given srcset using the provided sizes. + + The value of the srcset attribute. + The value of the sizes attribute. + An iterator of the different URLs yielding matching images. + + + + Represents a srcset image candidate. + + + + + The URL of the given image. + + + + + The descriptor of the given image. + + + + + Describes the various validation errors. + + + + + No errors. + + + + + The required value is missing. + + + + + The inferred type is not correct. + + + + + The given pattern is not matched. + + + + + The value is too long. + + + + + The value is too short. + + + + + The given value is too small. + + + + + The given value is too large. + + + + + The discrete step is not matched. + + + + + The input was classified as invalid. + + + + + A custom error appeared. + + + + + Represents the browsing context interface. + + + + + Gets the current window proxy. + + + + + Gets or sets the currently active document. + + + + + Gets the session history of the given browsing context. + + + + + Gets the sandboxing flag of the context. + + + + + Gets the parent of the current context, if any. If a parent is + available, then the current context contains only embedded + documents. + + + + + Gets the document that created the current context, if any. The + creator is the active document of the parent at the time of + creation. + + + + + Gets the original services for the browsing context. + + + + + Gets an instance of the given service. + + The type of service to resolve. + The instance of the service or null. + + + + Gets all registered instances of the given service. + + The type of service to resolve. + An enumerable with all service instances. + + + + Creates a new browsing context with the given name, instructed by + the specified document. + + The name of the new context. + The sandboxing flag to use. + The created browsing context. + + + + Tries to find a browsing context with the given name. + + The name of the context. + A context with the name, otherwise null. + + + + Represents the interface for a general setup of AngleSharp + or a particular AngleSharp request. + + + + + Gets an enumeration over the available services. + + + + + Allows basic serialization. + + + + + Writes the serialization of the node guided by the formatter. + + The output target of the serialization. + The formatter to use. + + + + Basic interface for HTML node serialization. + + + + + Formats the given text. + + The text to sanatize. + The formatted text. + + + + Emits the text literally. + + The text to return. + The contained text. + + + + Formats the given comment. + + The comment to stringify. + The formatted comment. + + + + Formats the given processing instruction using the target and the + data. + + + The processing instruction to stringify. + + The formatted processing instruction. + + + + Formats the given doctype using the name, public and system + identifiers. + + The document type to stringify. + The formatted doctype. + + + + Formats opening a tag with the given name. + + The element to open. + + Is the element actually self-closing? + + The formatted opening tag. + + + + Formats closing a tag with the given name. + + The element to close. + + Is the element actually self-closing? + + The formatted closing tag. + + + + Represents the base class for all loaders. + + + + + Creates a new resource loader. + + The context to use. + The optional request filter to use. + + + + Gets the maximum number of redirects. By default this is 50. + + + + + Adds the download to the active downloads. + + The download to add. + + + + Removes the download from the active downloads. + + The download to remove. + + + + Gets the cookie string for the given URL. + + The requested URL. + The associated cookie string, if any. + + + + Sets the cookie string for the given URL. + + The requested URL. + The value of the cookie. + + + + Starts downloading the request. + + The request data. + The request's originator. + The active download. + + + + Gets the active downloads. + + The enumerable over all active downloads. + + + + Loads the given URI by using an asynchronous request. + + The data of the request to send. + The cancellation token to use.. + + The task which will eventually return the response. + + + + + Creates a new request based on the existing request and given response. + + The previous request. + The response to the previous request. + The new request to issue. + + + + Represents a useful abstraction for requesters. + + + + + Fired when a request is starting. + + + + + Fired when a request is finished. + + + + + Performs an asynchronous request that can be cancelled. + + The options to consider. + The token for cancelling the task. + + The task that will eventually give the response data. + + + + + Checks if the given protocol is supported. + + + The protocol to check for, e.g. http. + + + True if the protocol is supported, otherwise false. + + + + + Performs the actual request asynchronously. + + The options to consider. + The token for cancelling the task. + The task resulting in the response. + + + + Represents the arguments to perform a fetch with CORS. + + + + + Creates a new CORS enabled request. + + The original request. + + + + Gets the original request to perform. + + + + + Gets or sets the CORS settings to use. + + + + + Gets or sets the behavior in case of no CORS. + + + + + Gets or sets the integrity provider, if any. + + + + + CORS settings attributes (see 2.6.6). + + + + + The default (missing) value. + + + + + Cross-origin CORS requests for the element will have the omit + credentials flag set. + + + + + Cross-origin CORS requests for the element will not have the omit + credentials flag set + + + + + Represents the default document loader. This class can be inherited. + + + + + Creates a new document loader. + + The context to use. + The optional request filter to use. + + + + Loads the data for the request asynchronously. + + The issued request. + The active download. + + + + The default (ready-to-use) HTTP requester. + + + + + Constructs a default HTTP requester with the information presented + in the info object. + + The user-agent name to use, if any. + An optional setup function for the HttpWebRequest object. + + + + Gets the used headers. + + + + + Gets or sets the timeout value. + + + + + Checks if the given protocol is supported. + + + The protocol to check for, e.g. http. + + + True if the protocol is supported, otherwise false. + + + + + Performs an asynchronous http request that can be cancelled. + + The options to consider. + + The token for cancelling the task. + + + The task that will eventually give the response data. + + + + + Dirty workaround to re-obtain the string representation of the cookie + for the set-cookie header. Uses the internal ToServerString method and + falls back to the ordinary ToString. + + + + + Dirty dirty workaround since the webrequester itself is already + quite stupid, but the one here (for the PCL) is really not the + way things should be programmed ... + + + + + Sets properties of the special headers (described here + http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.headers.aspx) + which are not accessible (in general) in this profile + (profile78). However, usually they are here and can be modified + with reflection. If not they are not set. + + The name of the property. + + The value of the property, which will be set. + + + + + Represents the default resource loader. This class can be inherited. + + + + + Creates a new resource loader. + + The context to use. + The optional request filter to use. + + + + Loads the data for the request asynchronously. + + The issued request. + The active download. + + + + The default HTTP response encapsulation object. + + + + + Creates a new default response object. + + + + + Gets or sets the status code of the response. + + + + + Gets or sets the url of the response. + + + + + Gets or sets the headers (key-value pairs) of the response. + + + + + Gets or sets a stream for content of the response. + + + + + Represents the arguments to load a document. + + + + + Creates a new document request for the given url. + + The resource's url. + + + + Creates a GET request for the given target from the optional source + node and optional referer string. + + The target to use. + The optional source of the request. + The optional referrer string. + The new document request. + + + + Creates a POST request for the given target with the provided body + and encoding type from the optional source node and optional + referer string. + + The target to use. + The body of the request. + The type of the request's body. + The optional source of the request. + The optional referrer string. + The new document request. + + + + Creates a POST request for the given target with the fields being + used to generate the body and encoding type plaintext. + + The target to use. + The fields to send. + The new document request. + + + + Creates a POST request for the given target with the fields being + used to generate the body and encoding type url encoded. + + The target to use. + The fields to send. + The new document request. + + + + Gets or sets the source of the request, if any. + + + + + Gets the target of the request. + + + + + Gets or sets the referrer of the request, if any. The name is + intentionally spelled wrong, to emphasize the relationship with the + HTTP header. + + + + + Gets or sets the method to use. + + + + + Gets or sets the stream of the request's body. + + + + + Gets or sets the mime-type to use, if any. + + + + + Gets a list of headers (key-values) that should be used. + + + + + Represents a binary large object. + http://dev.w3.org/2006/webapi/FileAPI/#dfn-Blob + + + + + Gets the length of the blob. + + + + + Gets the mime-type of the blob. + + + + + Gets if the stream to the blob is closed. + + + + + Gets the stream to the file. + + + + + Slices a subset of the blob into a another blob. + + The start of the slicing in bytes. + The end of the slicing in bytes. + The mime-type of the new blob. + A new blob with this blob's subset. + + + + Closes the stream to the blob. + + + + + Represents a concrete file. + http://dev.w3.org/2006/webapi/FileAPI/#dfn-file + + + + + Gets the file's name. + + + + + Gets the last modified date of the file. + + + + + Represents a list of files. + http://dev.w3.org/2006/webapi/FileAPI/#dfn-filelist + + + + + Gets the file at the specified index. + + The index of the file. + The file at the provided index. + + + + Gets the number of files in the list. + + + + + Adds a file to the list. + + The file to add. + + + + Removes a file from the list. + + The file to remove. + + True if the file was part of the list, otherwise false. + + + + + Resets the list of file entries. + + + + + Represents a container for file entries captured by the file + upload field. + + + + + Represents a download in progress. + + + + + The collection of (known / used) header names. + + + + + Tells all caching mechanisms from server to client or vice-versa + whether they may cache this object. It is measured in seconds. + e.g. Cache-Control: no-cache + e.g. Cache-Control: max-age=3600 + + + + + Options that are desired for the connection, + e.g. Connection: keep-alive + e.g. Connection: close + + + + + The length of the request/response body in octets (8-bit bytes), + e.g. Content-Length: 348 + + + + + A Base64-encoded binary MD5 sum of the content of the response, + e.g. Content-MD5: Q2hlY2sgSW50ZWdyaXR5IQ== + + + + + The MIME type of this content (only used with POST / PUT methods), + e.g. Content-Type: application/x-www-form-urlencoded + e.g. Content-Type: text/html; charset=utf-8 + + + + + The date and time that the message was sent, + e.g. Date: Tue, 15 Nov 1994 08:12:31 GMT + + + + + Implementation-specific headers that may have various effects + anywhere along the request-response chain, + e.g. Pragma: no-cache + + + + + Informs the client or server of proxies through which the response + or request was sent, + e.g. Via: 1.0 fred, 1.1 example.com (Apache/1.1) + + + + + A general warning about possible problems with the entity body, + e.g. Warning: 199 Miscellaneous warning + + + + + Content-Types that are acceptable for the response, + e.g. Accept: text/plain + + + + + Character sets that are acceptable, + e.g. Accept-Charset: utf-8 + + + + + List of acceptable encodings. See HTTP compression, + e.g. Accept-Encoding: gzip, deflate + + + + + List of acceptable human languages for response, + e.g. Accept-Language: en-US + + + + + Acceptable version in time, + e.g. Accept-Datetime: Thu, 31 May 2007 20:35:00 GMT + + + + + Authentication credentials for HTTP authentication, + e.g. Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ== + + + + + An HTTP cookie previously sent by the server with Set-Cookie, + e.g. Cookie: $Version=1; Skin=new; + + + + + Indicates that particular server behaviors are required by the + client, + e.g. Expect: 100-continue + + + + + The email address of the user making the request, + e.g. From: user@example.com + + + + + The domain name of the server (for virtual hosting), and the TCP + port number on which the server is listening. The port number may + be omitted if the port is the standard port for the service + requested. Mandatory since HTTP/1.1. Although domain name are + specified as case-insensitive, it is not specified whether the + contents of the Host field should be interpreted in a + case-insensitive manner and in practice some implementations of + virtual hosting interpret the contents of the Host field in a + case-sensitive manner, + e.g. Host: en.wikipedia.org:80 + + + + + Only perform the action if the client supplied entity matches the + same entity on the server. This is mainly for methods like PUT to + only update a resource if it has not been modified since the user + last updated it, + e.g. If-Match: "737060cd8c284d8af7ad3082f209582d" + + + + + Allows a 304 Not Modified to be returned if content is unchanged, + e.g. If-Modified-Since: Sat, 29 Oct 1994 19:43:31 GMT + + + + + Allows a 304 Not Modified to be returned if content is unchanged, + e.g. If-None-Match: "737060cd8c284d8af7ad3082f209582d" + + + + + If the entity is unchanged, send me the part(s) that I am missing; + otherwise, send me the entire new entity, + e.g. If-Range: "737060cd8c284d8af7ad3082f209582d" + + + + + Only send the response if the entity has not been modified since a + specific time, + e.g. If-Unmodified-Since: Sat, 29 Oct 1994 19:43:31 GMT + + + + + Limit the number of times the message can be forwarded through + proxies or gateways, + e.g. Max-Forwards: 10 + + + + + Initiates a request for cross-origin resource sharing (asks server + for an 'Access-Control-Allow-Origin' response header), + e.g. Origin: http://www.example-social-network.com + + + + + Authorization credentials for connecting to a proxy, + e.g. Proxy-Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ== + + + + + Request only part of an entity. Bytes are numbered from 0, + e.g. Range: bytes=500-999 + + + + + This is the address of the previous web page from which a link to + the currently requested page was followed. (The word referrer is + misspelled in the RFC as well as in most implementations.), + e.g. Referer: http://en.wikipedia.org/wiki/Main_Page + + + + + The transfer encodings the user agent is willing to accept: the + same values as for the response header Transfer-Encoding can be + used, plus the "trailers" value (related to the "chunked" transfer + method) to notify the server it expects to receive additional + headers (the trailers) after the last, zero-sized, chunk, + e.g. TE: trailers, deflate + + + + + Ask the server to upgrade to another protocol, + e.g. Upgrade: HTTP/2.0, SHTTP/1.3, IRC/6.9, RTA/x11 + + + + + The user agent string of the user agent, + e.g. User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:12.0) + Gecko/20100101 Firefox/21.0 + + + + + Specifying which web sites can participate in cross-origin resource + sharing, + e.g. Access-Control-Allow-Origin: * + + + + + What partial content range types this server supports, + e.g. Accept-Ranges: bytes + + + + + The age the object has been in a proxy cache in seconds, + e.g. Age: 12 + + + + + Valid actions for a specified resource. To be used for a 405 Method + not allowed, + e.g. Allow: GET, HEAD + + + + + The type of encoding used on the data, + e.g. Content-Encoding: gzip + + + + + The language the content is in, + e.g. Content-Language: da + + + + + An alternate location for the returned data, + e.g. Content-Location: /index.htm + + + + + An opportunity to raise a "File Download" dialog box for a known + MIME type with binary format or suggest a filename for dynamic + content. Quotes are necessary with special characters, + e.g. Content-Disposition: attachment; filename="fname.ext" + + + + + Where in a full body message this partial message belongs, + e.g. Content-Range: bytes 21010-47021/47022 + + + + + An identifier for a specific version of a resource, often a message + digest, + e.g. ETag: "737060cd8c284d8af7ad3082f209582d" + + + + + Gives the date/time after which the response is considered stale, + e.g. Expires: Thu, 01 Dec 1994 16:00:00 GMT + + + + + The last modified date for the requested object, in RFC2822 format, + e.g. Last-Modified: Tue, 15 Nov 1994 12:45:26 +0000 + + + + + Used to express a typed relationship with another resource, where + the relation type is defined by RFC5988, + e.g. Link: </feed>; rel="alternate" + + + + + Used in redirection, or when a new resource has been created, + e.g. Location: http://www.w3.org/pub/WWW/People.html + + + + + This header is supposed to set P3P policy, in the form of + P3P:CP="your_compact_policy". However, P3P did not take off, most + browsers have never fully implemented it, a lot of websites set + this header with fake policy text, that was enough to fool browsers + the existence of P3P policy and grant permissions for third party + cookies, + e.g. P3P: CP="This is not a P3P policy! See ... for more info." + + + + + Request authentication to access the proxy, + e.g. Proxy-Authenticate: Basic + + + + + Used in redirection, or when a new resource has been created. This + refresh redirects after 5 seconds, + e.g. Refresh: 5; url=http://www.w3.org/pub/WWW/People.html + + + + + If an entity is temporarily unavailable, this instructs the client + to try again after a specified period of time (in seconds), + e.g. Retry-After: 120 + + + + + A name for the server, + e.g. Server: Apache/2.4.1 (Unix) + + + + + An HTTP cookie, + e.g. Set-Cookie: UserID=JohnDoe; Max-Age=3600; Version=1 + + + + + The HTTP status of the response. "Status" is not listed as a + registered header. The "Status-Line" of a "Response" is defined by + RFC2616 without any explicit Status: header name, + e.g. Status: 200 OK + + + + + A HSTS Policy informing the HTTP client how long to cache the HTTPS + only policy and whether this applies to subdomains, + e.g. Strict-Transport-Security: max-age=16070400; includeSubDomains + + + + + The Trailer general field value indicates that the given set of + header fields is present in the trailer of a message encoded with + chunked transfer-coding, + e.g. Trailer: Max-Forwards + + + + + The form of encoding used to safely transfer the entity to the user. + Currently defined methods are: chunked, compress, deflate, gzip, + identity, + e.g. Transfer-Encoding: chunked + + + + + Tells downstream proxies how to match future request headers to + decide whether the cached response can be used rather than + requesting a fresh one from the origin server, + e.g. Vary: * + + + + + Indicates the authentication scheme that should be used to access + the requested entity, + e.g. WWW-Authenticate: Basic + + + + + Represents the usable methods for transmitting HTTP forms. + + + + + The GET method. + + + + + The POST method. + + + + + The PUT method. + + + + + The DELETE method. + + + + + The OPTIONS method. + + + + + The HEAD method. + + + + + The TRACE method. + + + + + The CONNECT method. + + + + + Defines methods to retrieve and store cookies. + + + + + Gets the cookie value of the given address. + + The origin of the cookie. + The value of the cookie. + + + + Sets the cookie value for the given address. + + The origin of the cookie. + The value of the cookie. + + + + Interface used to handle top-level document requests. These requests + include navigation tasks. + + + + + Performs an asynchronous request that can be cancelled. + + The options to consider. + The download instance to track. + + + + Basic contract for a currently active download. + + + + + Gets the target of the download. + + + + + Gets the originator of the download, if any. + + + + + Defines the methods to perform an integrity check. + + + + + Checks if the given content satisfies the provided integrity + attribute. + + The content to hash. + The value of the integrity attribute. + True if integrity is preserved, otherwise false. + + + + The interface implemented by elements that may load resources. + + + + + Gets the current download or resource, if any. + + + + + Represents the basic interface for all loaders. + + + + + Gets the currently active downloads. + + The downloads in progress. + + + + Defines the required methods any requester object must have. + + + + + Checks if the given protocol is supported. + + + The protocol to check for, e.g. http. + + + True if the protocol is supported, otherwise false. + + + + + Performs an asynchronous request that can be cancelled. + + The options to consider. + The token for cancelling the task. + + The task that will eventually give the response data. + + + + + Fired when a request is starting. + + + + + Fired when a request is finished. + + + + + Interface used to handle resource requests for a document. These + requests include, but are not limited to, media, script and styling + resources. + + + + + Performs an asynchronous request that can be cancelled. + + The options to consider. + + The task that will eventually give the resource's response data. + + + + + Specifies what is stored when receiving data. + + + + + Gets the status code that has been send with the response. + + + + + Gets the url of the response. + + + + + Gets the headers that have been send with the response. + + + + + Gets the content that has been send with the response. + + + + + Options for the loader. + + + + + Gets or sets if navigation is enabled. + By default it is enabled. + + + + + Gets or sets if resource loading is enabled. + By default it is disabled. + + + + + Gets or sets the filter, if any. + + + + + Represents the default cookie service. This class can be inherited. + + + + + Creates a new cookie service for non-persistent cookies. + + + + + Gets the associated cookie container. + + + + + Gets the cookie value of the given address. + + The origin of the cookie. + The value of the cookie. + + + + Sets the cookie value for the given address. + + The origin of the cookie. + The value of the cookie. + + + + Represents an Internet media type. + + + + + Creates a new MIME type. + + The serialized value. + + + + Gets the content part, i.e. everything without the parameters. + + + + + Gets the general type. + + + + + Gets the media type, if specified. + + + + + Gets the suffix, if any. + + + + + Gets an iterator over all integrated keys. + + + + + Returns the value of the parameter with the specified key. + + The parameter's key. + The value of the parameter or null. + + + + Returns the string representation of the MIME type. + + The currently stored MIME type. + + + + Compares the MIME types without considering their parameters. + + The type to compare to. + True if both types are equal, otherwise false. + + + + Compares to the other object. It has to be a MIME type. + + The object to compare to. + True if both objects are equal, otherwise false. + + + + Computes the hash code for the MIME type. + + The computed hash code. + + + + Runs the Equals method from a with b. + + The first MIME type. + The MIME type to compare to. + True if both are equal, otherwise false. + + + + Runs the negated Equals method from a with b. + + The first MIME type. + The MIME type to compare to. + True if both are not equal, otherwise false. + + + + Contains a list of common mime-types. + + + + + Gets the mime type from a file extension ".ext". + + The extension (starting with a dot). + The mime-type of the given extension. + + + + Gets some extension ".ext" from a MIME type. + + The mime-type of the given extension. + An extension (starting with a dot) or an empty string. + + + + Gets the mime-type for HTML text: text/html. + + + + + Gets the mime-type for a PNG image: image/png. + + + + + Gets the mime-type for plain text: text/plain. + + + + + Gets the mime-type for XML text: text/xml. + + + + + Gets the mime-type for SVG text: image/svg+xml. + + + + + Gets the mime-type for a cascading style sheet: text/css. + + + + + Gets the default mime-type for JavaScript scripts: text/javascript. + + + + + Gets the mime-type for JSON text: application/json. + + + + + Gets the mime-type for XML applications: application/xml. + + + + + Gets the mime-type for XHTML / XML text: application/xhtml+xml. + + + + + Gets the mime-type for raw binary data: application/octet-stream. + + + + + Gets the mime-type for a form: application/x-www-form-urlencoded. + + + + + Gets the mime-type for multipart form data: multipart/form-data. + + + + + Checks if the given mime-type is one of the JavaScript variants. + + The type to check for. + + True if it is a legal JavaScript mime-type, otherwise false. + + + + + Checks if the given mime-type is equivalent to the provided string + representation. + + The type to check for. + THe string representation. + + True if both (type and representation) are equivalent, else false. + + + + + The default origin behavior states. + + + + + Data is gathered. + + + + + Data is discarded in NO CORS. + + + + + Contains a collection of default ports. + + + + + Gets the default port for the given protocol, if the protocol is a + relative scheme protocol. + + The protocol to get the port for. + + The string representing the default port, or null, if the protocol + is not known. + + + + + Basic implementation of a request processor. + + + + + Creates a new request processor. + + + + + Gets the status if downloads can be created. + + + + + Gets the associated download. + + + + + Processes the given request asynchronously. + + + + + Processes the response. + + + + + Finishes the download. + + + + + Fetches the given request with CORS. + + + + + Cancels the current download, if any. + + + + + Checks if the given target is different than the current download. + + + + + For more information, see: + http://www.w3.org/html/wg/drafts/html/master/embedded-content.html#update-the-image-data + + + + + Represents a request processor. + + + + + Gets the current download, if any. + + + + + Starts processing the given request by cancelling + the current download if any. + + The new request. + The task handling the request. + + + + See the following link for more infos: + https://html.spec.whatwg.org/multipage/embedded-content.html#dom-media-load + + + + + Contains the known protocol names. + + + + + The Hypertext Transfer Protocol. + + + + + The Hypertext Transfer Protocol Secure. + + + + + The File Transfer Protocol. + + + + + The pseudo JavaScript protocol. + + + + + The pseudo Data protocol. + + + + + The pseudo Mailto protocol. + + + + + The pseudo File protocol. + + + + + The WebSocket protocol. + + + + + The WebSocket Secure protocol. + + + + + The Telnet protocol. + + + + + The Secure Shell protocol. + + + + + The legacy gopher protocol. + + + + + The binary large object protocol. + + + + + Checks if the given protocol (without a colon in the end) is + following a relative scheme. + + The protocol to examine. + + True if the protocol is a relative scheme, otherwise false. + + + + + Checks if the given protocol (without a colon in the end) is + suitable for deriving the origin. + + The protocol to examine. + + True if the protocol is suited for origin, otherwise false. + + + + + The default HTTP request encapsulation type. + + + + + Creates a new default requests. + + + + + Gets or sets the method that should be used. + + + + + Gets or sets the address should be requested. + + + + + Gets or sets a list of headers (key-values) that should be used. + + + + + Gets or sets a stream to the content (positioned at the origin). + + + + + Useful extensions for IRequester objects. + + + + + Checks if the status code corresponds to a redirected response. + + The given status code. + True if the status code hints redirection, otherwise false. + + + + Performs a potentially CORS-enabled fetch from the given URI by + using an asynchronous GET request. For more information see: + http://www.w3.org/TR/html5/infrastructure.html#potentially-cors-enabled-fetch + + The resource loader to use. + The CORS request to issue. + + The active download. + + + + + Represents the arguments to load a resource. + + + + + Creates a new resource request for the given url. + + The request's source. + The resource's url. + + + + Gets the source of the request. + + + + + Gets the target of the request. + + + + + Gets or sets the origin of the request, if any. + + + + + Gets or sets if the manual redirect flag is active. + + + + + Gets or sets if the force same origin flag is active. + + + + + Gets or sets if the omit credentials flag is active. + + + + + Gets or sets if the block cookies flag is active. + + + + + Represents some useful extensions for the response. + + + + + Gets the content-type from the response's headers. The default type + is derived from the file extension of the path, if any. + + The response to examine. + The provided or default content-type. + + + + Gets the content-type from the response's headers. + + The response to examine. + The default type to apply. + The provided or default content-type. + + + + The virtual response class. + + + + + Creates a new virtual response. + + The request callback. + The resulted response. + + + + Sets the location of the response to the given url. + + The imaginary url of the response. + The current instance. + + + + Sets the location of the response to the provided address. + + The string to use as an url. + The current instance. + + + + Sets the location of the response to the uri's value. + + The Uri instance to convert. + The current instance. + + + + Sets the value of the cookie associated with the response. + + The cookie's value. + The current instance. + + + + Sets the status code. + + The status code to set. + The current instance. + + + + Sets the status code by providing the integer value. + + The integer representing the code. + The current instance. + + + + Sets the header with the given name and value. + + The header name to set. + The value for the key. + The current instance. + + + + Sets the headers with the name of the properties and their + assigned values. + + The object to decompose. + The current instance. + + + + Sets the headers with the name of the keys and their assigned + values. + + The dictionary to use. + The current instance. + + + + Sets the response's content from the provided string. + + The text to use as content. + The current instance. + + + + Sets the response's content from the provided stream. + + The response's content stream. + True to dispose afterwards. + The current instance. + + + + Allows basic serialization. + + + + + Writes the serialization of the node guided by the formatter. + + The output target of the serialization. + The formatter to use. + + + + Basic interface for CSS node serialization. + + + + + Concats the given rules to create the stylesheet serialization. + + The rules to aggregate. + The serialization of the sheet. + + + + Creates the serialization of a declaration with the given name, + value and important flag. + + The name of the declaration. + The value of the declaration. + The value of the important flag. + The serialization of the declaration. + + + + Creates the serialization of the declarations with the provided + string representations. + + The declarations to aggregate. + The serialization of the declarations. + + + + Converts the name and value of the provided rule to a simple rule. + + The name of the simple rule. + The value of the simple rule. + The serialization of the simple rule. + + + + Converts the name, prelude and rules of the provided rule to a + composed rule. + + The name of the nested rule. + The optional prelude. + The serialization of the nested rules. + The serialization of the nested rule. + + + + Concats the given rules to create a block serialization. + + The rules to aggregate. + The serialization of the CSS rule block. + + + + Creates a serialization of a comment with the provided data. + + The data of the comment. + The serialization of the comment. + + + + The annotation-xml math element. + + + + + Represents an element of the MathML DOM. + + + + + + + + + + + + + + The mi math element. + + + + + The mn math element. + + + + + The mo math element. + + + + + The math string element. + + + + + The mtext math element. + + + + + Provides string to MathElement instance creation mappings. + + + + + Returns a specialized MathMLElement instance for the given tag. + + The document that owns the element. + The given tag name. + The prefix of the element, if any. + The optional flags, if any. + The specialized MathMLElement instance. + + + + Represents an audio track. + + + + + Gets the id of the audio track. + + + + + Gets the kind of audio track. + + + + + Gets the label of the track. + + + + + Gets the language of the track. + + + + + Gets or sets if the track is enabled. + + + + + Represents a list of audio tracks. + + + + + Gets the number of tracks. + + + + + Gets the track at the given index. + + The 0-based track index. + The track at the position. + + + + Gets the track with the specified id. + + The HTML id of the track. + The track with the given id, if any. + + + + Event triggered after changing contents. + + + + + Event triggered after adding a track. + + + + + Event triggered after removing a track. + + + + + Represents the canvas rendering context. + More information is available at the WHATWG homepage: + http://www.whatwg.org/specs/web-apps/current-work/multipage/scripting.html#canvasrenderingcontext2d + + + + + Gets the associated canvas element. + + + + + Gets or sets the width of the canvas. + + + + + Gets or sets the height of the canvas. + + + + + Push state on state stack. + + + + + Pop state stack and restore state. + + + + + The MediaController for controlling a media. + + + + + Gets the currently buffered time range. + + + + + Gets the currently seekable time range. + + + + + Gets the currently played time range. + + + + + Gets the duration of the controlled media. + + + + + Gets or sets the current time of the controlled media. + + + + + Gets or sets the default playback rate. + + + + + Gets or sets the current playback rate. + + + + + Gets or sets the volume of the controlled media. + + + + + Gets or sets if the controlled media is muted. + + + + + Gets if the media is currently paused. + + + + + Plays the underlying media. + + + + + Pauses the underlying media. + + + + + Gets the current ready state of the media. + + + + + Gets the current playback state of the contained media. + + + + + Event triggered after being emptied. + + + + + Event triggered after the meta data has been received. + + + + + Event triggered after the data has been loaded. + + + + + Event triggered when the media can be played. + + + + + Event triggered when the media can be fully played. + + + + + Event triggered after the media ended. + + + + + Event triggered when waiting for input. + + + + + Event triggered when the media cursor changed. + + + + + Event triggered after the time updated. + + + + + Event triggered after the media paused. + + + + + Event triggered after the media started. + + + + + Event triggered before the media started. + + + + + Event triggered after the rate changed. + + + + + Event triggered after the volume changed. + + + + + Stores information about media errors. + + + + + Gets the code that represents the media error. + + + + + Represents the typedef for any rendering context. + This is shown is the base interface for all rendering + contexts. + + + + + Gets the ID of the rendering context. + + + + + Gets if the context's bitmap mode is fixed. + + + + + Gets the bound host of the context. + + + + + Converts the current data to the given image format. + + The type of the image format. + The raw content bytes of the image. + + + + Represents a service for creating rendering contexts. + + + + + Checks if the given context is supported. + + The ID of the context. + True if the context is supported, otherwise false. + + + + Creates the given context or returns null, if this is not possible. + + The host the context. + The ID of the context. + The instance of the rendering context. + + + + Information about a text track. + + + + + Gets the text track kind of the text track. + + + + + Gets the text track label of the text track. + + + + + Gets the text track language of the text track. + + + + + Gets or sets the mode of the text track. + + + + + Gets the available text cues. + + + + + Gets the active text cues. + + + + + Adds another cue to the text track. + + The cue to add. + + + + Removes a cue from the text track. + + The cue that should be removed. + + + + Event triggered after a cue has changed. + + + + + Represents a text track cue. + + + + + Gets the text track cue identifier. + + + + + Gets the assigned track for this cue. + + + + + Gets or sets the text track cue start time, in seconds. + + + + + Gets or sets the text track cue end time, in seconds. + + + + + Gets or sets the text track cue pause-on-exit flag. + + + + + Gets or sets a string representing the text track cue writing direction, + as follows. If it is horizontal: The empty string. If it is vertical + growing left: The string "rl". If it is vertical growing right: The string "lr". + + + + + Gets or sets the text track cue snap-to-lines flag. + + + + + Gets or sets the text track cue line position. In the case of + the value being auto, the string "auto" is returned. + + + + + Gets or sets the text track cue text position. + + + + + Gets or sets the text track cue size. + + + + + Gets or sets a string representing the text track cue alignment, as + follows. If it is start alignment: the string "start". If it is middle + alignment: the string "middle". If it is end alignment: the string "end". + If it is left alignment: the string "left". If it is right alignment: + the string "right". + + + + + Gets or sets the text track cue text in raw unparsed form. + + + + + Returns the text track cue text as a DocumentFragment of HTML elements + and other DOM nodes. + + The document fragment. + + + + Event triggered after entering. + + + + + Event triggered after exiting. + + + + + Contains a list of text cues. + + + + + Gets the number of cues. + + + + + Gets the cue at the given index. + + The 0-based cue index. + The cue at the position. + + + + Gets the cue with the specified id. + + The HTML id of the cue. + The cue with the given id, if any. + + + + Represents a list of text tracks. + + + + + Gets the number of tracks. + + + + + Gets the track at the given index. + + The 0-based track index. + The track at the position. + + + + Event triggered after adding a track. + + + + + Event triggered after removing a track. + + + + + Represents a media time range. + + + + + Gets the length of the range in frames. + + + + + Returns the time offset at which a specified time range begins. + + The range number to return the starting time for. + The time offset. + + + + Returns the time offset at which a specified time range ends. + + The range number to return the ending time for. + The time offset. + + + + Represents an video track. + + + + + Gets the id of the video track. + + + + + Gets the kind of video track. + + + + + Gets the label of the track. + + + + + Gets the language of the track. + + + + + Gets or sets if the track is selected. + + + + + Represents a list of video tracks. + + + + + Gets the number of tracks. + + + + + Gets the currently selected index. + + + + + Gets the track at the given index. + + The 0-based track index. + The track at the position. + + + + Gets the track with the specified id. + + The HTML id of the track. + The track with the given id, if any. + + + + Event triggered after changing contents. + + + + + Event triggered after adding a track. + + + + + Event triggered after removing a track. + + + + + An enumeration over the various playback states. + + + + + Waiting for the media to be ready. + + + + + Playing the current media. + + + + + The media has already finished playing. + + + + + Enumeration with the various media error codes. + + + + + The transfer has been aborted. + + + + + The network is unreachable. + + + + + The decoding process failed. + + + + + The source format is not supported. + + + + + An enumeration of possible network states. + + + + + The element has not yet been initialized. + Everything is in initial state. + + + + + The element's resource selection alg. is active. + No network usage at the moment, but nothing + loaded. + + + + + The download is in progress. + + + + + The element's resource selection alg. is active, + but has not yet found a resource to use. + + + + + An enumeration of media ready states. + + + + + No information is available. + + + + + Enough information obtained such that the duration of the + resource is available. + + + + + Data for immediate playback is available, but not enough + to advance. + + + + + Enough data for the current and further positions are + available. + + + + + All conditions are met and playback should immediately + execute. + + + + + The modes of a text track. + + + + + The text track is disabled. + + + + + The text track is hidden. + + + + + The text track is actually shown. + + + + + Contains information about a sound file. + + + + + Contains information about an image file. + + + + + Gets the width of the image. + + + + + Gets the height of the image. + + + + + Contains information about a media resource. + + + + + Gets the controller responsible for the media. + + + + + Contains information about a general object file. + + + + + Gets the width of the object. + + + + + Gets the height of the object. + + + + + Specifies general resource information. + + + + + Gets the source of the resource. + + + + + Represents a service to create a specific resource handler. + + + + + Checks if the given type is supported. + + The type of the resource. + True if the type is supported, otherwise false. + + + + Tries to create an inspector for the given resource. + + The response that contains the stream to the resource. + The token for cancelling the task. + A task that finishes with an inspector for the resource. + + + + Contains information about a video file. + + + + + Gets the width of the video. + + + + + Gets the height of the video. + + + + + Extensions for ensuring code portability. + + + + + Defines the API of an available engine for running scripts provided in + the code. + + + + + Checks if the given type is supported. + + The type of the script. + True if the type is supported, otherwise false. + + + + Evaluates a script for the given response asynchronously. + + + The response with the stream representing the source of the script. + + + The options with the parameters for invoking the script. + + The cancellation token. + The task evaluating the script. + + + + Transport object for running scripts. + + + + + Creates new script options for the given document. + + The document to use. + The event loop to use. + + + + Gets the event loop for the executing script. + + + + + Gets the parent document of the executing script. + + + + + Gets or sets the script element that triggered the invocation. + + + + + Gets or sets the encoding that has been selected for the script. + + + + + Represents the circle element of the SVG DOM. + + + + + Represents the desc element of the SVG DOM. + + + + + Represents an element of the SVG DOM. + + + + + + + + + + + + + + Represents the foreign object element of the SVG DOM. + + + + + Represents the svg element of the SVG DOM. + + + + + Represents the title element of the SVG DOM. + + + + + Represents the circle SVG element. + + + + + Represents the desc SVG element. + + + + + The SVGElement interface represents any SVG element. Some elements directly + implement this interface, other implement it via an interface that inherit it. + + + + + Represents the foreignobject SVG element. + + + + + Represents the svg SVG element. + + + + + Represents the title SVG element. + + + + + Provides string to SVGElement instance creation mappings. + + + + + Returns a specialized SVGElement instance for the given tag name. + + The document that owns the element. + The given tag name. + The prefix of the element, if any. + The optional flags, if any. + The specialized SVGElement instance. + + + + Useful methods for chars. + + + + + Converts a given character from the hex representation (0-9A-Fa-f) + to an integer. + + The character to convert. + + The integer value or undefined behavior if invalid. + + + + + Transforms the given number to a hexadecimal string. + + The number (0-255). + A 2 digit upper case hexadecimal string. + + + + Transforms the given character to a hexadecimal string. + + The single character. + A minimal digit lower case hexadecimal string. + + + + Determines if the given character is in the given range. + + The character to examine. + The lower bound of the range. + The upper bound of the range. + The result of the test. + + + + Determines if the given character is allowed as-it-is in queries. + + The character to examine. + The result of the test. + + + + Determines if the given character is allowed as-it-is in paths. + + The character to examine. + The result of the test. + + + + Determines if the given character is a uppercase character (A-Z) as + specified here: + http://www.whatwg.org/specs/web-apps/current-work/multipage/common-microsyntaxes.html#uppercase-ascii-letters + + The character to examine. + The result of the test. + + + + Determines if the given character is a lowercase character (a-z) as + specified here: + http://www.whatwg.org/specs/web-apps/current-work/multipage/common-microsyntaxes.html#lowercase-ascii-letters + + The character to examine. + The result of the test. + + + + Determines if the given character is a alphanumeric character + (0-9a-zA-z) as specified here: + http://www.whatwg.org/specs/web-apps/current-work/multipage/common-microsyntaxes.html#alphanumeric-ascii-characters + + The character to examine. + The result of the test. + + + + Determines if the given character is a hexadecimal (0-9a-fA-F) as + specified here: + http://www.whatwg.org/specs/web-apps/current-work/multipage/common-microsyntaxes.html#ascii-hex-digits + + The character to examine. + The result of the test. + + + + Gets if the character is actually a non-ascii character. + + The character to examine. + The result of the test. + + + + Gets if the character is actually a non-printable (special) + character. + + The character to examine. + The result of the test. + + + + Gets if the character is actually a (A-Z,a-z) letter. + + The character to examine. + The result of the test. + + + + Gets if the character is actually a name character. + + The character to examine. + The result of the test. + + + + Determines if the given character is a valid character for starting + an identifier. + + The character to examine. + The result of the test. + + + + Determines if the given character is a line break character as + specified here: + http://www.w3.org/TR/html401/struct/text.html#h-9.3.2 + + The character to examine. + The result of the test. + + + + Determines if the given character is a space character as specified + here: + http://www.whatwg.org/specs/web-apps/current-work/multipage/common-microsyntaxes.html#space-character + + The character to examine. + The result of the test. + + + + Determines if the given character is a white-space character as + specified here: + http://www.whatwg.org/specs/web-apps/current-work/multipage/common-microsyntaxes.html#white_space + + The character to examine. + The result of the test. + + + + Determines if the given character is a digit (0-9) as specified + here: + http://www.whatwg.org/specs/web-apps/current-work/multipage/common-microsyntaxes.html#ascii-digits + + The character to examine. + The result of the test. + + + + Determines if the given character is a valid url code point as specified here: + http://url.spec.whatwg.org/#url-code-points + + The character to examine. + The result of the test. + + + + Determines if the given character is invalid, i.e. zero, above the + max. codepoint or in an invalid range. + + The character to examine. + The result of the test. + + + + Determines if the given character is one of the two others. + + The character to test. + The first option. + The second option. + The result of the test. + + + + Determines if the given character is one of the three others. + + The character to test. + The first option. + The second option. + The third option. + The result of the test. + + + + Determines if the given character is one of the four others. + + The character to test. + The first option. + The second option. + The third option. + The fourth option. + The result of the test. + + + + Represents a Punycode encoding helper class. + + + + + A list of available punycode character mappings. + + + + + Encodes the given text using Punycode. + + + + + Provides a pool of used / recycled resources. + + + + + Gets or sets the maximum number of instances - at least 1. + + + + + Gets or sets the max. capacity per instance - at least 85000. + + + + + Either creates a fresh stringbuilder or gets a (cleaned) used one. + + A stringbuilder to use. + + + + Returns the given stringbuilder to the pool and gets the current + string content. + + The stringbuilder to recycle. + The string that is created in the stringbuilder. + + + + Useful methods for string objects. + + + + + Checks if the given string has a certain character at a specific + index. The index is optional (default is 0). + + The value to examine. + The character to look for. + The index of the character. + True if the value has the char, otherwise false. + + + + Retrieves a string describing the compatibility mode of the given quirksmode. + + A specific quriks mode. + The compatibility string. + + + + Transforms the given string to lower case by the HTML specification. + + The string to be transformed. + The resulting string. + + + + Converts the given value to a sandbox flag. + + The value to convert. + Should full screen be allowed? + The sandbox flag. + + + + Converts the given value to an enumeration value (or not). + + The value to convert. + The default value to consider (optional). + The converted enum value. + + + + Converts the given value to a double (or not). + + The value to convert. + The default value to consider (optional). + The converted double. + + + + Converts the given value to an integer (or not). + + The value to convert. + The default value to consider (optional). + The converted integer. + + + + Converts the given value to an unsigned integer (or not). + + The value to convert. + The default value to consider (optional). + The converted unsigned integer. + + + + Converts the given value to a boolean (or not). + + The value to convert. + The default value to consider (optional). + The converted boolean. + + + + Replaces the first occurance of the string search with replace. + + The text to use. + The string to search for. + The one-time replacement string. + The result of the search-and-replace. + + + + Collapses and strips all spaces in the given string. + + The string to collapse and strip. + The modified string with collapsed and stripped spaces. + + + + Collapses all spaces in the given string. + + The string to collapse. + The modified string with collapsed spaces. + + + + Examines if a the given list of string contains a certain element. + + The list of strings. + The element to search for. + The default comparison to use. + The status of the check. + + + + Checks if two strings are exactly equal. + + The current string. + The other string. + True if both are equal, false otherwise. + + + + Checks if two strings are equal when viewed case-insensitive. + + The current string. + The other string. + True if both are equal, false otherwise. + + + + Examines if the given element is equal to one of the given elements. + + The element to check for equality. + The first item to compare to. + The second item to compare to. + True if the element is equal to one of the elements, otherwise false. + + + + Examines if the given element is equal to one of the given elements. + + The element to check for equality. + The first item to compare to. + The second item to compare to. + The third item to compare to. + True if the element is equal to one of the elements, otherwise false. + + + + Examines if the given element is equal to one of the given elements. + + The element to check for equality. + The first item to compare to. + The second item to compare to. + The third item to compare to. + The fourth item to compare to. + True if the element is equal to one of the elements, otherwise false. + + + + Examines if the given element is equal to one of the given elements. + + The element to check for equality. + The first item to compare to. + The second item to compare to. + The third item to compare to. + The fourth item to compare to. + The fifth item to compare to. + True if the element is equal to one of the elements, otherwise false. + + + + Strips all line breaks from the given string. + + The string to examine. + A new string, which excludes the line breaks. + + + + Strips all leading and trailing space characters from the given string. + + The string to examine. + A new string, which excludes the leading and tailing spaces. + + + + Strips all leading and trailing space characters from the given char array. + + The array of characters to examine. + A new string, which excludes the leading and tailing spaces. + + + + Splits the string with the given char delimiter. + + The string to examine. + The delimiter character. + The list of tokens. + + + + Splits the char array with the given char delimiter. + + The char array to examine. + The delimiter character. + The list of tokens. + + + + Splits the string on commas. + + The string to examine. + The list of tokens. + + + + Checks if the provided string starts with the given value, either by exactly matching it, + or by comparing against the start including an additional dash character. + + The string to examine. + The value to check against. + The string comparison mode. + True if the string is exactly equal to or starts with the given value. + + + + Splits the string on space characters. + + The string to examine. + The list of tokens. + + + + Splits the string with the given char delimiter and trims the leading and tailing spaces. + + The string to examine. + The delimiter character. + The list of tokens. + + + + Converts the given string to an integer. + + The hexadecimal representation. + The integer number. + + + + Converts the given string to an integer. + + The decimal representation. + The integer number. + + + + Replaces characters in names and values that cannot be expressed by using the given + encoding with &#...; base-10 unicode point. + + The value to sanatize. + The encoding to consider. + The sanatized value. + + + + Serializes the string to a CSS string. + + The value to serialize. + The CSS string representation. + + + + Creates a CSS function from the string with the given argument. + + The CSS function name. + The CSS function argument. + The CSS function string. + + + + Replaces characters in names and values that should not be in URL + values. Replaces the bytes 0x20 (U+0020 SPACE if interpreted as + ASCII) with a single 0x2B byte ("+" (U+002B) character if + interpreted as ASCII). If a byte is not in the range 0x2A, 0x2D, + 0x2E, 0x30 to 0x39, 0x41 to 0x5A, 0x5F, 0x61 to 0x7A, it is + replaced with its hexadecimal value (zero-padded if necessary), + starting with the percent sign. + + The content to encode. + The encoded value. + + + + Decodes the provided percent encoded string. An exception is thrown + in case of an invalid input value. + + The value to decode. + The decoded content. + + + + Replaces every occurrence of a "CR" (U+000D) character not followed + by a "LF" (U+000A) character, and every occurrence of a "LF" + (U+000A) character not preceded by a "CR" (U+000D) character, by a + two-character string consisting of a U+000D CARRIAGE RETURN "CRLF" + (U+000A) character pair. + + The value to normalize. + The normalized string. + + + + Converts the current string to one of the encoding types. + + The string to convert. + + The valid encoding type string or null. + + + + + Converts the current string to one of the form methods. + + The string to convert. + + The valid form method string or null. + + + + + A string abstraction for micro parsers. + + + + + Creates a new string source from the given content. + + + + + Gets the current character. + + + + + Gets if the content has been fully scanned. + + + + + Gets the current index. + + + + + Gets the underlying content. + + + + + Advances by one character and returns the character. + + The next character. + + + + Goes back by one character and returns the character. + + The previous character. + + + + Extensions for the string source helper. + + + + + Skips all spaces starting at the current character. + + + + + Goes back n characters. + + + + + Goes back n characters. + + + + + Gets the upcoming character without advancing. + + + + + Contains useful information from the specification. + + + + + The end of file marker (Char.MaxValue). + + + + + The tilde character ( ~ ). + + + + + The pipe character ( | ). + + + + + The null character. + + + + + The ampersand character ( & ). + + + + + The number sign character ( # ). + + + + + The dollar sign character ( $ ). + + + + + The semicolon sign ( ; ). + + + + + The asterisk character ( * ). + + + + + The equals sign ( = ). + + + + + The plus sign ( + ). + + + + + The dash ( hypen minus, - ) character. + + + + + The comma character ( , ). + + + + + The full stop ( . ). + + + + + The circumflex accent ( ^ ) character. + + + + + The commercial at ( @ ) character. + + + + + The opening angle bracket ( LESS-THAN-SIGN ). + + + + + The closing angle bracket ( GREATER-THAN-SIGN ). + + + + + The single quote / quotation mark ( ' ). + + + + + The (double) quotation mark ( " ). + + + + + The (curved) quotation mark ( ` ). + + + + + The question mark ( ? ). + + + + + The tab character. + + + + + The line feed character. + + + + + The carriage return character. + + + + + The form feed character. + + + + + The space character. + + + + + The slash (solidus, /) character. + + + + + The no break space character. + + + + + The backslash ( reverse-solidus, \ ) character. + + + + + The colon ( : ) character. + + + + + The exclamation mark ( ! ) character. + + + + + The replacement character in case of errors. + + + + + The low line ( _ ) character. + + + + + The round bracket open ( ( ) character. + + + + + The round bracket close ( ) ) character. + + + + + The square bracket open ( [ ) character. + + + + + The square bracket close ( ] ) character. + + + + + The curly bracket open ( { ) character. + + + + + The curly bracket close ( } ) character. + + + + + The percent ( % ) character. + + + + + The maximum allowed codepoint (defined in Unicode). + + + + + Various HTML encoding helpers. + + + + + Gets the UTF-8 encoding. + + + + + Gets the UTF-16 (Big Endian) encoding. + + + + + Gets the UTF-16 (Little Endian) encoding. + + + + + Gets the UTF-32 (Little Endian) encoding. + + + + + Gets the UTF-32 (Little Endian) encoding. + + + + + Gets the chinese government standard encoding. + + + + + Gets the Big5 encoding. + + + + + Gets the Windows-874 encoding. + + + + + Gets the Windows-1250 encoding. + + + + + Gets the Windows-1251 encoding. + + + + + Gets the Windows-1252 encoding. + + + + + Gets the Windows-1253 encoding. + + + + + Gets the Windows-1254 encoding. + + + + + Gets the Windows-1255 encoding. + + + + + Gets the Windows-1256 encoding. + + + + + Gets the Windows-1257 encoding. + + + + + Gets the Windows-1258 encoding. + + + + + Gets the iso-8859-2 encoding. + + + + + Gets the iso-8859-53 encoding. + + + + + Gets the iso-8859-4 encoding. + + + + + Gets the iso-8859-5 encoding. + + + + + Gets the iso-8859-13 encoding. + + + + + Gets the US-ASCII encoding. + + + + + Gets the ks_c_5601-1987 encoding. + + + + + Checks if the provided encoding is any UTF-16 encoding. + + The encoding to check. + The result of the check (UTF-16BE, UTF-16LE). + + + + Tries to extract the encoding from the given http-equiv content + string. + + The value of the attribute. + + The extracted encoding or null if the encoding is invalid. + + + + + Detects if a valid encoding has been found in the given charset + string. + + The parsed charset string. + + True if a valid encdoing has been found, otherwise false. + + + + + Resolves an Encoding instance given by the charset string. + If the desired encoding is not found (or supported), then + UTF-8 will be returned. + + The charset string. + An instance of the Encoding class or null. + + + + The position in the source code. + + + + + An empty position (0, 0, 0). + + + + + Creates a new text position. + + The line of the character. + The column of the character. + The index of the character. + + + + Gets the line within the document. + The line is 1-based, so the first line has value 1. + + + + + Gets the column within the document. + The column is 1-based, so the first column has value 1. + + + + + Gets the position within the source. + The position is 1-based, so the first character is at position 1. + + + + + Gets the index within the source. + The index is 0-based, so the first character is at index 0. + + + + + Returns a new text position that includes the given offset. + + The number of columns to shift. + The new text position. + + + + Returns a new text position that is after the given character. + + The character to analyze. + The new text position. + + + + Returns a new text position that is after the given string. + + The string to analyze. + The new text position. + + + + Returns a string representation of the position in the text. + + + A string that contains the contained line and column. + + + + + Returns the hash code for this instance. + + + An integer that is the hash code for this instance. + + + + + Indicates whether this instance and a specified object are equal. + + + The object to compare with the current instance. + + + True if the given object is a text position with the same values, + otherwise false. + + + + + Indicates whether the current position is equal to the given + position. + + An object to compare with this object. + + True if the given position has the same values, otherwise false. + + + + + Compares the two positions by their absolute positions in the text + source. + + The first operand. + The second operand. + + True if the position of the first operand is greater than the + second operand. + + + + + Compares the two positions by their absolute positions in the text + source. + + The first operand. + The second operand. + + True if the position of the first operand is less than the second + operand. + + + + + Compares the current position with another position. + + The position to compare to. + + A mathematical representation of the relation (1 = greater, -1 = + less, 0 = equal). + + + + + The positional range in the source code. + + + + + Creates a new text range. + + The start of the range. + The end of the range. + + + + Gets the start position of the range. + + + + + Gets the end position of the range. + + + + + Returns a string representation of the range in the text. + + + A string that contains the start and end positions. + + + + + Returns the hash code for this instance. + + + An integer that is the hash code for this instance. + + + + + Indicates whether this instance and a specified object are equal. + + + The object to compare with the current instance. + + + True if the given object is a text position with the same values, + otherwise false. + + + + + Indicates whether the current range is equal to the given range. + + An object to compare with this object. + + True if the given range has the same start and end position, + otherwise false. + + + + + Compares the two ranges by their positions in the text source. + + The first operand. + The second operand. + + True if the start position of the first operand is greater than the + end position of the second operand. + + + + + Compares the two ranges by their positions in the text source. + + The first operand. + The second operand. + + True if the end position of the first operand is less than the + start position of the second operand. + + + + + Compares the current range with another range. + + The range to compare to. + + A mathematical representation of the relation (1 = greater, -1 = + less, 0 = equal). + + + + + A stream abstraction to handle encoding and more. + + + + + Creates a new text source from a string. No underlying stream will + be used. + + The data source. + + + + Creates a new text source from a string. The underlying stream is + used as an unknown data source. + + + The underlying stream as data source. + + + The initial encoding. Otherwise UTF-8. + + + + + Gets the full text buffer. + + + + + Gets the character at the given position in the text buffer. + + The index of the character. + The character. + + + + Gets the length of the text buffer. + + + + + Gets or sets the encoding to use. + + + + + Gets or sets the current index of the insertation and read point. + + + + + Disposes the text source by freeing the underlying stream, if any. + + + + + Reads the next character from the buffer or underlying stream, if + any. + + The next character. + + + + Reads the upcoming numbers of characters from the buffer or + underlying stream, if any. + + The number of characters to read. + The string with the next characters. + + + + Prefetches the number of bytes by expanding the internal buffer. + + The number of bytes to prefetch. + The cancellation token. + The awaitable task. + + + + Prefetches the whole stream by expanding the internal buffer. + + The cancellation token. + The awaitable task. + + + + Inserts the given content at the current insertation mark. Moves the + insertation mark. + + The content to insert. + + + + Represents a view on a particular source code. + + + + + Creates a new text view for the given range. + + + + + Gets the start and end of the text view. + + + + + Gets the text associated with this view. + + + + + Useful helpers for the XML parser. + + + + + Determines if the given character is a legal character for the public id field: + http://www.w3.org/TR/REC-xml/#NT-PubidChar + + The character to examine. + The result of the test. + + + + Determines if the given character is a legal name start character for XML. + http://www.w3.org/TR/REC-xml/#NT-NameStartChar + + The character to examine. + The result of the test. + + + + Determines if the given character is a name character for XML. + http://www.w3.org/TR/REC-xml/#NT-NameChar + + The character to examine. + The result of the test. + + + + Determines if the given string is a valid (local or qualified) name. + + The string to examine. + The result of the test. + + + + Determines if the given string is a valid qualified name. + + The string to examine. + The result of the test. + + + + Checks if the given char is a valid character. + + The char to examine. + True if the char would indeed be valid. + + + + Checks if the given integer would be a valid character. + + The integer to examine. + True if the integer would indeed be valid. + + + + Represents an Url class according to RFC3986. This is the base for all + internal Url manipulation. + + + + + Creates a new Url from the given string. + + The address to represent. + + + + Creates a new absolute Url from the relative Url with the given + base address. + + The base address to use. + + The relative address to represent. + + + + + Creates a new Url by copying the other Url. + + The address to copy. + + + + Creates an Url from an absolute url transported in a string. + + The address to use. + The new Url. + + + + Creates an Url from an url transported in an Uri. + + The url to use. + The new Url. + + + + Gets the origin of the stored url. + + + + + Gets if the URL parsing resulted in an error. + + + + + Gets if the stored url is relative. + + + + + Gets if the stored url is absolute. + + + + + Gets or sets the username for authorization. + + + + + Gets or sets the password for authorization. + + + + + Gets the additional stored data of the URL. This is data that could + not be assigned. + + + + + Gets or sets the fragment. + + + + + Gets or sets the host, e.g. "localhost:8800" or "www.w3.org". + + + + + Gets or sets the host name, e.g. "localhost" or "www.w3.org". + + + + + Gets or sets the hyper reference, i.e. the full path. + + + + + Gets or sets the pathname, e.g. "mypath". + + + + + Gets or sets the port, e.g. "8800". + + + + + Gets or sets the protocol, e.g. "http". + + + + + Gets or sets the query. + + + + + Serves as the default hash function. + + A hash code for the current url. + + + + Determines whether the specified object is equal to the current + object. + + + The object to compare with the current object. + + + True if the object is equal to the current object, otherwise false. + + + + + Determines whether the specified url is equal to the current + object. + + + The url to compare with the current one. + + + True if the given url is equal to the current url, otherwise false. + + + + + Converts the given Url to an Uri. + + The Url to convert. + The Uri instance. + + + + Returns a string that represents the current url. + + The currently stored url. + + + + Returns the string representation of the current location. + + The string that equals the hyper reference. + + + + Represents the standard XHTML markup formatter. + + + + + An instance of the XhtmlMarkupFormatter. + + + + + + + + + + + + + + + + + + + + + + + + + + Creates the string representation of the attribute. + + The attribute to serialize. + The string representation. + + + + Escapes the given text by replacing special characters with their + XHTML entity (amp, nbsp as numeric value, lt, and gt). + + The string to alter. + The altered string. + + + + Gets the local name using the XML namespace prefix if required. + + The name to be properly represented. + The string representation. + + + diff --git a/bin/Release/AsyncEnumerable.dll b/bin/Release/AsyncEnumerable.dll new file mode 100755 index 0000000..8902bed Binary files /dev/null and b/bin/Release/AsyncEnumerable.dll differ diff --git a/bin/Release/AsyncEnumerable.xml b/bin/Release/AsyncEnumerable.xml new file mode 100755 index 0000000..d6838e4 --- /dev/null +++ b/bin/Release/AsyncEnumerable.xml @@ -0,0 +1,1675 @@ + + + + AsyncEnumerable + + + + + Base abstract class that implements . + Use concrete implementation or . + + + + + Returns pre-cached empty collection + + + + + Helps to enumerate items in a collection asynchronously + + + + IAsyncEnumerable<int> ProduceNumbers(int start, int end) + { + return new AsyncEnumerable<int>(async yield => { + for (int number = start; number <= end; number++) + await yield.ReturnAsync(number); + }); + } + + async Task ConsumeAsync() + { + var asyncEnumerableCollection = ProduceNumbers(start: 1, end: 10); + await asyncEnumerableCollection.ForEachAsync(async number => { + await Console.Out.WriteLineAsync(number); + }); + } + + + + + + A pre-cached empty collection + + + + + Constructor + + A function that enumerates items in a collection asynchronously + + + + Creates an enumerator that iterates through a collection asynchronously + + A cancellation token to cancel creation of the enumerator in case if it takes a lot of time + Returns a task with the created enumerator as result on completion + + + + Similar to , but allows you to pass a state object into the enumeration function, what can be + used for performance optimization, so don't have to create a delegate on the fly every single time you create the enumerator. + + Type of items returned by + Type of the state object + + + + Constructor + + A function that enumerates items in a collection asynchronously + A state object that is passed to the + + + + A user state that gets passed into the enumeration function. + + + + + Creates an enumerator that iterates through a collection asynchronously + + Returns a task with the created enumerator as result on completion + + + + Creates an enumerator that iterates through a collection asynchronously + + Returns a task with the created enumerator as result on completion + + + + This exception is thrown when you call + or when the enumerator is disposed before reaching the end of enumeration. + + + + + Base type for and + + + + + Returns an empty . Safe to use by multiple threads. + + + + + Helps to enumerate items in a collection asynchronously. + Provides exactly the same functionality as , + but allows to pass a user state object in the enumeration function, + what can be used for performance optimization. + + + + + Constructor + + A function that enumerates items in a collection asynchronously + Any state object that is passed to the + Optional action that gets invoked on Dispose() + + + + Finalizer + + + + + A user state that gets passed into the enumeration function. + + + + + Gets the element in the collection at the current position of the enumerator + + + + + Tells if enumeration is complete. Returns True only after MoveNextAsync returns False. + + + + + Advances the enumerator to the next element of the collection asynchronously + + Returns a Task that does transition to the next element. The result of the task is True if the enumerator was successfully advanced to the next element, or False if the enumerator has passed the end of the collection. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources + + True if called from Dispose() method, otherwise False - called by GC + + + + Helps to enumerate items in a collection asynchronously + + + + + An empty . Safe to use by multiple threads. + + + + + The asynchronous version of the 'yield' construction + + + + + Gets the cancellation token that was passed to the method + + + + + Yields an item asynchronously (similar to 'yield return' statement) + + The item of the collection to yield + Returns a Task which tells if when you can continue to yield the next item + + + + Stops iterating items in the collection (similar to 'yield break' statement) + + Always throws this exception to stop the enumeration task + + + + Constructor + + A function that enumerates items in a collection asynchronously + Optional action that gets invoked on Dispose() + + + + Internal implementation details + + + + + Converts generic IEnumerable to IAsyncEnumerable + + + + + Creates adapter for + + The element type + The instance of to convert + If True the enumeration will be performed on the same thread, otherwise the MoveNext will be executed on a separate thread with Task.Run method + Returns an instance of implementation + + + + Creates adapter for the enumerator of + + The element type + The instance of to convert + If True the enumeration will be performed on the same thread, otherwise the MoveNext will be executed on a separate thread with Task.Run method + Returns an instance of implementation + + + + Creates adapter for + + The element type + The instance of to convert + If True the enumeration will be performed on the same thread, otherwise the MoveNext will be executed on a separate thread with Task.Run method + Returns an instance of implementation + + + + Extension methods for for backward compatibility with version 1 of this libraray. + Not recommended to use. + + + + + Converts to . + This method is marked as [Obsolete] to discourage you from doing such conversion, + which defeats the whole purpose of having a non-blocking async enumeration, + and what might lead to dead-locks in ASP.NET or WPF applications. + + + + + Converts to . + This method is marked as [Obsolete] to discourage you from doing such conversion, + which defeats the whole purpose of having a non-blocking async enumeration, + and what might lead to dead-locks in ASP.NET or WPF applications. + + + + + Creates an enumerator that iterates through a collection synchronously. + This method is marked as [Obsolete] to discourage you from using this synchronous version of + the method instead of , + what might lead to dead-locks in ASP.NET or WPF applications. + + + + + Class to provide access to static method. + + + + + Stops ForEachAsync iteration (similar to 'break' statement) + + Always throws this exception to stop the ForEachAsync iteration + + + + This exception is thrown when you call . + + + + + Enables asynchronous 'foreach' enumeration over an IAsyncEnumerable + + + + + Enumerates over all elements in the collection asynchronously + + The type of elements in the collection + The collection of elements which can be enumerated asynchronously + A synchronous action to perform for every single item in the collection + A cancellation token to stop enumerating + Returns a Task which does enumeration over elements in the collection + + + + Enumerates over all elements in the collection asynchronously + + The type of elements in the collection + The collection of elements which can be enumerated asynchronously + A synchronous action to perform for every single item in the collection + Returns a Task which does enumeration over elements in the collection + + + + Enumerates over all elements in the collection asynchronously + + The type of elements in the collection + The collection of elements which can be enumerated asynchronously + A synchronous action to perform for every single item in the collection, where the second argument is the index of an item + A cancellation token to stop enumerating + Returns a Task which does enumeration over elements in the collection + + + + Enumerates over all elements in the collection asynchronously + + The type of elements in the collection + The collection of elements which can be enumerated asynchronously + A synchronous action to perform for every single item in the collection, where the second argument is the index of an item + Returns a Task which does enumeration over elements in the collection + + + + Enumerates over all elements in the collection asynchronously + + The type of elements in the collection + The collection of elements which can be enumerated asynchronously + An asynchronous action to perform for every single item in the collection + A cancellation token to stop enumerating + Returns a Task which does enumeration over elements in the collection + + + + Enumerates over all elements in the collection asynchronously + + The type of elements in the collection + The collection of elements which can be enumerated asynchronously + An asynchronous action to perform for every single item in the collection + Returns a Task which does enumeration over elements in the collection + + + + Enumerates over all elements in the collection asynchronously + + The type of elements in the collection + The collection of elements which can be enumerated asynchronously + An asynchronous action to perform for every single item in the collection, where the second argument is the index of an item + A cancellation token to stop enumerating + Returns a Task which does enumeration over elements in the collection + + + + Enumerates over all elements in the collection asynchronously + + The type of elements in the collection + The collection of elements which can be enumerated asynchronously + An asynchronous action to perform for every single item in the collection, where the second argument is the index of an item + Returns a Task which does enumeration over elements in the collection + + + + Extension methods for interface + + + + + Returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence. + + The type of the elements of . + An to return the single element of. + A that can halt enumeration of . + + + + Returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence. + + The type of the elements of . + An to return the single element of. + The message of an exception which is thrown when the source collection is empty. + The message of an exception which is thrown when the source collection has more than one element. + A that can halt enumeration of . + + + + Returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence that matches the criteria. + + The type of the elements of . + An to return the single element of. + Criteria predicate to select the only element. + A that can halt enumeration of . + + + + Returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence that matches the criteria. + + The type of the elements of . + An to return the single element of. + Criteria predicate to select the only element. + The message of an exception which is thrown when the source collection is has no element matching the criteria. + The message of an exception which is thrown when the source collection has more than one element matching the criteria. + A that can halt enumeration of . + + + + Returns the only element of a sequence, and returns a default value if there is not exactly one element in the sequence. + + The type of the elements of . + An to return the single element of. + A that can halt enumeration of . + + + + Returns the only element of a sequence, and returns a default value if there is not exactly one element in the sequence that matches the criteria. + + The type of the elements of . + An to return the single element of. + Criteria predicate to select the only element. + A that can halt enumeration of . + + + + Returns the first element in the . + + The type of the elements of + An to return an element from. + A that can halt enumeration of + + + + Returns the first element in the . + + The type of the elements of + An to return an element from. + An optional custom exception message for the case when the is empty + A that can halt enumeration of + + + + Returns the first element in a sequence that satisfies a specified condition. + + The type of the elements of + An to return an element from. + A function to test each element for a condition. + A that can halt enumeration of + + + + Returns the first element in a sequence that satisfies a specified condition. + + The type of the elements of + An to return an element from. + A function to test each element for a condition. + An optional custom exception message for the case when the is empty + A that can halt enumeration of + + + + Returns the first element in the , or a default value if no element is found. + + The type of the elements of + An to return an element from. + A that can halt enumeration of + + + + Returns the first element in a sequence that satisfies a specified condition, or a default value if no element is found. + + The type of the elements of + An to return an element from. + A function to test each element for a condition. + A that can halt enumeration of + + + + Projects each element of a sequence into a new form. + + The type of the elements of + The type of the value returned by . + A sequence of values to invoke a transform function on. + A transform function to apply to each element. + + + + Projects each element of a sequence into a new form. + + The type of the elements of + The type of the value returned by . + A sequence of values to invoke a transform function on. + A transform function to apply to each source element; the second parameter of the function represents the index of the source element. + + + + Projects each element of a sequence to an IAsyncEnumerable<T> and flattens the resulting sequences into one sequence. + + The type of the elements of . + The type of the value in the IAsyncEnumerable returned by . + A sequence of values to invoke a transform function on. + A transform function to apply to each source element. + + + + Projects each element of a sequence to an IAsyncEnumerable<T> and flattens the resulting sequences into one sequence. + + The type of the elements of . + The type of the intermediate elements collected by . + The type of the elements of the resulting sequence by . + A sequence of values to invoke a transform function on. + A transform function to apply to each element of the input sequence. + A transform function to apply to each element of the intermediate sequence. + + + + Projects each element of a sequence to an IAsyncEnumerable<T> and flattens the resulting sequences into one sequence. + + The type of the elements of . + The type of the value in the IAsyncEnumerable returned by . + A sequence of values to invoke a transform function on. + A transform function to apply to each source element. + + + + Projects each element of a sequence to an IAsyncEnumerable<T> and flattens the resulting sequences into one sequence. + + The type of the elements of . + The type of the intermediate elements collected by . + The type of the elements of the resulting sequence by . + A sequence of values to invoke a transform function on. + A transform function to apply to each element of the input sequence. + A transform function to apply to each element of the intermediate sequence. + + + + Returns a specified number of contiguous elements from the start of a sequence. + + The type of the elements of + A sequence to return elements from. + The number of elements to return. + + + + Returns elements from a sequence as long as a specified condition is true. + + The type of the elements of + A sequence to return elements from. + A function to test each element for a condition. + + + + Creates a list of elements asynchronously from the enumerable source + + The type of the elements of source + The collection of elements + A cancellation token to cancel the async operation + + + + Creates an array of elements asynchronously from the enumerable source + + The type of the elements of source + The collection of elements + A cancellation token to cancel the async operation + + + + Creates a from an according to a specified key selector function, a comparer, and an element selector function. + + The type of the elements of . + The type of the key returned by . + An to create a from. + A function to extract a key from each element. + A cancellation token to cancel the async operation. + + + + + Creates a from an according to a specified key selector function, a comparer, and an element selector function. + + The type of the elements of . + The type of the key returned by . + An to create a from. + A function to extract a key from each element. + An to compare keys. + A cancellation token to cancel the async operation. + + + + + Creates a from an according to a specified key selector function, a comparer, and an element selector function. + + The type of the elements of . + The type of the key returned by . + The type of the value returned by . + An to create a from. + A function to extract a key from each element. + A transform function to produce a result element value from each element. + A cancellation token to cancel the async operation. + + + + + Creates a from an according to a specified key selector function, a comparer, and an element selector function. + + The type of the elements of . + The type of the key returned by . + The type of the value returned by . + An to create a from. + A function to extract a key from each element. + A transform function to produce a result element value from each element. + An to compare keys. + A cancellation token to cancel the async operation. + + + + + Creates a from an according to a specified key selector function. + + The type of the elements of . + The type of the key returned by . + The to create a from. + A function to extract a key from each element. + A cancellation token to cancel the async operation. + + + + Creates a from an according to a specified key selector function and key comparer. + + The type of the elements of . + The type of the key returned by . + The to create a from. + A function to extract a key from each element. + An to compare keys. + A cancellation token to cancel the async operation. + + + + Creates a from an according to a specified key selector function and an element selector function. + + The type of the elements of . + The type of the key returned by . + The type of the value returned by . + The to create a from. + A function to extract a key from each element. + A transform function to produce a result element value from each element. + A cancellation token to cancel the async operation. + + + + Creates a from an according to a specified key selector function, a comparer and an element selector function. + + The type of the elements of . + The type of the key returned by . + The type of the value returned by . + The to create a from. + A function to extract a key from each element. + A transform function to produce a result element value from each element. + An to compare keys. + A cancellation token to cancel the async operation. + + + + An to return elements from. + + The type of the elements of + An to return elements from. + The number of elements to skip before returning the remaining elements. + + + + Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements. + + The type of the elements of + An to return elements from. + A function to test each element for a condition. + + + + Filters a sequence of values based on a predicate. + + The type of the elements of + An to filter. + A function to test each element for a condition. + + + + Projects each element of a sequence into a new form. + + The type of the elements of + An to filter. + A function to test each element for a condition; the second parameter of the function represents the index of the source element. + + + + Casts the elements of an to the specified type. + + The type to cast the elements of to. + An that contains the elements to be cast to type . + + + + Filters the elements of an based on a specified type. + + The type to filter the elements of the sequence on. + The whose elements to filter. + + + + Returns the elements of the specified sequence or the specified value in a singleton collection if the sequence is empty. + + The type of the elements of . + The sequence to return the specified value for if it is empty. + + + + Returns the elements of the specified sequence or the specified value in a singleton collection if the sequence is empty. + + The type of the elements of . + The sequence to return the specified value for if it is empty. + The value to return if the sequence is empty. + + + + Splits the input collection into series of batches. + + The type of the elements of + An to batch. + The maximum number of elements to put in a batch. + + + + Splits the input collection into series of batches. + + The type of the elements of + + The type of a .NET's standard collection that forms a batch. Supported types are: + , , , , + , , , + , , . + + An to batch. + The maximum number of elements to put in a batch. + + + + Splits the input collection into series of batches. + + The type of the elements of + An to batch. + The maximum logical weight of elements that a single batch can accomodate. + A function that computes a weight of a particular element, which is used to make a decision if it can fit into a batch. + + + + Splits the input collection into series of batches. + + The type of the elements of + + The type of a .NET's standard collection that forms a batch. Supported types are: + , , , , + , , , + , , . + + An to batch. + The maximum logical weight of elements that a single batch can accomodate. + A function that computes a weight of a particular element, which is used to make a decision if it can fit into a batch. + + + + Splits the input collection into series of batches. + + The type of the elements of + An to batch. + The maximum number of elements to put in a batch regardless their total weight. + The maximum logical weight of elements that a single batch can accomodate. + A function that computes a weight of a particular element, which is used to make a decision if it can fit into a batch. + + + + Splits the input collection into series of batches. + + The type of the elements of + + The type of a .NET's standard collection that forms a batch. Supported types are: + , , , , + , , , + , , . + + An to batch. + The maximum number of elements to put in a batch regardless their total weight. + The maximum logical weight of elements that a single batch can accomodate. + A function that computes a weight of a particular element, which is used to make a decision if it can fit into a batch. + + + + Splits the input collection into series of batches. + + The type of the elements of + The type of a batch of elements. + An to batch. + The maximum number of elements to put in a batch regardless their total weight. + The maximum logical weight of elements that a single batch can accomodate. + A function that computes a weight of a particular element, which is used to make a decision if it can fit into a batch. + A function that creates a new batch with optional suggested capacity. + An action that adds an element to a batch. + + + + Produces the set union of two sequences, which includes duplicate elements. + + The type of the elements of the input sequences. + An whose elements form the first set for the union. + An whose elements form the second set for the union. + + + + Produces the set union of multiple sequences, which includes duplicate elements. + + The type of the elements of the input sequences. + A set of whose elements form the union. + + + + Creates a new sequence based on input one plus an extra element at the end. + + The type of the elements of . + An to return the single element of. + An extra element to be returned on enumeration. + + + + Creates a new sequence based on input one plus an extra element in the beginning. + + The type of the elements of . + An to return the single element of. + An extra element to be returned on enumeration. + + + + Concatenates two sequences. + + The type of the elements of the input sequences. + The first sequence to concatenate. + The sequence to concatenate to the first sequence. + + + + Returns distinct elements from a sequence by using the default equality comparer to compare values. + + The type of the elements of . + The sequence to remove duplicate elements from. + + + + Returns distinct elements from a sequence by using a specified to compare values. + + The type of the elements of . + The sequence to remove duplicate elements from. + An to compare values. + + + + Applies an accumulator function over a sequence. + + The type of the elements of . + An to aggregate over. + An accumulator function to be invoked on each element. + A cancellation token to cancel the async operation. + + + + Applies an accumulator function over a sequence. The specified seed value is used as the initial accumulator value. + + The type of the elements of . + The type of the accumulator value. + An to aggregate over. + The initial accumulator value. + An accumulator function to be invoked on each element. + A cancellation token to cancel the async operation. + + + + Applies an accumulator function over a sequence. The specified seed value is used as the initial accumulator value, and the specified function is used to select the result value. + + The type of the elements of . + The type of the accumulator value. + The type of the resulting value. + An to aggregate over. + The initial accumulator value. + An accumulator function to be invoked on each element. + A function to transform the final accumulator value into the result value. + A cancellation token to cancel the async operation. + + + + Determines whether all elements of a sequence satisfy a condition. + + An that contains the elements to apply the predicate to. + A function to test each element for a condition. + A cancellation token to cancel the async operation. + The type of the elements of . + true if every element of the source sequence passes the test in the specified predicate, or if the sequence is empty; otherwise, false. + or is null. + + + + Determines whether any element of a sequence exists or satisfies a condition. + + An that contains the elements to apply the predicate to. + A function to test each element for a condition. + A cancellation token to cancel the async operation. + The type of the elements of . + true if any elements in the source sequence pass the test in the specified predicate; otherwise, false. + or is null. + + + + Extension methods for interface + + + + + Returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence. + + The type of the elements of . + An to return the single element of. + Flag to call the on input when this operation is complete + + + + Returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence. + + The type of the elements of . + An to return the single element of. + The message of an exception which is thrown when the source collection is empty. + The message of an exception which is thrown when the source collection has more than one element. + Flag to call the on input when this operation is complete + + + + Returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence that matches the criteria. + + The type of the elements of . + An to return the single element of. + Criteria predicate to select the only element. + Flag to call the on input when this operation is complete + + + + Returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence that matches the criteria. + + The type of the elements of . + An to return the single element of. + Criteria predicate to select the only element. + The message of an exception which is thrown when the source collection is has no element matching the criteria. + The message of an exception which is thrown when the source collection has more than one element matching the criteria. + Flag to call the on input when this operation is complete + + + + Returns the only element of a sequence, and returns a default value if there is not exactly one element in the sequence. + + The type of the elements of . + An to return the single element of. + Flag to call the on input when this operation is complete + + + + Returns the only element of a sequence, and returns a default value if there is not exactly one element in the sequence that matches the criteria. + + The type of the elements of . + An to return the single element of. + Criteria predicate to select the only element. + Flag to call the on input when this operation is complete + + + + Returns the first element in the . + + The type of the elements of + An to return an element from. + Flag to call the on input when this operation is complete + + + + Returns the first element in the . + + The type of the elements of + An to return an element from. + An optional custom exception message for the case when the is empty + Flag to call the on input when this operation is complete + + + + Returns the first element in a sequence that satisfies a specified condition. + + The type of the elements of + An to return an element from. + A function to test each element for a condition. + Flag to call the on input when this operation is complete + + + + Returns the first element in a sequence that satisfies a specified condition. + + The type of the elements of + An to return an element from. + A function to test each element for a condition. + An optional custom exception message for the case when the is empty + Flag to call the on input when this operation is complete + + + + Returns the first element in the , or a default value if no element is found. + + The type of the elements of + An to return an element from. + Flag to call the on input when this operation is complete + + + + Returns the first element in a sequence that satisfies a specified condition, or a default value if no element is found. + + The type of the elements of + An to return an element from. + A function to test each element for a condition. + Flag to call the on input when this operation is complete + + + + Projects each element of a sequence into a new form. + + The type of the elements of + The type of the value returned by . + A sequence of values to invoke a transform function on. + A transform function to apply to each element. + Flag to call the on input when enumeration is complete + + + + Projects each element of a sequence into a new form. + + The type of the elements of + The type of the value returned by . + A sequence of values to invoke a transform function on. + A transform function to apply to each source element; the second parameter of the function represents the index of the source element. + Flag to call the on input when enumeration is complete + + + + Returns a specified number of contiguous elements from the start of a sequence. + + The type of the elements of + A sequence to return elements from. + The number of elements to return. + Flag to call the on input when enumeration is complete + + + + Returns elements from a sequence as long as a specified condition is true. + + The type of the elements of + A sequence to return elements from. + A function to test each element for a condition. + Flag to call the on input when enumeration is complete + + + + Creates a list of elements asynchronously from the enumerable source + + The type of the elements of source + The collection of elements + Flag to call the on input when this operation is complete + + + + Creates an array of elements asynchronously from the enumerable source + + The type of the elements of source + The collection of elements + Flag to call the on input when this operation is complete + + + + An to return elements from. + + The type of the elements of + An to return elements from. + The number of elements to skip before returning the remaining elements. + Flag to call the on input when enumeration is complete + + + + Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements. + + The type of the elements of + An to return elements from. + A function to test each element for a condition. + Flag to call the on input when enumeration is complete + + + + Filters a sequence of values based on a predicate. + + The type of the elements of + An to filter. + A function to test each element for a condition. + Flag to call the on input when enumeration is complete + + + + Projects each element of a sequence into a new form. + + The type of the elements of + An to filter. + A function to test each element for a condition; the second parameter of the function represents the index of the source element. + Flag to call the on input when enumeration is complete + + + + Casts the elements of an to the specified type. + + The type to cast the elements of to. + An that contains the elements to be cast to type . + Flag to call the on input when enumeration is complete + + + + Returns the elements of the specified sequence or the specified value in a singleton collection if the sequence is empty. + + The type of the elements of . + The sequence to return the specified value for if it is empty. + Flag to call the on input when enumeration is complete + + + + Returns the elements of the specified sequence or the specified value in a singleton collection if the sequence is empty. + + The type of the elements of . + The sequence to return the specified value for if it is empty. + The value to return if the sequence is empty. + Flag to call the on input when enumeration is complete + + + + Splits the input collection into series of batches. + + The type of the elements of + An to batch. + The maximum number of elements to put in a batch. + Flag to call the on input when enumeration is complete + + + + Splits the input collection into series of batches. + + The type of the elements of + + The type of a .NET's standard collection that forms a batch. Supported types are: + , , , , + , , , + , , . + + An to batch. + The maximum number of elements to put in a batch. + Flag to call the on input when enumeration is complete + + + + Splits the input collection into series of batches. + + The type of the elements of + An to batch. + The maximum logical weight of elements that a single batch can accomodate. + A function that computes a weight of a particular element, which is used to make a decision if it can fit into a batch. + Flag to call the on input when enumeration is complete + + + + Splits the input collection into series of batches. + + The type of the elements of + + The type of a .NET's standard collection that forms a batch. Supported types are: + , , , , + , , , + , , . + + An to batch. + The maximum logical weight of elements that a single batch can accomodate. + A function that computes a weight of a particular element, which is used to make a decision if it can fit into a batch. + Flag to call the on input when enumeration is complete + + + + Splits the input collection into series of batches. + + The type of the elements of + An to batch. + The maximum number of elements to put in a batch regardless their total weight. + The maximum logical weight of elements that a single batch can accomodate. + A function that computes a weight of a particular element, which is used to make a decision if it can fit into a batch. + Flag to call the on input when enumeration is complete + + + + Splits the input collection into series of batches. + + The type of the elements of + + The type of a .NET's standard collection that forms a batch. Supported types are: + , , , , + , , , + , , . + + An to batch. + The maximum number of elements to put in a batch regardless their total weight. + The maximum logical weight of elements that a single batch can accomodate. + A function that computes a weight of a particular element, which is used to make a decision if it can fit into a batch. + Flag to call the on input when enumeration is complete + + + + Splits the input collection into series of batches. + + The type of the elements of + The type of a batch of elements. + An to batch. + The maximum number of elements to put in a batch regardless their total weight. + The maximum logical weight of elements that a single batch can accomodate. + A function that computes a weight of a particular element, which is used to make a decision if it can fit into a batch. + A function that creates a new batch with optional suggested capacity. + An action that adds an element to a batch. + Flag to call the on input when enumeration is complete + + + + Produces the set union of two sequences, which includes duplicate elements. + + The type of the elements of the input sequences. + An whose elements form the first set for the union. + An whose elements form the second set for the union. + Flag to call the on input and when enumeration is complete. + + + + Produces the set union of multiple sequences, which includes duplicate elements. + + The type of the elements of the input sequences. + A set of whose elements form the union. + Flag to call the on all input when enumeration is complete. + + + + Used in ParallelForEachAsync<T> extension method + + + + + Constructor + + + + + Extensions methods for IEnumerable and IAsyncEnumerable to do parallel for-each loop in async-await manner + + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item, where first argument is the item and second argument is item's index in the collection + Maximum items to schedule processing in parallel. The actual concurrency level depends on TPL settings. Set to 0 to choose a default value based on processor count. + Set to True to stop processing items when first exception occurs. The result might contain several exceptions though when faulty tasks finish at the same time. + If True (the default behavior), waits on completion for all started tasks when the loop breaks due to cancellation or an exception + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item, where first argument is the item and second argument is item's index in the collection + Maximum items to schedule processing in parallel. The actual concurrency level depends on TPL settings. Set to 0 to choose a default value based on processor count. + Set to True to stop processing items when first exception occurs. The result might contain several exceptions though when faulty tasks finish at the same time. + If True (the default behavior), waits on completion for all started tasks when the loop breaks due to cancellation or an exception + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item, where first argument is the item and second argument is item's index in the collection + Maximum items to schedule processing in parallel. The actual concurrency level depends on TPL settings. Set to 0 to choose a default value based on processor count. + Set to True to stop processing items when first exception occurs. The result might contain several exceptions though when faulty tasks finish at the same time. + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item, where first argument is the item and second argument is item's index in the collection + Maximum items to schedule processing in parallel. The actual concurrency level depends on TPL settings. Set to 0 to choose a default value based on processor count. + Set to True to stop processing items when first exception occurs. The result might contain several exceptions though when faulty tasks finish at the same time. + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item, where first argument is the item and second argument is item's index in the collection + Maximum items to schedule processing in parallel. The actual concurrency level depends on TPL settings. Set to 0 to choose a default value based on processor count. + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item, where first argument is the item and second argument is item's index in the collection + Maximum items to schedule processing in parallel. The actual concurrency level depends on TPL settings. Set to 0 to choose a default value based on processor count. + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item, where first argument is the item and second argument is item's index in the collection + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item, where first argument is the item and second argument is item's index in the collection + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item + Maximum items to schedule processing in parallel. The actual concurrency level depends on TPL settings. Set to 0 to choose a default value based on processor count. + Set to True to stop processing items when first exception occurs. The result might contain several exceptions though when faulty tasks finish at the same time. + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item + Maximum items to schedule processing in parallel. The actual concurrency level depends on TPL settings. Set to 0 to choose a default value based on processor count. + Set to True to stop processing items when first exception occurs. The result might contain several exceptions though when faulty tasks finish at the same time. + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item + Maximum items to schedule processing in parallel. The actual concurrency level depends on TPL settings. Set to 0 to choose a default value based on processor count. + Set to True to stop processing items when first exception occurs. The result might contain several exceptions though when faulty tasks finish at the same time. + If True (the default behavior), waits on completion for all started tasks when the loop breaks due to cancellation or an exception + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item + Maximum items to schedule processing in parallel. The actual concurrency level depends on TPL settings. Set to 0 to choose a default value based on processor count. + Set to True to stop processing items when first exception occurs. The result might contain several exceptions though when faulty tasks finish at the same time. + If True (the default behavior), waits on completion for all started tasks when the loop breaks due to cancellation or an exception + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item + Maximum items to schedule processing in parallel. The actual concurrency level depends on TPL settings. Set to 0 to choose a default value based on processor count. + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item + Maximum items to schedule processing in parallel. The actual concurrency level depends on TPL settings. Set to 0 to choose a default value based on processor count. + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item, where first argument is the item and second argument is item's index in the collection + Maximum items to schedule processing in parallel. The actual concurrency level depends on TPL settings. Set to 0 to choose a default value based on processor count. + Set to True to stop processing items when first exception occurs. The result might contain several exceptions though when faulty tasks finish at the same time. + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item, where first argument is the item and second argument is item's index in the collection + Maximum items to schedule processing in parallel. The actual concurrency level depends on TPL settings. Set to 0 to choose a default value based on processor count. + Set to True to stop processing items when first exception occurs. The result might contain several exceptions though when faulty tasks finish at the same time. + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item, where first argument is the item and second argument is item's index in the collection + Maximum items to schedule processing in parallel. The actual concurrency level depends on TPL settings. Set to 0 to choose a default value based on processor count. + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item, where first argument is the item and second argument is item's index in the collection + Maximum items to schedule processing in parallel. The actual concurrency level depends on TPL settings. Set to 0 to choose a default value based on processor count. + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item, where first argument is the item and second argument is item's index in the collection + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item, where first argument is the item and second argument is item's index in the collection + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item + Maximum items to schedule processing in parallel. The actual concurrency level depends on TPL settings. Set to 0 to choose a default value based on processor count. + Set to True to stop processing items when first exception occurs. The result might contain several exceptions though when faulty tasks finish at the same time. + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item + Maximum items to schedule processing in parallel. The actual concurrency level depends on TPL settings. Set to 0 to choose a default value based on processor count. + Set to True to stop processing items when first exception occurs. The result might contain several exceptions though when faulty tasks finish at the same time. + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item + Maximum items to schedule processing in parallel. The actual concurrency level depends on TPL settings. Set to 0 to choose a default value based on processor count. + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item + Maximum items to schedule processing in parallel. The actual concurrency level depends on TPL settings. Set to 0 to choose a default value based on processor count. + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Invokes an asynchronous action on each item in the collection in parallel + + The type of an item + The collection of items to perform actions on + An asynchronous action to perform on the item + Cancellation token + Wraps any exception(s) that occurred inside + Thrown when the loop is canceled with + + + + Exposes an asynchronous enumerator, which supports a simple iteration over a non-generic collection + + + + + Creates an enumerator that iterates through a collection asynchronously + + A cancellation token to cancel creation of the enumerator in case if it takes a lot of time + Returns a task with the created enumerator as result on completion + + + + Supports a simple asynchronous iteration over a non-generic collection + + + + + Gets the current element in the collection. + + + + + Advances the enumerator to the next element of the collection asynchronously + + Returns a Task that does transition to the next element. The result of the task is True if the enumerator was successfully advanced to the next element, or False if the enumerator has passed the end of the collection. + + + + Internal base type for and + + + + + Utility methods for + + + + + Forcibly disables re-use of instances in the method. + This is just a safety switch in case when something goes wrong with re-using instances of . + + + + + Resets a to initial incomplete state. + This method by default re-uses the same instance of the by re-setting internal state of its using reflection. + If such feature is not available or explicitly disable with the method, it just returns a new instance of a . + + Type of the result value + Target to be reset or recreated. It's safe to pass null. + Optional state object that you pass into constructor. + + + diff --git a/bin/Release/Microsoft.Bcl.AsyncInterfaces.dll b/bin/Release/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100755 index 0000000..433ed54 Binary files /dev/null and b/bin/Release/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/bin/Release/Microsoft.Bcl.AsyncInterfaces.xml b/bin/Release/Microsoft.Bcl.AsyncInterfaces.xml new file mode 100755 index 0000000..cb1744f --- /dev/null +++ b/bin/Release/Microsoft.Bcl.AsyncInterfaces.xml @@ -0,0 +1,223 @@ + + + + Microsoft.Bcl.AsyncInterfaces + + + + Provides the core logic for implementing a manual-reset or . + + + + + The callback to invoke when the operation completes if was called before the operation completed, + or if the operation completed before a callback was supplied, + or null if a callback hasn't yet been provided and the operation hasn't yet completed. + + + + State to pass to . + + + to flow to the callback, or null if no flowing is required. + + + + A "captured" or with which to invoke the callback, + or null if no special context is required. + + + + Whether the current operation has completed. + + + The result with which the operation succeeded, or the default value if it hasn't yet completed or failed. + + + The exception with which the operation failed, or null if it hasn't yet completed or completed successfully. + + + The current version of this value, used to help prevent misuse. + + + Gets or sets whether to force continuations to run asynchronously. + Continuations may run asynchronously if this is false, but they'll never run synchronously if this is true. + + + Resets to prepare for the next operation. + + + Completes with a successful result. + The result. + + + Complets with an error. + + + + Gets the operation version. + + + Gets the status of the operation. + Opaque value that was provided to the 's constructor. + + + Gets the result of the operation. + Opaque value that was provided to the 's constructor. + + + Schedules the continuation action for this operation. + The continuation to invoke when the operation has completed. + The state object to pass to when it's invoked. + Opaque value that was provided to the 's constructor. + The flags describing the behavior of the continuation. + + + Ensures that the specified token matches the current version. + The token supplied by . + + + Signals that the operation has completed. Invoked after the result or error has been set. + + + + Invokes the continuation with the appropriate captured context / scheduler. + This assumes that if is not null we're already + running within that . + + + + Provides a set of static methods for configuring -related behaviors on asynchronous enumerables and disposables. + + + Configures how awaits on the tasks returned from an async disposable will be performed. + The source async disposable. + Whether to capture and marshal back to the current context. + The configured async disposable. + + + Configures how awaits on the tasks returned from an async iteration will be performed. + The type of the objects being iterated. + The source enumerable being iterated. + Whether to capture and marshal back to the current context. + The configured enumerable. + + + Sets the to be passed to when iterating. + The type of the objects being iterated. + The source enumerable being iterated. + The to use. + The configured enumerable. + + + Represents a builder for asynchronous iterators. + + + Creates an instance of the struct. + The initialized instance. + + + Invokes on the state machine while guarding the . + The type of the state machine. + The state machine instance, passed by reference. + + + Schedules the state machine to proceed to the next action when the specified awaiter completes. + The type of the awaiter. + The type of the state machine. + The awaiter. + The state machine. + + + Schedules the state machine to proceed to the next action when the specified awaiter completes. + The type of the awaiter. + The type of the state machine. + The awaiter. + The state machine. + + + Marks iteration as being completed, whether successfully or otherwise. + + + Gets an object that may be used to uniquely identify this builder to the debugger. + + + Indicates whether a method is an asynchronous iterator. + + + Initializes a new instance of the class. + The type object for the underlying state machine type that's used to implement a state machine method. + + + Provides a type that can be used to configure how awaits on an are performed. + + + Provides an awaitable async enumerable that enables cancelable iteration and configured awaits. + + + Configures how awaits on the tasks returned from an async iteration will be performed. + Whether to capture and marshal back to the current context. + The configured enumerable. + This will replace any previous value set by for this iteration. + + + Sets the to be passed to when iterating. + The to use. + The configured enumerable. + This will replace any previous set by for this iteration. + + + Provides an awaitable async enumerator that enables cancelable iteration and configured awaits. + + + Advances the enumerator asynchronously to the next element of the collection. + + A that will complete with a result of true + if the enumerator was successfully advanced to the next element, or false if the enumerator has + passed the end of the collection. + + + + Gets the element in the collection at the current position of the enumerator. + + + + Performs application-defined tasks associated with freeing, releasing, or + resetting unmanaged resources asynchronously. + + + + Exposes an enumerator that provides asynchronous iteration over values of a specified type. + The type of values to enumerate. + + + Returns an enumerator that iterates asynchronously through the collection. + A that may be used to cancel the asynchronous iteration. + An enumerator that can be used to iterate asynchronously through the collection. + + + Supports a simple asynchronous iteration over a generic collection. + The type of objects to enumerate. + + + Advances the enumerator asynchronously to the next element of the collection. + + A that will complete with a result of true if the enumerator + was successfully advanced to the next element, or false if the enumerator has passed the end + of the collection. + + + + Gets the element in the collection at the current position of the enumerator. + + + Provides a mechanism for releasing unmanaged resources asynchronously. + + + + Performs application-defined tasks associated with freeing, releasing, or + resetting unmanaged resources asynchronously. + + + + diff --git a/bin/Release/Microsoft.Win32.Primitives.dll b/bin/Release/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..8b69a69 Binary files /dev/null and b/bin/Release/Microsoft.Win32.Primitives.dll differ diff --git a/bin/Release/MimeTypesMap.dll b/bin/Release/MimeTypesMap.dll new file mode 100644 index 0000000..c7d1528 Binary files /dev/null and b/bin/Release/MimeTypesMap.dll differ diff --git a/bin/Release/Newtonsoft.Json.dll b/bin/Release/Newtonsoft.Json.dll new file mode 100644 index 0000000..7af125a Binary files /dev/null and b/bin/Release/Newtonsoft.Json.dll differ diff --git a/bin/Release/Newtonsoft.Json.xml b/bin/Release/Newtonsoft.Json.xml new file mode 100644 index 0000000..008e0ca --- /dev/null +++ b/bin/Release/Newtonsoft.Json.xml @@ -0,0 +1,11305 @@ + + + + Newtonsoft.Json + + + + + Represents a BSON Oid (object id). + + + + + Gets or sets the value of the Oid. + + The value of the Oid. + + + + Initializes a new instance of the class. + + The Oid value. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized BSON data. + + + + + Gets or sets a value indicating whether binary data reading should be compatible with incorrect Json.NET 3.5 written binary. + + + true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. + + + + + Gets or sets a value indicating whether the root object will be read as a JSON array. + + + true if the root object will be read as a JSON array; otherwise, false. + + + + + Gets or sets the used when reading values from BSON. + + The used when reading values from BSON. + + + + Initializes a new instance of the class. + + The containing the BSON data to read. + + + + Initializes a new instance of the class. + + The containing the BSON data to read. + + + + Initializes a new instance of the class. + + The containing the BSON data to read. + if set to true the root object will be read as a JSON array. + The used when reading values from BSON. + + + + Initializes a new instance of the class. + + The containing the BSON data to read. + if set to true the root object will be read as a JSON array. + The used when reading values from BSON. + + + + Reads the next JSON token from the underlying . + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Changes the reader's state to . + If is set to true, the underlying is also closed. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating BSON data. + + + + + Gets or sets the used when writing values to BSON. + When set to no conversion will occur. + + The used when writing values to BSON. + + + + Initializes a new instance of the class. + + The to write to. + + + + Initializes a new instance of the class. + + The to write to. + + + + Flushes whatever is in the buffer to the underlying and also flushes the underlying stream. + + + + + Writes the end. + + The token. + + + + Writes a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes the beginning of a JSON array. + + + + + Writes the beginning of a JSON object. + + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Closes this writer. + If is set to true, the underlying is also closed. + If is set to true, the JSON is auto-completed. + + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value that represents a BSON object id. + + The Object ID value to write. + + + + Writes a BSON regex. + + The regex pattern. + The regex options. + + + + Specifies how constructors are used when initializing objects during deserialization by the . + + + + + First attempt to use the public default constructor, then fall back to a single parameterized constructor, then to the non-public default constructor. + + + + + Json.NET will use a non-public default constructor before falling back to a parameterized constructor. + + + + + Converts a binary value to and from a base 64 string value. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Creates a custom object. + + The object type to convert. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Creates an object which will then be populated by the serializer. + + Type of the object. + The created object. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Provides a base class for converting a to and from JSON. + + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a F# discriminated union type to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an Entity Framework to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + + + + Converts a to and from the ISO 8601 date format (e.g. "2008-04-12T12:53Z"). + + + + + Gets or sets the date time styles used when converting a date to and from JSON. + + The date time styles used when converting a date to and from JSON. + + + + Gets or sets the date time format used when converting a date to and from JSON. + + The date time format used when converting a date to and from JSON. + + + + Gets or sets the culture used when converting a date to and from JSON. + + The culture used when converting a date to and from JSON. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Converts a to and from a JavaScript Date constructor (e.g. new Date(52231943)). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an to and from its name string value. + + + + + Gets or sets a value indicating whether the written enum text should be camel case. + The default value is false. + + true if the written enum text will be camel case; otherwise, false. + + + + Gets or sets the naming strategy used to resolve how enum text is written. + + The naming strategy used to resolve how enum text is written. + + + + Gets or sets a value indicating whether integer values are allowed when serializing and deserializing. + The default value is true. + + true if integers are allowed when serializing and deserializing; otherwise, false. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + true if the written enum text will be camel case; otherwise, false. + + + + Initializes a new instance of the class. + + The naming strategy used to resolve how enum text is written. + true if integers are allowed when serializing and deserializing; otherwise, false. + + + + Initializes a new instance of the class. + + The of the used to write enum text. + + + + Initializes a new instance of the class. + + The of the used to write enum text. + + The parameter list to use when constructing the described by . + If null, the default constructor is used. + When non-null, there must be a constructor defined in the that exactly matches the number, + order, and type of these parameters. + + + + + Initializes a new instance of the class. + + The of the used to write enum text. + + The parameter list to use when constructing the described by . + If null, the default constructor is used. + When non-null, there must be a constructor defined in the that exactly matches the number, + order, and type of these parameters. + + true if integers are allowed when serializing and deserializing; otherwise, false. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from Unix epoch time + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Converts a to and from a string (e.g. "1.2.3.4"). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts XML to and from JSON. + + + + + Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produced multiple root elements. + + The name of the deserialized root element. + + + + Gets or sets a value to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + true if the array attribute is written to the XML; otherwise, false. + + + + Gets or sets a value indicating whether to write the root JSON object. + + true if the JSON root object is omitted; otherwise, false. + + + + Gets or sets a value indicating whether to encode special characters when converting JSON to XML. + If true, special characters like ':', '@', '?', '#' and '$' in JSON property names aren't used to specify + XML namespaces, attributes or processing directives. Instead special characters are encoded and written + as part of the XML element name. + + true if special characters are encoded; otherwise, false. + + + + Writes the JSON representation of the object. + + The to write to. + The calling serializer. + The value. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Checks if the is a namespace attribute. + + Attribute name to test. + The attribute name prefix if it has one, otherwise an empty string. + true if attribute name is for a namespace attribute, otherwise false. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Specifies how dates are formatted when writing JSON text. + + + + + Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z". + + + + + Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/". + + + + + Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text. + + + + + Date formatted strings are not parsed to a date type and are read as strings. + + + + + Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . + + + + + Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . + + + + + Specifies how to treat the time value when converting between string and . + + + + + Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time. + + + + + Treat as a UTC. If the object represents a local time, it is converted to a UTC. + + + + + Treat as a local time if a is being converted to a string. + If a string is being converted to , convert to a local time if a time zone is specified. + + + + + Time zone information should be preserved when converting. + + + + + The default JSON name table implementation. + + + + + Initializes a new instance of the class. + + + + + Gets a string containing the same characters as the specified range of characters in the given array. + + The character array containing the name to find. + The zero-based index into the array specifying the first character of the name. + The number of characters in the name. + A string containing the same characters as the specified range of characters in the given array. + + + + Adds the specified string into name table. + + The string to add. + This method is not thread-safe. + The resolved string. + + + + Specifies default value handling options for the . + + + + + + + + + Include members where the member value is the same as the member's default value when serializing objects. + Included members are written to JSON. Has no effect when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + so that it is not written to JSON. + This option will ignore all default values (e.g. null for objects and nullable types; 0 for integers, + decimals and floating point numbers; and false for booleans). The default value ignored can be changed by + placing the on the property. + + + + + Members with a default value but no JSON will be set to their default value when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + and set members to their default value when deserializing. + + + + + Specifies float format handling options when writing special floating point numbers, e.g. , + and with . + + + + + Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity". + + + + + Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity. + Note that this will produce non-valid JSON. + + + + + Write special floating point values as the property's default value in JSON, e.g. 0.0 for a property, null for a of property. + + + + + Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Floating point numbers are parsed to . + + + + + Floating point numbers are parsed to . + + + + + Specifies formatting options for the . + + + + + No special formatting is applied. This is the default. + + + + + Causes child objects to be indented according to the and settings. + + + + + Provides an interface for using pooled arrays. + + The array type content. + + + + Rent an array from the pool. This array must be returned when it is no longer needed. + + The minimum required length of the array. The returned array may be longer. + The rented array from the pool. This array must be returned when it is no longer needed. + + + + Return an array to the pool. + + The array that is being returned. + + + + Provides an interface to enable a class to return line and position information. + + + + + Gets a value indicating whether the class can return line information. + + + true if and can be provided; otherwise, false. + + + + + Gets the current line number. + + The current line number or 0 if no line information is available (for example, when returns false). + + + + Gets the current line position. + + The current line position or 0 if no line information is available (for example, when returns false). + + + + Instructs the how to serialize the collection. + + + + + Gets or sets a value indicating whether null items are allowed in the collection. + + true if null items are allowed in the collection; otherwise, false. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with a flag indicating whether the array can contain null items. + + A flag indicating whether the array can contain null items. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Instructs the to use the specified constructor when deserializing that object. + + + + + Instructs the how to serialize the object. + + + + + Gets or sets the id. + + The id. + + + + Gets or sets the title. + + The title. + + + + Gets or sets the description. + + The description. + + + + Gets or sets the collection's items converter. + + The collection's items converter. + + + + The parameter list to use when constructing the described by . + If null, the default constructor is used. + When non-null, there must be a constructor defined in the that exactly matches the number, + order, and type of these parameters. + + + + [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] + + + + + + Gets or sets the of the . + + The of the . + + + + The parameter list to use when constructing the described by . + If null, the default constructor is used. + When non-null, there must be a constructor defined in the that exactly matches the number, + order, and type of these parameters. + + + + [JsonContainer(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })] + + + + + + Gets or sets a value that indicates whether to preserve object references. + + + true to keep object reference; otherwise, false. The default is false. + + + + + Gets or sets a value that indicates whether to preserve collection's items references. + + + true to keep collection's items object references; otherwise, false. The default is false. + + + + + Gets or sets the reference loop handling used when serializing the collection's items. + + The reference loop handling. + + + + Gets or sets the type name handling used when serializing the collection's items. + + The type name handling. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Provides methods for converting between .NET types and JSON types. + + + + + + + + Gets or sets a function that creates default . + Default settings are automatically used by serialization methods on , + and and on . + To serialize without using any default settings create a with + . + + + + + Represents JavaScript's boolean value true as a string. This field is read-only. + + + + + Represents JavaScript's boolean value false as a string. This field is read-only. + + + + + Represents JavaScript's null as a string. This field is read-only. + + + + + Represents JavaScript's undefined as a string. This field is read-only. + + + + + Represents JavaScript's positive infinity as a string. This field is read-only. + + + + + Represents JavaScript's negative infinity as a string. This field is read-only. + + + + + Represents JavaScript's NaN as a string. This field is read-only. + + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation using the specified. + + The value to convert. + The format the date will be converted to. + The time zone handling when the date is converted to a string. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation using the specified. + + The value to convert. + The format the date will be converted to. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + The string delimiter character. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + The string delimiter character. + The string escape handling. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Serializes the specified object to a JSON string. + + The object to serialize. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using formatting. + + The object to serialize. + Indicates how the output should be formatted. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + A collection of converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using formatting and a collection of . + + The object to serialize. + Indicates how the output should be formatted. + A collection of converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using . + + The object to serialize. + The used to serialize the object. + If this is null, default serialization settings will be used. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a type, formatting and . + + The object to serialize. + The used to serialize the object. + If this is null, default serialization settings will be used. + + The type of the value being serialized. + This parameter is used when is to write out the type name if the type of the value does not match. + Specifying the type is optional. + + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using formatting and . + + The object to serialize. + Indicates how the output should be formatted. + The used to serialize the object. + If this is null, default serialization settings will be used. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a type, formatting and . + + The object to serialize. + Indicates how the output should be formatted. + The used to serialize the object. + If this is null, default serialization settings will be used. + + The type of the value being serialized. + This parameter is used when is to write out the type name if the type of the value does not match. + Specifying the type is optional. + + + A JSON string representation of the object. + + + + + Deserializes the JSON to a .NET object. + + The JSON to deserialize. + The deserialized object from the JSON string. + + + + Deserializes the JSON to a .NET object using . + + The JSON to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The JSON to deserialize. + The of object being deserialized. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The type of the object to deserialize to. + The JSON to deserialize. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the given anonymous type. + + + The anonymous type to deserialize to. This can't be specified + traditionally and must be inferred from the anonymous type passed + as a parameter. + + The JSON to deserialize. + The anonymous type object. + The deserialized anonymous type from the JSON string. + + + + Deserializes the JSON to the given anonymous type using . + + + The anonymous type to deserialize to. This can't be specified + traditionally and must be inferred from the anonymous type passed + as a parameter. + + The JSON to deserialize. + The anonymous type object. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized anonymous type from the JSON string. + + + + Deserializes the JSON to the specified .NET type using a collection of . + + The type of the object to deserialize to. + The JSON to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using . + + The type of the object to deserialize to. + The object to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using a collection of . + + The JSON to deserialize. + The type of the object to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using . + + The JSON to deserialize. + The type of the object to deserialize to. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized object from the JSON string. + + + + Populates the object with values from the JSON string. + + The JSON to populate values from. + The target object to populate values onto. + + + + Populates the object with values from the JSON string using . + + The JSON to populate values from. + The target object to populate values onto. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + + + + Serializes the to a JSON string. + + The node to serialize. + A JSON string of the . + + + + Serializes the to a JSON string using formatting. + + The node to serialize. + Indicates how the output should be formatted. + A JSON string of the . + + + + Serializes the to a JSON string using formatting and omits the root object if is true. + + The node to serialize. + Indicates how the output should be formatted. + Omits writing the root object. + A JSON string of the . + + + + Deserializes the from a JSON string. + + The JSON string. + The deserialized . + + + + Deserializes the from a JSON string nested in a root element specified by . + + The JSON string. + The name of the root element to append when deserializing. + The deserialized . + + + + Deserializes the from a JSON string nested in a root element specified by + and writes a Json.NET array attribute for collections. + + The JSON string. + The name of the root element to append when deserializing. + + A value to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + The deserialized . + + + + Deserializes the from a JSON string nested in a root element specified by , + writes a Json.NET array attribute for collections, and encodes special characters. + + The JSON string. + The name of the root element to append when deserializing. + + A value to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + + A value to indicate whether to encode special characters when converting JSON to XML. + If true, special characters like ':', '@', '?', '#' and '$' in JSON property names aren't used to specify + XML namespaces, attributes or processing directives. Instead special characters are encoded and written + as part of the XML element name. + + The deserialized . + + + + Serializes the to a JSON string. + + The node to convert to JSON. + A JSON string of the . + + + + Serializes the to a JSON string using formatting. + + The node to convert to JSON. + Indicates how the output should be formatted. + A JSON string of the . + + + + Serializes the to a JSON string using formatting and omits the root object if is true. + + The node to serialize. + Indicates how the output should be formatted. + Omits writing the root object. + A JSON string of the . + + + + Deserializes the from a JSON string. + + The JSON string. + The deserialized . + + + + Deserializes the from a JSON string nested in a root element specified by . + + The JSON string. + The name of the root element to append when deserializing. + The deserialized . + + + + Deserializes the from a JSON string nested in a root element specified by + and writes a Json.NET array attribute for collections. + + The JSON string. + The name of the root element to append when deserializing. + + A value to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + The deserialized . + + + + Deserializes the from a JSON string nested in a root element specified by , + writes a Json.NET array attribute for collections, and encodes special characters. + + The JSON string. + The name of the root element to append when deserializing. + + A value to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + + A value to indicate whether to encode special characters when converting JSON to XML. + If true, special characters like ':', '@', '?', '#' and '$' in JSON property names aren't used to specify + XML namespaces, attributes or processing directives. Instead special characters are encoded and written + as part of the XML element name. + + The deserialized . + + + + Converts an object to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can read JSON. + + true if this can read JSON; otherwise, false. + + + + Gets a value indicating whether this can write JSON. + + true if this can write JSON; otherwise, false. + + + + Converts an object to and from JSON. + + The object type to convert. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. If there is no existing value then null will be used. + The existing value has a value. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Instructs the to use the specified when serializing the member or class. + + + + + Gets the of the . + + The of the . + + + + The parameter list to use when constructing the described by . + If null, the default constructor is used. + + + + + Initializes a new instance of the class. + + Type of the . + + + + Initializes a new instance of the class. + + Type of the . + Parameter list to use when constructing the . Can be null. + + + + Represents a collection of . + + + + + Instructs the how to serialize the collection. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + The exception thrown when an error occurs during JSON serialization or deserialization. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or null if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Instructs the to deserialize properties with no matching class member into the specified collection + and write values during serialization. + + + + + Gets or sets a value that indicates whether to write extension data when serializing the object. + + + true to write extension data when serializing the object; otherwise, false. The default is true. + + + + + Gets or sets a value that indicates whether to read extension data when deserializing the object. + + + true to read extension data when deserializing the object; otherwise, false. The default is true. + + + + + Initializes a new instance of the class. + + + + + Instructs the not to serialize the public field or public read/write property value. + + + + + Base class for a table of atomized string objects. + + + + + Gets a string containing the same characters as the specified range of characters in the given array. + + The character array containing the name to find. + The zero-based index into the array specifying the first character of the name. + The number of characters in the name. + A string containing the same characters as the specified range of characters in the given array. + + + + Instructs the how to serialize the object. + + + + + Gets or sets the member serialization. + + The member serialization. + + + + Gets or sets the missing member handling used when deserializing this object. + + The missing member handling. + + + + Gets or sets how the object's properties with null values are handled during serialization and deserialization. + + How the object's properties with null values are handled during serialization and deserialization. + + + + Gets or sets a value that indicates whether the object's properties are required. + + + A value indicating whether the object's properties are required. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified member serialization. + + The member serialization. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Instructs the to always serialize the member with the specified name. + + + + + Gets or sets the type used when serializing the property's collection items. + + The collection's items type. + + + + The parameter list to use when constructing the described by . + If null, the default constructor is used. + When non-null, there must be a constructor defined in the that exactly matches the number, + order, and type of these parameters. + + + + [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] + + + + + + Gets or sets the of the . + + The of the . + + + + The parameter list to use when constructing the described by . + If null, the default constructor is used. + When non-null, there must be a constructor defined in the that exactly matches the number, + order, and type of these parameters. + + + + [JsonProperty(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })] + + + + + + Gets or sets the null value handling used when serializing this property. + + The null value handling. + + + + Gets or sets the default value handling used when serializing this property. + + The default value handling. + + + + Gets or sets the reference loop handling used when serializing this property. + + The reference loop handling. + + + + Gets or sets the object creation handling used when deserializing this property. + + The object creation handling. + + + + Gets or sets the type name handling used when serializing this property. + + The type name handling. + + + + Gets or sets whether this property's value is serialized as a reference. + + Whether this property's value is serialized as a reference. + + + + Gets or sets the order of serialization of a member. + + The numeric order of serialization. + + + + Gets or sets a value indicating whether this property is required. + + + A value indicating whether this property is required. + + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the reference loop handling used when serializing the property's collection items. + + The collection's items reference loop handling. + + + + Gets or sets the type name handling used when serializing the property's collection items. + + The collection's items type name handling. + + + + Gets or sets whether this property's collection items are serialized as a reference. + + Whether this property's collection items are serialized as a reference. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified name. + + Name of the property. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. + + + + + Asynchronously reads the next JSON token from the source. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns true if the next token was read successfully; false if there are no more tokens to read. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously skips the children of the current token. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously reads the next JSON token from the source as a []. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the []. This result will be null at the end of an array. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously reads the next JSON token from the source as a . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the . This result will be null at the end of an array. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Specifies the state of the reader. + + + + + A read method has not been called. + + + + + The end of the file has been reached successfully. + + + + + Reader is at a property. + + + + + Reader is at the start of an object. + + + + + Reader is in an object. + + + + + Reader is at the start of an array. + + + + + Reader is in an array. + + + + + The method has been called. + + + + + Reader has just read a value. + + + + + Reader is at the start of a constructor. + + + + + Reader is in a constructor. + + + + + An error occurred that prevents the read operation from continuing. + + + + + The end of the file has been reached successfully. + + + + + Gets the current reader state. + + The current reader state. + + + + Gets or sets a value indicating whether the source should be closed when this reader is closed. + + + true to close the source when this reader is closed; otherwise false. The default is true. + + + + + Gets or sets a value indicating whether multiple pieces of JSON content can + be read from a continuous stream without erroring. + + + true to support reading multiple pieces of JSON content; otherwise false. + The default is false. + + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + Gets or sets how time zones are handled when reading JSON. + + + + + Gets or sets how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + + + + + Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Gets or sets how custom date formatted strings are parsed when reading JSON. + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + A null value means there is no maximum. + The default value is 128. + + + + + Gets the type of the current JSON token. + + + + + Gets the text value of the current JSON token. + + + + + Gets the .NET type for the current JSON token. + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Gets the path of the current JSON token. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Initializes a new instance of the class. + + + + + Reads the next JSON token from the source. + + true if the next token was read successfully; false if there are no more tokens to read. + + + + Reads the next JSON token from the source as a of . + + A of . This method will return null at the end of an array. + + + + Reads the next JSON token from the source as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the source as a []. + + A [] or null if the next JSON token is null. This method will return null at the end of an array. + + + + Reads the next JSON token from the source as a of . + + A of . This method will return null at the end of an array. + + + + Reads the next JSON token from the source as a of . + + A of . This method will return null at the end of an array. + + + + Reads the next JSON token from the source as a of . + + A of . This method will return null at the end of an array. + + + + Reads the next JSON token from the source as a of . + + A of . This method will return null at the end of an array. + + + + Reads the next JSON token from the source as a of . + + A of . This method will return null at the end of an array. + + + + Skips the children of the current token. + + + + + Sets the current token. + + The new token. + + + + Sets the current token and value. + + The new token. + The value. + + + + Sets the current token and value. + + The new token. + The value. + A flag indicating whether the position index inside an array should be updated. + + + + Sets the state based on current token type. + + + + + Releases unmanaged and - optionally - managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Changes the reader's state to . + If is set to true, the source is also closed. + + + + + The exception thrown when an error occurs while reading JSON text. + + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or null if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Initializes a new instance of the class + with a specified error message, JSON path, line number, line position, and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The path to the JSON where the error occurred. + The line number indicating where the error occurred. + The line position indicating where the error occurred. + The exception that is the cause of the current exception, or null if no inner exception is specified. + + + + Instructs the to always serialize the member, and to require that the member has a value. + + + + + The exception thrown when an error occurs during JSON serialization or deserialization. + + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or null if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Initializes a new instance of the class + with a specified error message, JSON path, line number, line position, and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The path to the JSON where the error occurred. + The line number indicating where the error occurred. + The line position indicating where the error occurred. + The exception that is the cause of the current exception, or null if no inner exception is specified. + + + + Serializes and deserializes objects into and from the JSON format. + The enables you to control how objects are encoded into JSON. + + + + + Occurs when the errors during serialization and deserialization. + + + + + Gets or sets the used by the serializer when resolving references. + + + + + Gets or sets the used by the serializer when resolving type names. + + + + + Gets or sets the used by the serializer when resolving type names. + + + + + Gets or sets the used by the serializer when writing trace messages. + + The trace writer. + + + + Gets or sets the equality comparer used by the serializer when comparing references. + + The equality comparer. + + + + Gets or sets how type name writing and reading is handled by the serializer. + The default value is . + + + should be used with caution when your application deserializes JSON from an external source. + Incoming types should be validated with a custom + when deserializing with a value other than . + + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + The default value is . + + The type name assembly format. + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + The default value is . + + The type name assembly format. + + + + Gets or sets how object references are preserved by the serializer. + The default value is . + + + + + Gets or sets how reference loops (e.g. a class referencing itself) is handled. + The default value is . + + + + + Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + The default value is . + + + + + Gets or sets how null values are handled during serialization and deserialization. + The default value is . + + + + + Gets or sets how default values are handled during serialization and deserialization. + The default value is . + + + + + Gets or sets how objects are created during deserialization. + The default value is . + + The object creation handling. + + + + Gets or sets how constructors are used during deserialization. + The default value is . + + The constructor handling. + + + + Gets or sets how metadata properties are used during deserialization. + The default value is . + + The metadata properties handling. + + + + Gets a collection that will be used during serialization. + + Collection that will be used during serialization. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Indicates how JSON text output is formatted. + The default value is . + + + + + Gets or sets how dates are written to JSON text. + The default value is . + + + + + Gets or sets how time zones are handled during serialization and deserialization. + The default value is . + + + + + Gets or sets how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + The default value is . + + + + + Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + The default value is . + + + + + Gets or sets how special floating point numbers, e.g. , + and , + are written as JSON text. + The default value is . + + + + + Gets or sets how strings are escaped when writing JSON text. + The default value is . + + + + + Gets or sets how and values are formatted when writing JSON text, + and the expected date format when reading JSON text. + The default value is "yyyy'-'MM'-'dd'T'HH':'mm':'ss.FFFFFFFK". + + + + + Gets or sets the culture used when reading JSON. + The default value is . + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + A null value means there is no maximum. + The default value is 128. + + + + + Gets a value indicating whether there will be a check for additional JSON content after deserializing an object. + The default value is false. + + + true if there will be a check for additional JSON content after deserializing an object; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Creates a new instance. + The will not use default settings + from . + + + A new instance. + The will not use default settings + from . + + + + + Creates a new instance using the specified . + The will not use default settings + from . + + The settings to be applied to the . + + A new instance using the specified . + The will not use default settings + from . + + + + + Creates a new instance. + The will use default settings + from . + + + A new instance. + The will use default settings + from . + + + + + Creates a new instance using the specified . + The will use default settings + from as well as the specified . + + The settings to be applied to the . + + A new instance using the specified . + The will use default settings + from as well as the specified . + + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to read values from. + The target object to populate values onto. + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to read values from. + The target object to populate values onto. + + + + Deserializes the JSON structure contained by the specified . + + The that contains the JSON structure to deserialize. + The being deserialized. + + + + Deserializes the JSON structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Deserializes the JSON structure contained by the specified + into an instance of the specified type. + + The containing the object. + The type of the object to deserialize. + The instance of being deserialized. + + + + Deserializes the JSON structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Serializes the specified and writes the JSON structure + using the specified . + + The used to write the JSON structure. + The to serialize. + + + + Serializes the specified and writes the JSON structure + using the specified . + + The used to write the JSON structure. + The to serialize. + + The type of the value being serialized. + This parameter is used when is to write out the type name if the type of the value does not match. + Specifying the type is optional. + + + + + Serializes the specified and writes the JSON structure + using the specified . + + The used to write the JSON structure. + The to serialize. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifying the type is optional. + + + + + Serializes the specified and writes the JSON structure + using the specified . + + The used to write the JSON structure. + The to serialize. + + + + Specifies the settings on a object. + + + + + Gets or sets how reference loops (e.g. a class referencing itself) are handled. + The default value is . + + Reference loop handling. + + + + Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + The default value is . + + Missing member handling. + + + + Gets or sets how objects are created during deserialization. + The default value is . + + The object creation handling. + + + + Gets or sets how null values are handled during serialization and deserialization. + The default value is . + + Null value handling. + + + + Gets or sets how default values are handled during serialization and deserialization. + The default value is . + + The default value handling. + + + + Gets or sets a collection that will be used during serialization. + + The converters. + + + + Gets or sets how object references are preserved by the serializer. + The default value is . + + The preserve references handling. + + + + Gets or sets how type name writing and reading is handled by the serializer. + The default value is . + + + should be used with caution when your application deserializes JSON from an external source. + Incoming types should be validated with a custom + when deserializing with a value other than . + + The type name handling. + + + + Gets or sets how metadata properties are used during deserialization. + The default value is . + + The metadata properties handling. + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + The default value is . + + The type name assembly format. + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + The default value is . + + The type name assembly format. + + + + Gets or sets how constructors are used during deserialization. + The default value is . + + The constructor handling. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + The contract resolver. + + + + Gets or sets the equality comparer used by the serializer when comparing references. + + The equality comparer. + + + + Gets or sets the used by the serializer when resolving references. + + The reference resolver. + + + + Gets or sets a function that creates the used by the serializer when resolving references. + + A function that creates the used by the serializer when resolving references. + + + + Gets or sets the used by the serializer when writing trace messages. + + The trace writer. + + + + Gets or sets the used by the serializer when resolving type names. + + The binder. + + + + Gets or sets the used by the serializer when resolving type names. + + The binder. + + + + Gets or sets the error handler called during serialization and deserialization. + + The error handler called during serialization and deserialization. + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Gets or sets how and values are formatted when writing JSON text, + and the expected date format when reading JSON text. + The default value is "yyyy'-'MM'-'dd'T'HH':'mm':'ss.FFFFFFFK". + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + A null value means there is no maximum. + The default value is 128. + + + + + Indicates how JSON text output is formatted. + The default value is . + + + + + Gets or sets how dates are written to JSON text. + The default value is . + + + + + Gets or sets how time zones are handled during serialization and deserialization. + The default value is . + + + + + Gets or sets how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + The default value is . + + + + + Gets or sets how special floating point numbers, e.g. , + and , + are written as JSON. + The default value is . + + + + + Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + The default value is . + + + + + Gets or sets how strings are escaped when writing JSON text. + The default value is . + + + + + Gets or sets the culture used when reading JSON. + The default value is . + + + + + Gets a value indicating whether there will be a check for additional content after deserializing an object. + The default value is false. + + + true if there will be a check for additional content after deserializing an object; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Represents a reader that provides fast, non-cached, forward-only access to JSON text data. + + + + + Asynchronously reads the next JSON token from the source. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns true if the next token was read successfully; false if there are no more tokens to read. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously reads the next JSON token from the source as a []. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the []. This result will be null at the end of an array. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously reads the next JSON token from the source as a . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the . This result will be null at the end of an array. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Initializes a new instance of the class with the specified . + + The containing the JSON data to read. + + + + Gets or sets the reader's property name table. + + + + + Gets or sets the reader's character buffer pool. + + + + + Reads the next JSON token from the underlying . + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Reads the next JSON token from the underlying as a of . + + A of . This method will return null at the end of an array. + + + + Reads the next JSON token from the underlying as a of . + + A of . This method will return null at the end of an array. + + + + Reads the next JSON token from the underlying as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the underlying as a []. + + A [] or null if the next JSON token is null. This method will return null at the end of an array. + + + + Reads the next JSON token from the underlying as a of . + + A of . This method will return null at the end of an array. + + + + Reads the next JSON token from the underlying as a of . + + A of . This method will return null at the end of an array. + + + + Reads the next JSON token from the underlying as a of . + + A of . This method will return null at the end of an array. + + + + Reads the next JSON token from the underlying as a of . + + A of . This method will return null at the end of an array. + + + + Changes the reader's state to . + If is set to true, the underlying is also closed. + + + + + Gets a value indicating whether the class can return line information. + + + true if and can be provided; otherwise, false. + + + + + Gets the current line number. + + + The current line number or 0 if no line information is available (for example, returns false). + + + + + Gets the current line position. + + + The current line position or 0 if no line information is available (for example, returns false). + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Asynchronously flushes whatever is in the buffer to the destination and also flushes the destination. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the JSON value delimiter. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the specified end token. + + The end token to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously closes this writer. + If is set to true, the destination is also closed. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the end of the current JSON object or array. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes indent characters. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes an indent space. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes raw JSON without changing the writer's state. + + The raw JSON to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a null value. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the property name of a name/value pair of a JSON object. + + The name of the property. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the property name of a name/value pair of a JSON object. + + The name of the property. + A flag to indicate whether the text should be escaped when it is written as a JSON property name. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the beginning of a JSON array. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the beginning of a JSON object. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the start of a constructor with the given name. + + The name of the constructor. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes an undefined value. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the given white space. + + The string of white space characters. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a [] value. + + The [] value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a comment /*...*/ containing the specified text. + + Text to place inside the comment. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the end of an array. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the end of a constructor. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the end of a JSON object. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Gets or sets the writer's character array pool. + + + + + Gets or sets how many s to write for each level in the hierarchy when is set to . + + + + + Gets or sets which character to use to quote attribute values. + + + + + Gets or sets which character to use for indenting when is set to . + + + + + Gets or sets a value indicating whether object names will be surrounded with quotes. + + + + + Initializes a new instance of the class using the specified . + + The to write to. + + + + Flushes whatever is in the buffer to the underlying and also flushes the underlying . + + + + + Closes this writer. + If is set to true, the underlying is also closed. + If is set to true, the JSON is auto-completed. + + + + + Writes the beginning of a JSON object. + + + + + Writes the beginning of a JSON array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the specified end token. + + The end token to write. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + A flag to indicate whether the text should be escaped when it is written as a JSON property name. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a value. + + The value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes the given white space. + + The string of white space characters. + + + + Specifies the type of JSON token. + + + + + This is returned by the if a read method has not been called. + + + + + An object start token. + + + + + An array start token. + + + + + A constructor start token. + + + + + An object property name. + + + + + A comment. + + + + + Raw JSON. + + + + + An integer. + + + + + A float. + + + + + A string. + + + + + A boolean. + + + + + A null token. + + + + + An undefined token. + + + + + An object end token. + + + + + An array end token. + + + + + A constructor end token. + + + + + A Date. + + + + + Byte data. + + + + + + Represents a reader that provides validation. + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + + + + Sets an event handler for receiving schema validation errors. + + + + + Gets the text value of the current JSON token. + + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Gets the path of the current JSON token. + + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + + Gets the type of the current JSON token. + + + + + + Gets the .NET type for the current JSON token. + + + + + + Initializes a new instance of the class that + validates the content returned from the given . + + The to read from while validating. + + + + Gets or sets the schema. + + The schema. + + + + Gets the used to construct this . + + The specified in the constructor. + + + + Changes the reader's state to . + If is set to true, the underlying is also closed. + + + + + Reads the next JSON token from the underlying as a of . + + A of . + + + + Reads the next JSON token from the underlying as a []. + + + A [] or null if the next JSON token is null. + + + + + Reads the next JSON token from the underlying as a of . + + A of . + + + + Reads the next JSON token from the underlying as a of . + + A of . + + + + Reads the next JSON token from the underlying as a of . + + A of . + + + + Reads the next JSON token from the underlying as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the underlying as a of . + + A of . This method will return null at the end of an array. + + + + Reads the next JSON token from the underlying as a of . + + A of . + + + + Reads the next JSON token from the underlying . + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Asynchronously closes this writer. + If is set to true, the destination is also closed. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously flushes whatever is in the buffer to the destination and also flushes the destination. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the specified end token. + + The end token to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes indent characters. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the JSON value delimiter. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes an indent space. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes raw JSON without changing the writer's state. + + The raw JSON to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the end of the current JSON object or array. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the end of an array. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the end of a constructor. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the end of a JSON object. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a null value. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the property name of a name/value pair of a JSON object. + + The name of the property. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the property name of a name/value pair of a JSON object. + + The name of the property. + A flag to indicate whether the text should be escaped when it is written as a JSON property name. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the beginning of a JSON array. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a comment /*...*/ containing the specified text. + + Text to place inside the comment. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the start of a constructor with the given name. + + The name of the constructor. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the beginning of a JSON object. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the current token. + + The to read the token from. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the current token. + + The to read the token from. + A flag indicating whether the current token's children should be written. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the token and its value. + + The to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the token and its value. + + The to write. + + The value to write. + A value is only required for tokens that have an associated value, e.g. the property name for . + null can be passed to the method for tokens that don't have a value, e.g. . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a [] value. + + The [] value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes an undefined value. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the given white space. + + The string of white space characters. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously ets the state of the . + + The being written. + The value being written. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Gets or sets a value indicating whether the destination should be closed when this writer is closed. + + + true to close the destination when this writer is closed; otherwise false. The default is true. + + + + + Gets or sets a value indicating whether the JSON should be auto-completed when this writer is closed. + + + true to auto-complete the JSON when this writer is closed; otherwise false. The default is true. + + + + + Gets the top. + + The top. + + + + Gets the state of the writer. + + + + + Gets the path of the writer. + + + + + Gets or sets a value indicating how JSON text output should be formatted. + + + + + Gets or sets how dates are written to JSON text. + + + + + Gets or sets how time zones are handled when writing JSON text. + + + + + Gets or sets how strings are escaped when writing JSON text. + + + + + Gets or sets how special floating point numbers, e.g. , + and , + are written to JSON text. + + + + + Gets or sets how and values are formatted when writing JSON text. + + + + + Gets or sets the culture used when writing JSON. Defaults to . + + + + + Initializes a new instance of the class. + + + + + Flushes whatever is in the buffer to the destination and also flushes the destination. + + + + + Closes this writer. + If is set to true, the destination is also closed. + If is set to true, the JSON is auto-completed. + + + + + Writes the beginning of a JSON object. + + + + + Writes the end of a JSON object. + + + + + Writes the beginning of a JSON array. + + + + + Writes the end of an array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end constructor. + + + + + Writes the property name of a name/value pair of a JSON object. + + The name of the property. + + + + Writes the property name of a name/value pair of a JSON object. + + The name of the property. + A flag to indicate whether the text should be escaped when it is written as a JSON property name. + + + + Writes the end of the current JSON object or array. + + + + + Writes the current token and its children. + + The to read the token from. + + + + Writes the current token. + + The to read the token from. + A flag indicating whether the current token's children should be written. + + + + Writes the token and its value. + + The to write. + + The value to write. + A value is only required for tokens that have an associated value, e.g. the property name for . + null can be passed to the method for tokens that don't have a value, e.g. . + + + + + Writes the token. + + The to write. + + + + Writes the specified end token. + + The end token to write. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON without changing the writer's state. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes the given white space. + + The string of white space characters. + + + + Releases unmanaged and - optionally - managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Sets the state of the . + + The being written. + The value being written. + + + + The exception thrown when an error occurs while writing JSON text. + + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or null if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Initializes a new instance of the class + with a specified error message, JSON path and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The path to the JSON where the error occurred. + The exception that is the cause of the current exception, or null if no inner exception is specified. + + + + Specifies how JSON comments are handled when loading JSON. + + + + + Ignore comments. + + + + + Load comments as a with type . + + + + + Specifies how duplicate property names are handled when loading JSON. + + + + + Replace the existing value when there is a duplicate property. The value of the last property in the JSON object will be used. + + + + + Ignore the new value when there is a duplicate property. The value of the first property in the JSON object will be used. + + + + + Throw a when a duplicate property is encountered. + + + + + Contains the LINQ to JSON extension methods. + + + + + Returns a collection of tokens that contains the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the ancestors of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, the ancestors of every token in the source collection. + + + + Returns a collection of tokens that contains the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the descendants of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, and the descendants of every token in the source collection. + + + + Returns a collection of child properties of every object in the source collection. + + An of that contains the source collection. + An of that contains the properties of every object in the source collection. + + + + Returns a collection of child values of every object in the source collection with the given key. + + An of that contains the source collection. + The token key. + An of that contains the values of every token in the source collection with the given key. + + + + Returns a collection of child values of every object in the source collection. + + An of that contains the source collection. + An of that contains the values of every token in the source collection. + + + + Returns a collection of converted child values of every object in the source collection with the given key. + + The type to convert the values to. + An of that contains the source collection. + The token key. + An that contains the converted values of every token in the source collection with the given key. + + + + Returns a collection of converted child values of every object in the source collection. + + The type to convert the values to. + An of that contains the source collection. + An that contains the converted values of every token in the source collection. + + + + Converts the value. + + The type to convert the value to. + A cast as a of . + A converted value. + + + + Converts the value. + + The source collection type. + The type to convert the value to. + A cast as a of . + A converted value. + + + + Returns a collection of child tokens of every array in the source collection. + + The source collection type. + An of that contains the source collection. + An of that contains the values of every token in the source collection. + + + + Returns a collection of converted child tokens of every array in the source collection. + + An of that contains the source collection. + The type to convert the values to. + The source collection type. + An that contains the converted values of every token in the source collection. + + + + Returns the input typed as . + + An of that contains the source collection. + The input typed as . + + + + Returns the input typed as . + + The source collection type. + An of that contains the source collection. + The input typed as . + + + + Represents a collection of objects. + + The type of token. + + + + Gets the of with the specified key. + + + + + + Represents a JSON array. + + + + + + + + Writes this token to a asynchronously. + + A into which this method will write. + The token to monitor for cancellation requests. + A collection of which will be used when writing the token. + A that represents the asynchronous write operation. + + + + Asynchronously loads a from a . + + A that will be read for the content of the . + If this is null, default load settings will be used. + The token to monitor for cancellation requests. The default value is . + A representing the asynchronous load. The property contains the JSON that was read from the specified . + + + + Asynchronously loads a from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + The token to monitor for cancellation requests. The default value is . + A representing the asynchronous load. The property contains the JSON that was read from the specified . + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets the node type for this . + + The type. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads an from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + + + + Load a from a string that contains JSON. + + A that contains JSON. + The used to load the JSON. + If this is null, default load settings will be used. + A populated from the string that contains JSON. + + + + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object. + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the at the specified index. + + + + + + Determines the index of a specific item in the . + + The object to locate in the . + + The index of if found in the list; otherwise, -1. + + + + + Inserts an item to the at the specified index. + + The zero-based index at which should be inserted. + The object to insert into the . + + is not a valid index in the . + + + + + Removes the item at the specified index. + + The zero-based index of the item to remove. + + is not a valid index in the . + + + + + Returns an enumerator that iterates through the collection. + + + A of that can be used to iterate through the collection. + + + + + Adds an item to the . + + The object to add to the . + + + + Removes all items from the . + + + + + Determines whether the contains a specific value. + + The object to locate in the . + + true if is found in the ; otherwise, false. + + + + + Copies the elements of the to an array, starting at a particular array index. + + The array. + Index of the array. + + + + Gets a value indicating whether the is read-only. + + true if the is read-only; otherwise, false. + + + + Removes the first occurrence of a specific object from the . + + The object to remove from the . + + true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . + + + + + Represents a JSON constructor. + + + + + Writes this token to a asynchronously. + + A into which this method will write. + The token to monitor for cancellation requests. + A collection of which will be used when writing the token. + A that represents the asynchronous write operation. + + + + Asynchronously loads a from a . + + A that will be read for the content of the . + The token to monitor for cancellation requests. The default value is . + + A that represents the asynchronous load. The + property returns a that contains the JSON that was read from the specified . + + + + Asynchronously loads a from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + The token to monitor for cancellation requests. The default value is . + + A that represents the asynchronous load. The + property returns a that contains the JSON that was read from the specified . + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets or sets the name of this constructor. + + The constructor name. + + + + Gets the node type for this . + + The type. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name. + + The constructor name. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Gets the with the specified key. + + The with the specified key. + + + + Loads a from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads a from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Represents a token that can contain other tokens. + + + + + Occurs when the list changes or an item in the list changes. + + + + + Occurs before an item is added to the collection. + + + + + Occurs when the items list of the collection has changed, or the collection is reset. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Get the first child token of this token. + + + A containing the first child token of the . + + + + + Get the last child token of this token. + + + A containing the last child token of the . + + + + + Returns a collection of the child tokens of this token, in document order. + + + An of containing the child tokens of this , in document order. + + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + + A containing the child values of this , in document order. + + + + + Returns a collection of the descendant tokens for this token in document order. + + An of containing the descendant tokens of the . + + + + Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order. + + An of containing this token, and all the descendant tokens of the . + + + + Adds the specified content as children of this . + + The content to be added. + + + + Adds the specified content as the first children of this . + + The content to be added. + + + + Creates a that can be used to add tokens to the . + + A that is ready to have content written to it. + + + + Replaces the child nodes of this token with the specified content. + + The content. + + + + Removes the child nodes from this token. + + + + + Merge the specified content into this . + + The content to be merged. + + + + Merge the specified content into this using . + + The content to be merged. + The used to merge the content. + + + + Gets the count of child JSON tokens. + + The count of child JSON tokens. + + + + Represents a collection of objects. + + The type of token. + + + + An empty collection of objects. + + + + + Initializes a new instance of the struct. + + The enumerable. + + + + Returns an enumerator that can be used to iterate through the collection. + + + A that can be used to iterate through the collection. + + + + + Gets the of with the specified key. + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Represents a JSON object. + + + + + + + + Writes this token to a asynchronously. + + A into which this method will write. + The token to monitor for cancellation requests. + A collection of which will be used when writing the token. + A that represents the asynchronous write operation. + + + + Asynchronously loads a from a . + + A that will be read for the content of the . + The token to monitor for cancellation requests. The default value is . + + A that represents the asynchronous load. The + property returns a that contains the JSON that was read from the specified . + + + + Asynchronously loads a from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + The token to monitor for cancellation requests. The default value is . + + A that represents the asynchronous load. The + property returns a that contains the JSON that was read from the specified . + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Occurs when a property value changes. + + + + + Occurs when a property value is changing. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Gets the node type for this . + + The type. + + + + Gets an of of this object's properties. + + An of of this object's properties. + + + + Gets a with the specified name. + + The property name. + A with the specified name or null. + + + + Gets the with the specified name. + The exact name will be searched for first and if no matching property is found then + the will be used to match a property. + + The property name. + One of the enumeration values that specifies how the strings will be compared. + A matched with the specified name or null. + + + + Gets a of of this object's property values. + + A of of this object's property values. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the with the specified property name. + + + + + + Loads a from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + is not valid JSON. + + + + + Loads a from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + is not valid JSON. + + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + is not valid JSON. + + + + + + + + Load a from a string that contains JSON. + + A that contains JSON. + The used to load the JSON. + If this is null, default load settings will be used. + A populated from the string that contains JSON. + + is not valid JSON. + + + + + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object. + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Gets the with the specified property name. + + Name of the property. + The with the specified property name. + + + + Gets the with the specified property name. + The exact property name will be searched for first and if no matching property is found then + the will be used to match a property. + + Name of the property. + One of the enumeration values that specifies how the strings will be compared. + The with the specified property name. + + + + Tries to get the with the specified property name. + The exact property name will be searched for first and if no matching property is found then + the will be used to match a property. + + Name of the property. + The value. + One of the enumeration values that specifies how the strings will be compared. + true if a value was successfully retrieved; otherwise, false. + + + + Adds the specified property name. + + Name of the property. + The value. + + + + Determines whether the JSON object has the specified property name. + + Name of the property. + true if the JSON object has the specified property name; otherwise, false. + + + + Removes the property with the specified name. + + Name of the property. + true if item was successfully removed; otherwise, false. + + + + Tries to get the with the specified property name. + + Name of the property. + The value. + true if a value was successfully retrieved; otherwise, false. + + + + Returns an enumerator that can be used to iterate through the collection. + + + A that can be used to iterate through the collection. + + + + + Raises the event with the provided arguments. + + Name of the property. + + + + Raises the event with the provided arguments. + + Name of the property. + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Represents a JSON property. + + + + + Writes this token to a asynchronously. + + A into which this method will write. + The token to monitor for cancellation requests. + A collection of which will be used when writing the token. + A that represents the asynchronous write operation. + + + + Asynchronously loads a from a . + + A that will be read for the content of the . + The token to monitor for cancellation requests. The default value is . + A representing the asynchronous creation. The + property returns a that contains the JSON that was read from the specified . + + + + Asynchronously loads a from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + The token to monitor for cancellation requests. The default value is . + A representing the asynchronous creation. The + property returns a that contains the JSON that was read from the specified . + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets the property name. + + The property name. + + + + Gets or sets the property value. + + The property value. + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Gets the node type for this . + + The type. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Loads a from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads a from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Represents a view of a . + + + + + Initializes a new instance of the class. + + The name. + + + + When overridden in a derived class, returns whether resetting an object changes its value. + + + true if resetting the component changes its value; otherwise, false. + + The component to test for reset capability. + + + + When overridden in a derived class, gets the current value of the property on a component. + + + The value of a property for a given component. + + The component with the property for which to retrieve the value. + + + + When overridden in a derived class, resets the value for this property of the component to the default value. + + The component with the property value that is to be reset to the default value. + + + + When overridden in a derived class, sets the value of the component to a different value. + + The component with the property value that is to be set. + The new value. + + + + When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted. + + + true if the property should be persisted; otherwise, false. + + The component with the property to be examined for persistence. + + + + When overridden in a derived class, gets the type of the component this property is bound to. + + + A that represents the type of component this property is bound to. + When the or + + methods are invoked, the object specified might be an instance of this type. + + + + + When overridden in a derived class, gets a value indicating whether this property is read-only. + + + true if the property is read-only; otherwise, false. + + + + + When overridden in a derived class, gets the type of the property. + + + A that represents the type of the property. + + + + + Gets the hash code for the name of the member. + + + + The hash code for the name of the member. + + + + + Represents a raw JSON string. + + + + + Asynchronously creates an instance of with the content of the reader's current token. + + The reader. + The token to monitor for cancellation requests. The default value is . + A representing the asynchronous creation. The + property returns an instance of with the content of the reader's current token. + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class. + + The raw json. + + + + Creates an instance of with the content of the reader's current token. + + The reader. + An instance of with the content of the reader's current token. + + + + Specifies the settings used when loading JSON. + + + + + Initializes a new instance of the class. + + + + + Gets or sets how JSON comments are handled when loading JSON. + The default value is . + + The JSON comment handling. + + + + Gets or sets how JSON line info is handled when loading JSON. + The default value is . + + The JSON line info handling. + + + + Gets or sets how duplicate property names in JSON objects are handled when loading JSON. + The default value is . + + The JSON duplicate property name handling. + + + + Specifies the settings used when merging JSON. + + + + + Initializes a new instance of the class. + + + + + Gets or sets the method used when merging JSON arrays. + + The method used when merging JSON arrays. + + + + Gets or sets how null value properties are merged. + + How null value properties are merged. + + + + Gets or sets the comparison used to match property names while merging. + The exact property name will be searched for first and if no matching property is found then + the will be used to match a property. + + The comparison used to match property names while merging. + + + + Specifies the settings used when selecting JSON. + + + + + Gets or sets a timeout that will be used when executing regular expressions. + + The timeout that will be used when executing regular expressions. + + + + Gets or sets a flag that indicates whether an error should be thrown if + no tokens are found when evaluating part of the expression. + + + A flag that indicates whether an error should be thrown if + no tokens are found when evaluating part of the expression. + + + + + Represents an abstract JSON token. + + + + + Writes this token to a asynchronously. + + A into which this method will write. + The token to monitor for cancellation requests. + A collection of which will be used when writing the token. + A that represents the asynchronous write operation. + + + + Writes this token to a asynchronously. + + A into which this method will write. + A collection of which will be used when writing the token. + A that represents the asynchronous write operation. + + + + Asynchronously creates a from a . + + An positioned at the token to read into this . + The token to monitor for cancellation requests. The default value is . + + A that represents the asynchronous creation. The + property returns a that contains + the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Asynchronously creates a from a . + + An positioned at the token to read into this . + The used to load the JSON. + If this is null, default load settings will be used. + The token to monitor for cancellation requests. The default value is . + + A that represents the asynchronous creation. The + property returns a that contains + the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Asynchronously creates a from a . + + A positioned at the token to read into this . + The token to monitor for cancellation requests. The default value is . + + A that represents the asynchronous creation. The + property returns a that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Asynchronously creates a from a . + + A positioned at the token to read into this . + The used to load the JSON. + If this is null, default load settings will be used. + The token to monitor for cancellation requests. The default value is . + + A that represents the asynchronous creation. The + property returns a that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Gets a comparer that can compare two tokens for value equality. + + A that can compare two nodes for value equality. + + + + Gets or sets the parent. + + The parent. + + + + Gets the root of this . + + The root of this . + + + + Gets the node type for this . + + The type. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Compares the values of two tokens, including the values of all descendant tokens. + + The first to compare. + The second to compare. + true if the tokens are equal; otherwise false. + + + + Gets the next sibling token of this node. + + The that contains the next sibling token. + + + + Gets the previous sibling token of this node. + + The that contains the previous sibling token. + + + + Gets the path of the JSON token. + + + + + Adds the specified content immediately after this token. + + A content object that contains simple content or a collection of content objects to be added after this token. + + + + Adds the specified content immediately before this token. + + A content object that contains simple content or a collection of content objects to be added before this token. + + + + Returns a collection of the ancestor tokens of this token. + + A collection of the ancestor tokens of this token. + + + + Returns a collection of tokens that contain this token, and the ancestors of this token. + + A collection of tokens that contain this token, and the ancestors of this token. + + + + Returns a collection of the sibling tokens after this token, in document order. + + A collection of the sibling tokens after this tokens, in document order. + + + + Returns a collection of the sibling tokens before this token, in document order. + + A collection of the sibling tokens before this token, in document order. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets the with the specified key converted to the specified type. + + The type to convert the token to. + The token key. + The converted token value. + + + + Get the first child token of this token. + + A containing the first child token of the . + + + + Get the last child token of this token. + + A containing the last child token of the . + + + + Returns a collection of the child tokens of this token, in document order. + + An of containing the child tokens of this , in document order. + + + + Returns a collection of the child tokens of this token, in document order, filtered by the specified type. + + The type to filter the child tokens on. + A containing the child tokens of this , in document order. + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + A containing the child values of this , in document order. + + + + Removes this token from its parent. + + + + + Replaces this token with the specified token. + + The value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Returns the indented JSON for this token. + + + ToString() returns a non-JSON string value for tokens with a type of . + If you want the JSON for all token types then you should use . + + + The indented JSON for this token. + + + + + Returns the JSON for this token using the given formatting and converters. + + Indicates how the output should be formatted. + A collection of s which will be used when writing the token. + The JSON for this token using the given formatting and converters. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to []. + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from [] to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Creates a for this token. + + A that can be used to read this token and its descendants. + + + + Creates a from an object. + + The object that will be used to create . + A with the value of the specified object. + + + + Creates a from an object using the specified . + + The object that will be used to create . + The that will be used when reading the object. + A with the value of the specified object. + + + + Creates an instance of the specified .NET type from the . + + The object type that the token will be deserialized to. + The new object created from the JSON value. + + + + Creates an instance of the specified .NET type from the . + + The object type that the token will be deserialized to. + The new object created from the JSON value. + + + + Creates an instance of the specified .NET type from the using the specified . + + The object type that the token will be deserialized to. + The that will be used when creating the object. + The new object created from the JSON value. + + + + Creates an instance of the specified .NET type from the using the specified . + + The object type that the token will be deserialized to. + The that will be used when creating the object. + The new object created from the JSON value. + + + + Creates a from a . + + A positioned at the token to read into this . + + A that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Creates a from a . + + An positioned at the token to read into this . + The used to load the JSON. + If this is null, default load settings will be used. + + A that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Load a from a string that contains JSON. + + A that contains JSON. + The used to load the JSON. + If this is null, default load settings will be used. + A populated from the string that contains JSON. + + + + Creates a from a . + + A positioned at the token to read into this . + The used to load the JSON. + If this is null, default load settings will be used. + + A that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Creates a from a . + + A positioned at the token to read into this . + + A that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Selects a using a JSONPath expression. Selects the token that matches the object path. + + + A that contains a JSONPath expression. + + A , or null. + + + + Selects a using a JSONPath expression. Selects the token that matches the object path. + + + A that contains a JSONPath expression. + + A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. + A . + + + + Selects a using a JSONPath expression. Selects the token that matches the object path. + + + A that contains a JSONPath expression. + + The used to select tokens. + A . + + + + Selects a collection of elements using a JSONPath expression. + + + A that contains a JSONPath expression. + + An of that contains the selected elements. + + + + Selects a collection of elements using a JSONPath expression. + + + A that contains a JSONPath expression. + + A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. + An of that contains the selected elements. + + + + Selects a collection of elements using a JSONPath expression. + + + A that contains a JSONPath expression. + + The used to select tokens. + An of that contains the selected elements. + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Creates a new instance of the . All child tokens are recursively cloned. + + A new instance of the . + + + + Adds an object to the annotation list of this . + + The annotation to add. + + + + Get the first annotation object of the specified type from this . + + The type of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets the first annotation object of the specified type from this . + + The of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets a collection of annotations of the specified type for this . + + The type of the annotations to retrieve. + An that contains the annotations for this . + + + + Gets a collection of annotations of the specified type for this . + + The of the annotations to retrieve. + An of that contains the annotations that match the specified type for this . + + + + Removes the annotations of the specified type from this . + + The type of annotations to remove. + + + + Removes the annotations of the specified type from this . + + The of annotations to remove. + + + + Compares tokens to determine whether they are equal. + + + + + Determines whether the specified objects are equal. + + The first object of type to compare. + The second object of type to compare. + + true if the specified objects are equal; otherwise, false. + + + + + Returns a hash code for the specified object. + + The for which a hash code is to be returned. + A hash code for the specified object. + The type of is a reference type and is null. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. + + + + + Gets the at the reader's current position. + + + + + Initializes a new instance of the class. + + The token to read from. + + + + Initializes a new instance of the class. + + The token to read from. + The initial path of the token. It is prepended to the returned . + + + + Reads the next JSON token from the underlying . + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Gets the path of the current JSON token. + + + + + Specifies the type of token. + + + + + No token type has been set. + + + + + A JSON object. + + + + + A JSON array. + + + + + A JSON constructor. + + + + + A JSON object property. + + + + + A comment. + + + + + An integer value. + + + + + A float value. + + + + + A string value. + + + + + A boolean value. + + + + + A null value. + + + + + An undefined value. + + + + + A date value. + + + + + A raw JSON value. + + + + + A collection of bytes value. + + + + + A Guid value. + + + + + A Uri value. + + + + + A TimeSpan value. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Gets the at the writer's current position. + + + + + Gets the token being written. + + The token being written. + + + + Initializes a new instance of the class writing to the given . + + The container being written to. + + + + Initializes a new instance of the class. + + + + + Flushes whatever is in the buffer to the underlying . + + + + + Closes this writer. + If is set to true, the JSON is auto-completed. + + + Setting to true has no additional effect, since the underlying is a type that cannot be closed. + + + + + Writes the beginning of a JSON object. + + + + + Writes the beginning of a JSON array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end. + + The token. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Writes a value. + An error will be raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Represents a value in JSON (string, integer, date, etc). + + + + + Writes this token to a asynchronously. + + A into which this method will write. + The token to monitor for cancellation requests. + A collection of which will be used when writing the token. + A that represents the asynchronous write operation. + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Creates a comment with the given value. + + The value. + A comment with the given value. + + + + Creates a string with the given value. + + The value. + A string with the given value. + + + + Creates a null value. + + A null value. + + + + Creates a undefined value. + + A undefined value. + + + + Gets the node type for this . + + The type. + + + + Gets or sets the underlying token value. + + The underlying token value. + + + + Writes this token to a . + + A into which this method will write. + A collection of s which will be used when writing the token. + + + + Indicates whether the current object is equal to another object of the same type. + + + true if the current object is equal to the parameter; otherwise, false. + + An object to compare with this object. + + + + Determines whether the specified is equal to the current . + + The to compare with the current . + + true if the specified is equal to the current ; otherwise, false. + + + + + Serves as a hash function for a particular type. + + + A hash code for the current . + + + + + Returns a that represents this instance. + + + ToString() returns a non-JSON string value for tokens with a type of . + If you want the JSON for all token types then you should use . + + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format provider. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + The format provider. + + A that represents this instance. + + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. + + An object to compare with this instance. + + A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: + Value + Meaning + Less than zero + This instance is less than . + Zero + This instance is equal to . + Greater than zero + This instance is greater than . + + + is not of the same type as this instance. + + + + + Specifies how line information is handled when loading JSON. + + + + + Ignore line information. + + + + + Load line information. + + + + + Specifies how JSON arrays are merged together. + + + + Concatenate arrays. + + + Union arrays, skipping items that already exist. + + + Replace all array items. + + + Merge array items together, matched by index. + + + + Specifies how null value properties are merged. + + + + + The content's null value properties will be ignored during merging. + + + + + The content's null value properties will be merged. + + + + + Specifies the member serialization options for the . + + + + + All public members are serialized by default. Members can be excluded using or . + This is the default member serialization mode. + + + + + Only members marked with or are serialized. + This member serialization mode can also be set by marking the class with . + + + + + All public and private fields are serialized. Members can be excluded using or . + This member serialization mode can also be set by marking the class with + and setting IgnoreSerializableAttribute on to false. + + + + + Specifies metadata property handling options for the . + + + + + Read metadata properties located at the start of a JSON object. + + + + + Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance. + + + + + Do not try to read metadata properties. + + + + + Specifies missing member handling options for the . + + + + + Ignore a missing member and do not attempt to deserialize it. + + + + + Throw a when a missing member is encountered during deserialization. + + + + + Specifies null value handling options for the . + + + + + + + + + Include null values when serializing and deserializing objects. + + + + + Ignore null values when serializing and deserializing objects. + + + + + Specifies how object creation is handled by the . + + + + + Reuse existing objects, create new objects when needed. + + + + + Only reuse existing objects. + + + + + Always create new objects. + + + + + Specifies reference handling options for the . + Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement . + + + + + + + + Do not preserve references when serializing types. + + + + + Preserve references when serializing into a JSON object structure. + + + + + Preserve references when serializing into a JSON array structure. + + + + + Preserve references when serializing. + + + + + Specifies reference loop handling options for the . + + + + + Throw a when a loop is encountered. + + + + + Ignore loop references and do not serialize. + + + + + Serialize loop references. + + + + + Indicating whether a property is required. + + + + + The property is not required. The default state. + + + + + The property must be defined in JSON but can be a null value. + + + + + The property must be defined in JSON and cannot be a null value. + + + + + The property is not required but it cannot be a null value. + + + + + + Contains the JSON schema extension methods. + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + + + + + Determines whether the is valid. + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + The source to test. + The schema to test with. + + true if the specified is valid; otherwise, false. + + + + + + Determines whether the is valid. + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + The source to test. + The schema to test with. + When this method returns, contains any error messages generated while validating. + + true if the specified is valid; otherwise, false. + + + + + + Validates the specified . + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + The source to test. + The schema to test with. + + + + + Validates the specified . + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + The source to test. + The schema to test with. + The validation event handler. + + + + + An in-memory representation of a JSON Schema. + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + + + + Gets or sets the id. + + + + + Gets or sets the title. + + + + + Gets or sets whether the object is required. + + + + + Gets or sets whether the object is read-only. + + + + + Gets or sets whether the object is visible to users. + + + + + Gets or sets whether the object is transient. + + + + + Gets or sets the description of the object. + + + + + Gets or sets the types of values allowed by the object. + + The type. + + + + Gets or sets the pattern. + + The pattern. + + + + Gets or sets the minimum length. + + The minimum length. + + + + Gets or sets the maximum length. + + The maximum length. + + + + Gets or sets a number that the value should be divisible by. + + A number that the value should be divisible by. + + + + Gets or sets the minimum. + + The minimum. + + + + Gets or sets the maximum. + + The maximum. + + + + Gets or sets a flag indicating whether the value can not equal the number defined by the minimum attribute (). + + A flag indicating whether the value can not equal the number defined by the minimum attribute (). + + + + Gets or sets a flag indicating whether the value can not equal the number defined by the maximum attribute (). + + A flag indicating whether the value can not equal the number defined by the maximum attribute (). + + + + Gets or sets the minimum number of items. + + The minimum number of items. + + + + Gets or sets the maximum number of items. + + The maximum number of items. + + + + Gets or sets the of items. + + The of items. + + + + Gets or sets a value indicating whether items in an array are validated using the instance at their array position from . + + + true if items are validated using their array position; otherwise, false. + + + + + Gets or sets the of additional items. + + The of additional items. + + + + Gets or sets a value indicating whether additional items are allowed. + + + true if additional items are allowed; otherwise, false. + + + + + Gets or sets whether the array items must be unique. + + + + + Gets or sets the of properties. + + The of properties. + + + + Gets or sets the of additional properties. + + The of additional properties. + + + + Gets or sets the pattern properties. + + The pattern properties. + + + + Gets or sets a value indicating whether additional properties are allowed. + + + true if additional properties are allowed; otherwise, false. + + + + + Gets or sets the required property if this property is present. + + The required property if this property is present. + + + + Gets or sets the a collection of valid enum values allowed. + + A collection of valid enum values allowed. + + + + Gets or sets disallowed types. + + The disallowed types. + + + + Gets or sets the default value. + + The default value. + + + + Gets or sets the collection of that this schema extends. + + The collection of that this schema extends. + + + + Gets or sets the format. + + The format. + + + + Initializes a new instance of the class. + + + + + Reads a from the specified . + + The containing the JSON Schema to read. + The object representing the JSON Schema. + + + + Reads a from the specified . + + The containing the JSON Schema to read. + The to use when resolving schema references. + The object representing the JSON Schema. + + + + Load a from a string that contains JSON Schema. + + A that contains JSON Schema. + A populated from the string that contains JSON Schema. + + + + Load a from a string that contains JSON Schema using the specified . + + A that contains JSON Schema. + The resolver. + A populated from the string that contains JSON Schema. + + + + Writes this schema to a . + + A into which this method will write. + + + + Writes this schema to a using the specified . + + A into which this method will write. + The resolver used. + + + + Returns a that represents the current . + + + A that represents the current . + + + + + + Returns detailed information about the schema exception. + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or null if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + + Generates a from a specified . + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + + + + Gets or sets how undefined schemas are handled by the serializer. + + + + + Gets or sets the contract resolver. + + The contract resolver. + + + + Generate a from the specified type. + + The type to generate a from. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + The used to resolve schema references. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + Specify whether the generated root will be nullable. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + The used to resolve schema references. + Specify whether the generated root will be nullable. + A generated from the specified type. + + + + + Resolves from an id. + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + + + + Gets or sets the loaded schemas. + + The loaded schemas. + + + + Initializes a new instance of the class. + + + + + Gets a for the specified reference. + + The id. + A for the specified reference. + + + + + The value types allowed by the . + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + + + + No type specified. + + + + + String type. + + + + + Float type. + + + + + Integer type. + + + + + Boolean type. + + + + + Object type. + + + + + Array type. + + + + + Null type. + + + + + Any type. + + + + + + Specifies undefined schema Id handling options for the . + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + + + + Do not infer a schema Id. + + + + + Use the .NET type name as the schema Id. + + + + + Use the assembly qualified .NET type name as the schema Id. + + + + + + Returns detailed information related to the . + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + + + + Gets the associated with the validation error. + + The JsonSchemaException associated with the validation error. + + + + Gets the path of the JSON location where the validation error occurred. + + The path of the JSON location where the validation error occurred. + + + + Gets the text description corresponding to the validation error. + + The text description. + + + + + Represents the callback method that will handle JSON schema validation events and the . + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + + + + A camel case naming strategy. + + + + + Initializes a new instance of the class. + + + A flag indicating whether dictionary keys should be processed. + + + A flag indicating whether explicitly specified property names should be processed, + e.g. a property name customized with a . + + + + + Initializes a new instance of the class. + + + A flag indicating whether dictionary keys should be processed. + + + A flag indicating whether explicitly specified property names should be processed, + e.g. a property name customized with a . + + + A flag indicating whether extension data names should be processed. + + + + + Initializes a new instance of the class. + + + + + Resolves the specified property name. + + The property name to resolve. + The resolved property name. + + + + Resolves member mappings for a type, camel casing property names. + + + + + Initializes a new instance of the class. + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Used by to resolve a for a given . + + + + + Gets a value indicating whether members are being get and set using dynamic code generation. + This value is determined by the runtime permissions available. + + + true if using dynamic code generation; otherwise, false. + + + + + Gets or sets the default members search flags. + + The default members search flags. + + + + Gets or sets a value indicating whether compiler generated members should be serialized. + + + true if serialized compiler generated members; otherwise, false. + + + + + Gets or sets a value indicating whether to ignore the interface when serializing and deserializing types. + + + true if the interface will be ignored when serializing and deserializing types; otherwise, false. + + + + + Gets or sets a value indicating whether to ignore the attribute when serializing and deserializing types. + + + true if the attribute will be ignored when serializing and deserializing types; otherwise, false. + + + + + Gets or sets a value indicating whether to ignore IsSpecified members when serializing and deserializing types. + + + true if the IsSpecified members will be ignored when serializing and deserializing types; otherwise, false. + + + + + Gets or sets a value indicating whether to ignore ShouldSerialize members when serializing and deserializing types. + + + true if the ShouldSerialize members will be ignored when serializing and deserializing types; otherwise, false. + + + + + Gets or sets the naming strategy used to resolve how property names and dictionary keys are serialized. + + The naming strategy used to resolve how property names and dictionary keys are serialized. + + + + Initializes a new instance of the class. + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Gets the serializable members for the type. + + The type to get serializable members for. + The serializable members for the type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates the constructor parameters. + + The constructor to create properties for. + The type's member properties. + Properties for the given . + + + + Creates a for the given . + + The matching member property. + The constructor parameter. + A created for the given . + + + + Resolves the default for the contract. + + Type of the object. + The contract's default . + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Determines which contract type is created for the given type. + + Type of the object. + A for the given type. + + + + Creates properties for the given . + + The type to create properties for. + /// The member serialization mode for the type. + Properties for the given . + + + + Creates the used by the serializer to get and set values from a member. + + The member. + The used by the serializer to get and set values from a member. + + + + Creates a for the given . + + The member's parent . + The member to create a for. + A created for the given . + + + + Resolves the name of the property. + + Name of the property. + Resolved name of the property. + + + + Resolves the name of the extension data. By default no changes are made to extension data names. + + Name of the extension data. + Resolved name of the extension data. + + + + Resolves the key of the dictionary. By default is used to resolve dictionary keys. + + Key of the dictionary. + Resolved key of the dictionary. + + + + Gets the resolved name of the property. + + Name of the property. + Name of the property. + + + + The default naming strategy. Property names and dictionary keys are unchanged. + + + + + Resolves the specified property name. + + The property name to resolve. + The resolved property name. + + + + The default serialization binder used when resolving and loading classes from type names. + + + + + Initializes a new instance of the class. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + The type of the object the formatter creates a new instance of. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + The type of the object the formatter creates a new instance of. + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + + + Represents a trace writer that writes to the application's instances. + + + + + Gets the that will be used to filter the trace messages passed to the writer. + For example a filter level of will exclude messages and include , + and messages. + + + The that will be used to filter the trace messages passed to the writer. + + + + + Writes the specified trace level, message and optional exception. + + The at which to write this trace. + The trace message. + The trace exception. This parameter is optional. + + + + Get and set values for a using dynamic methods. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Provides information surrounding an error. + + + + + Gets the error. + + The error. + + + + Gets the original object that caused the error. + + The original object that caused the error. + + + + Gets the member that caused the error. + + The member that caused the error. + + + + Gets the path of the JSON location where the error occurred. + + The path of the JSON location where the error occurred. + + + + Gets or sets a value indicating whether this is handled. + + true if handled; otherwise, false. + + + + Provides data for the Error event. + + + + + Gets the current object the error event is being raised against. + + The current object the error event is being raised against. + + + + Gets the error context. + + The error context. + + + + Initializes a new instance of the class. + + The current object. + The error context. + + + + Get and set values for a using dynamic methods. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Provides methods to get attributes. + + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Used by to resolve a for a given . + + + + + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Used to resolve references when serializing and deserializing JSON by the . + + + + + Resolves a reference to its object. + + The serialization context. + The reference to resolve. + The object that was resolved from the reference. + + + + Gets the reference for the specified object. + + The serialization context. + The object to get a reference for. + The reference to the object. + + + + Determines whether the specified object is referenced. + + The serialization context. + The object to test for a reference. + + true if the specified object is referenced; otherwise, false. + + + + + Adds a reference to the specified object. + + The serialization context. + The reference. + The object to reference. + + + + Allows users to control class loading and mandate what class to load. + + + + + When implemented, controls the binding of a serialized object to a type. + + Specifies the name of the serialized object. + Specifies the name of the serialized object + The type of the object the formatter creates a new instance of. + + + + When implemented, controls the binding of a serialized object to a type. + + The type of the object the formatter creates a new instance of. + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + + + Represents a trace writer. + + + + + Gets the that will be used to filter the trace messages passed to the writer. + For example a filter level of will exclude messages and include , + and messages. + + The that will be used to filter the trace messages passed to the writer. + + + + Writes the specified trace level, message and optional exception. + + The at which to write this trace. + The trace message. + The trace exception. This parameter is optional. + + + + Provides methods to get and set values. + + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Contract details for a used by the . + + + + + Gets the of the collection items. + + The of the collection items. + + + + Gets a value indicating whether the collection type is a multidimensional array. + + true if the collection type is a multidimensional array; otherwise, false. + + + + Gets or sets the function used to create the object. When set this function will override . + + The function used to create the object. + + + + Gets a value indicating whether the creator has a parameter with the collection values. + + true if the creator has a parameter with the collection values; otherwise, false. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Gets or sets the default collection items . + + The converter. + + + + Gets or sets a value indicating whether the collection items preserve object references. + + true if collection items preserve object references; otherwise, false. + + + + Gets or sets the collection item reference loop handling. + + The reference loop handling. + + + + Gets or sets the collection item type name handling. + + The type name handling. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Handles serialization callback events. + + The object that raised the callback event. + The streaming context. + + + + Handles serialization error callback events. + + The object that raised the callback event. + The streaming context. + The error context. + + + + Sets extension data for an object during deserialization. + + The object to set extension data on. + The extension data key. + The extension data value. + + + + Gets extension data for an object during serialization. + + The object to set extension data on. + + + + Contract details for a used by the . + + + + + Gets the underlying type for the contract. + + The underlying type for the contract. + + + + Gets or sets the type created during deserialization. + + The type created during deserialization. + + + + Gets or sets whether this type contract is serialized as a reference. + + Whether this type contract is serialized as a reference. + + + + Gets or sets the default for this contract. + + The converter. + + + + Gets the internally resolved for the contract's type. + This converter is used as a fallback converter when no other converter is resolved. + Setting will always override this converter. + + + + + Gets or sets all methods called immediately after deserialization of the object. + + The methods called immediately after deserialization of the object. + + + + Gets or sets all methods called during deserialization of the object. + + The methods called during deserialization of the object. + + + + Gets or sets all methods called after serialization of the object graph. + + The methods called after serialization of the object graph. + + + + Gets or sets all methods called before serialization of the object. + + The methods called before serialization of the object. + + + + Gets or sets all method called when an error is thrown during the serialization of the object. + + The methods called when an error is thrown during the serialization of the object. + + + + Gets or sets the default creator method used to create the object. + + The default creator method used to create the object. + + + + Gets or sets a value indicating whether the default creator is non-public. + + true if the default object creator is non-public; otherwise, false. + + + + Contract details for a used by the . + + + + + Gets or sets the dictionary key resolver. + + The dictionary key resolver. + + + + Gets the of the dictionary keys. + + The of the dictionary keys. + + + + Gets the of the dictionary values. + + The of the dictionary values. + + + + Gets or sets the function used to create the object. When set this function will override . + + The function used to create the object. + + + + Gets a value indicating whether the creator has a parameter with the dictionary values. + + true if the creator has a parameter with the dictionary values; otherwise, false. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Gets the object's properties. + + The object's properties. + + + + Gets or sets the property name resolver. + + The property name resolver. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Gets or sets the object constructor. + + The object constructor. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Gets or sets the object member serialization. + + The member object serialization. + + + + Gets or sets the missing member handling used when deserializing this object. + + The missing member handling. + + + + Gets or sets a value that indicates whether the object's properties are required. + + + A value indicating whether the object's properties are required. + + + + + Gets or sets how the object's properties with null values are handled during serialization and deserialization. + + How the object's properties with null values are handled during serialization and deserialization. + + + + Gets the object's properties. + + The object's properties. + + + + Gets a collection of instances that define the parameters used with . + + + + + Gets or sets the function used to create the object. When set this function will override . + This function is called with a collection of arguments which are defined by the collection. + + The function used to create the object. + + + + Gets or sets the extension data setter. + + + + + Gets or sets the extension data getter. + + + + + Gets or sets the extension data value type. + + + + + Gets or sets the extension data name resolver. + + The extension data name resolver. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Maps a JSON property to a .NET member or constructor parameter. + + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the type that declared this property. + + The type that declared this property. + + + + Gets or sets the order of serialization of a member. + + The numeric order of serialization. + + + + Gets or sets the name of the underlying member or parameter. + + The name of the underlying member or parameter. + + + + Gets the that will get and set the during serialization. + + The that will get and set the during serialization. + + + + Gets or sets the for this property. + + The for this property. + + + + Gets or sets the type of the property. + + The type of the property. + + + + Gets or sets the for the property. + If set this converter takes precedence over the contract converter for the property type. + + The converter. + + + + Gets or sets the member converter. + + The member converter. + + + + Gets or sets a value indicating whether this is ignored. + + true if ignored; otherwise, false. + + + + Gets or sets a value indicating whether this is readable. + + true if readable; otherwise, false. + + + + Gets or sets a value indicating whether this is writable. + + true if writable; otherwise, false. + + + + Gets or sets a value indicating whether this has a member attribute. + + true if has a member attribute; otherwise, false. + + + + Gets the default value. + + The default value. + + + + Gets or sets a value indicating whether this is required. + + A value indicating whether this is required. + + + + Gets a value indicating whether has a value specified. + + + + + Gets or sets a value indicating whether this property preserves object references. + + + true if this instance is reference; otherwise, false. + + + + + Gets or sets the property null value handling. + + The null value handling. + + + + Gets or sets the property default value handling. + + The default value handling. + + + + Gets or sets the property reference loop handling. + + The reference loop handling. + + + + Gets or sets the property object creation handling. + + The object creation handling. + + + + Gets or sets or sets the type name handling. + + The type name handling. + + + + Gets or sets a predicate used to determine whether the property should be serialized. + + A predicate used to determine whether the property should be serialized. + + + + Gets or sets a predicate used to determine whether the property should be deserialized. + + A predicate used to determine whether the property should be deserialized. + + + + Gets or sets a predicate used to determine whether the property should be serialized. + + A predicate used to determine whether the property should be serialized. + + + + Gets or sets an action used to set whether the property has been deserialized. + + An action used to set whether the property has been deserialized. + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Gets or sets the converter used when serializing the property's collection items. + + The collection's items converter. + + + + Gets or sets whether this property's collection items are serialized as a reference. + + Whether this property's collection items are serialized as a reference. + + + + Gets or sets the type name handling used when serializing the property's collection items. + + The collection's items type name handling. + + + + Gets or sets the reference loop handling used when serializing the property's collection items. + + The collection's items reference loop handling. + + + + A collection of objects. + + + + + Initializes a new instance of the class. + + The type. + + + + When implemented in a derived class, extracts the key from the specified element. + + The element from which to extract the key. + The key for the specified element. + + + + Adds a object. + + The property to add to the collection. + + + + Gets the closest matching object. + First attempts to get an exact case match of and then + a case insensitive match. + + Name of the property. + A matching property if found. + + + + Gets a property by property name. + + The name of the property to get. + Type property name string comparison. + A matching property if found. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Lookup and create an instance of the type described by the argument. + + The type to create. + Optional arguments to pass to an initializing constructor of the JsonConverter. + If null, the default constructor is used. + + + + A kebab case naming strategy. + + + + + Initializes a new instance of the class. + + + A flag indicating whether dictionary keys should be processed. + + + A flag indicating whether explicitly specified property names should be processed, + e.g. a property name customized with a . + + + + + Initializes a new instance of the class. + + + A flag indicating whether dictionary keys should be processed. + + + A flag indicating whether explicitly specified property names should be processed, + e.g. a property name customized with a . + + + A flag indicating whether extension data names should be processed. + + + + + Initializes a new instance of the class. + + + + + Resolves the specified property name. + + The property name to resolve. + The resolved property name. + + + + Represents a trace writer that writes to memory. When the trace message limit is + reached then old trace messages will be removed as new messages are added. + + + + + Gets the that will be used to filter the trace messages passed to the writer. + For example a filter level of will exclude messages and include , + and messages. + + + The that will be used to filter the trace messages passed to the writer. + + + + + Initializes a new instance of the class. + + + + + Writes the specified trace level, message and optional exception. + + The at which to write this trace. + The trace message. + The trace exception. This parameter is optional. + + + + Returns an enumeration of the most recent trace messages. + + An enumeration of the most recent trace messages. + + + + Returns a of the most recent trace messages. + + + A of the most recent trace messages. + + + + + A base class for resolving how property names and dictionary keys are serialized. + + + + + A flag indicating whether dictionary keys should be processed. + Defaults to false. + + + + + A flag indicating whether extension data names should be processed. + Defaults to false. + + + + + A flag indicating whether explicitly specified property names, + e.g. a property name customized with a , should be processed. + Defaults to false. + + + + + Gets the serialized name for a given property name. + + The initial property name. + A flag indicating whether the property has had a name explicitly specified. + The serialized property name. + + + + Gets the serialized name for a given extension data name. + + The initial extension data name. + The serialized extension data name. + + + + Gets the serialized key for a given dictionary key. + + The initial dictionary key. + The serialized dictionary key. + + + + Resolves the specified property name. + + The property name to resolve. + The resolved property name. + + + + Hash code calculation + + + + + + Object equality implementation + + + + + + + Compare to another NamingStrategy + + + + + + + Represents a method that constructs an object. + + The object type to create. + + + + When applied to a method, specifies that the method is called when an error occurs serializing an object. + + + + + Provides methods to get attributes from a , , or . + + + + + Initializes a new instance of the class. + + The instance to get attributes for. This parameter should be a , , or . + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Get and set values for a using reflection. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + A snake case naming strategy. + + + + + Initializes a new instance of the class. + + + A flag indicating whether dictionary keys should be processed. + + + A flag indicating whether explicitly specified property names should be processed, + e.g. a property name customized with a . + + + + + Initializes a new instance of the class. + + + A flag indicating whether dictionary keys should be processed. + + + A flag indicating whether explicitly specified property names should be processed, + e.g. a property name customized with a . + + + A flag indicating whether extension data names should be processed. + + + + + Initializes a new instance of the class. + + + + + Resolves the specified property name. + + The property name to resolve. + The resolved property name. + + + + Specifies how strings are escaped when writing JSON text. + + + + + Only control characters (e.g. newline) are escaped. + + + + + All non-ASCII and control characters (e.g. newline) are escaped. + + + + + HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped. + + + + + Indicates the method that will be used during deserialization for locating and loading assemblies. + + + + + In simple mode, the assembly used during deserialization need not match exactly the assembly used during serialization. Specifically, the version numbers need not match as the LoadWithPartialName method of the class is used to load the assembly. + + + + + In full mode, the assembly used during deserialization must match exactly the assembly used during serialization. The Load method of the class is used to load the assembly. + + + + + Specifies type name handling options for the . + + + should be used with caution when your application deserializes JSON from an external source. + Incoming types should be validated with a custom + when deserializing with a value other than . + + + + + Do not include the .NET type name when serializing types. + + + + + Include the .NET type name when serializing into a JSON object structure. + + + + + Include the .NET type name when serializing into a JSON array structure. + + + + + Always include the .NET type name when serializing. + + + + + Include the .NET type name when the type of the object being serialized is not the same as its declared type. + Note that this doesn't include the root serialized object by default. To include the root object's type name in JSON + you must specify a root type object with + or . + + + + + Determines whether the collection is null or empty. + + The collection. + + true if the collection is null or empty; otherwise, false. + + + + + Adds the elements of the specified collection to the specified generic . + + The list to add to. + The collection of elements to add. + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert or cast the value to. + + The converted type. If conversion was unsuccessful, the initial value + is returned if assignable to the target type. + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic that returns a result + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic, but uses one of the arguments for + the result. + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic, but uses one of the arguments for + the result. + + + + + Returns a Restrictions object which includes our current restrictions merged + with a restriction limiting our type + + + + + Helper class for serializing immutable collections. + Note that this is used by all builds, even those that don't support immutable collections, in case the DLL is GACed + https://github.com/JamesNK/Newtonsoft.Json/issues/652 + + + + + Gets the type of the typed collection's items. + + The type. + The type of the typed collection's items. + + + + Gets the member's underlying type. + + The member. + The underlying type of the member. + + + + Determines whether the property is an indexed property. + + The property. + + true if the property is an indexed property; otherwise, false. + + + + + Gets the member's value on the object. + + The member. + The target object. + The member's value on the object. + + + + Sets the member's value on the target object. + + The member. + The target. + The value. + + + + Determines whether the specified MemberInfo can be read. + + The MemberInfo to determine whether can be read. + /// if set to true then allow the member to be gotten non-publicly. + + true if the specified MemberInfo can be read; otherwise, false. + + + + + Determines whether the specified MemberInfo can be set. + + The MemberInfo to determine whether can be set. + if set to true then allow the member to be set non-publicly. + if set to true then allow the member to be set if read-only. + + true if the specified MemberInfo can be set; otherwise, false. + + + + + Builds a string. Unlike this class lets you reuse its internal buffer. + + + + + Determines whether the string is all white space. Empty string will return false. + + The string to test whether it is all white space. + + true if the string is all white space; otherwise, false. + + + + + Specifies the state of the . + + + + + An exception has been thrown, which has left the in an invalid state. + You may call the method to put the in the Closed state. + Any other method calls result in an being thrown. + + + + + The method has been called. + + + + + An object is being written. + + + + + An array is being written. + + + + + A constructor is being written. + + + + + A property is being written. + + + + + A write method has not been called. + + + + Specifies that an output will not be null even if the corresponding type allows it. + + + Specifies that when a method returns , the parameter will not be null even if the corresponding type allows it. + + + Initializes the attribute with the specified return value condition. + + The return value condition. If the method returns this value, the associated parameter will not be null. + + + + Gets the return value condition. + + + Specifies that an output may be null even if the corresponding type disallows it. + + + Specifies that null is allowed as an input even if the corresponding type disallows it. + + + + Specifies that the method will not return if the associated Boolean parameter is passed the specified value. + + + + + Initializes a new instance of the class. + + + The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to + the associated parameter matches this value. + + + + Gets the condition parameter value. + + + diff --git a/bin/Release/SimpleHTTP.dll b/bin/Release/SimpleHTTP.dll new file mode 100644 index 0000000..6fb3f06 Binary files /dev/null and b/bin/Release/SimpleHTTP.dll differ diff --git a/bin/Release/SimpleHTTP.xml b/bin/Release/SimpleHTTP.xml new file mode 100644 index 0000000..1f2fe90 --- /dev/null +++ b/bin/Release/SimpleHTTP.xml @@ -0,0 +1,415 @@ + + + + SimpleHTTP + + + + + Class containing extensions. + + + + + Parses body of the request including form and multi-part form data. + + HTTP request. + Key-value pairs populated by the form data by this function. + Name-file pair collection. + + + + Parses body of the request including form and multi-part form data. + + HTTP request. + Key-value pairs populated by the form data by this function. + + Function called if a file is about to be parsed. The stream is attached to a corresponding . + By default, is used, but for large files, it is recommended to open directly. + + Name-file pair collection. + + + + Delegate executed when a file is about to be read from a body stream. + + Field name. + name of the file. + Content type. + Stream to be populated. + + + + HTTP file data container. + + + + + Creates new HTTP file data container. + + File name. + Data. + Content type. + + + + Gets the name of the file. + + + + + Gets the data. + If a stream is created it will be closed when this HttpFile object is disposed. + + + + + Content type. + + + + + Saves the data into a file. + Directory path will be auto created if does not exists. + + File path with name. + True to overwrite the existing file, false otherwise. + True if the file is saved/overwritten, false otherwise. + + + + Disposes the current instance. + + + + + Disposes the current instance. + + + + + Class containing HTTP response extensions. + + + + + Sets response headers to enable CORS. + + HTTP response. + Modified HTTP response. + + + + Sets the content-type for the response. + + HTTP response. + HTTP content-type. + Modified HTTP response. + + + + Sets the specified header for the response. + + HTTP response. + Header name. + Header value. + Modified HTTP response. + + + + Sets the status code for the response. + + HTTP response. + HTTP status code. + Modified HTTP response. + + + + Sets the cookie for the response. + + HTTP response. + Cookie name. + Cookie value. + Modified HTTP response. + + + + Sets the cookie for the response. + + HTTP response. + Cookie name. + Cookie value. + Cookie expiration date (UTC). + Modified HTTP response. + + + + Sets the cookie for the response. + + HTTP response. + Cookie. + Modified HTTP response. + + + + Writes the specified data to the response. + Response is closed and can not be longer modified. + + HTTP response. + Text data to write. + Mime type. + + + + Builds a redirect response. + Response is closed and can not be longer modified. + + HTTP response. + A new location (URL). + + + + Writes the specified file content to the response. + Response is closed and can not be longer modified. + Built-in support for 'byte-range' response, 'ETag' and 'Last-Modified'. + + HTTP response. + HTTP request used to determine 'Range' header + File path with name. + + + + Writes the specified data to the response. + Response is closed and can not be longer modified. + + HTTP response. + HTTP request used to determine 'Range' header + Data to write. + Mime type. + + + + Writes the specified data to the response. + Response is closed and can not be longer modified. + + HTTP response. + HTTP request used to determine 'Range' header + + Data to write. + Stream must support seek operation due to 'byte-range' functionality. + + Mime type. + + + + Class containing extensions for . + + + + + Matches all the expressions inside '{ }' defined in for the and populates the . + Example: query: "Hello world", pattern: "{first} world" => args["first"] is "Hello". + + Query string. + Pattern string defining the expressions to match inside '{ }'. + Key-value pair collection populated by keys and matches in if found. + True is all defined keys in are matched, false otherwise. + + + + Delegate which runs before all route-methods and returns if the processing should finish (true) or continue (false). + + HTTP request. + HTTP response. + True if the request is handled, false otherwise. + + + + Delegate which runs before any route-action is invoked to determine which route should be executed. + + HTTP request. + + Empty collection of key-value pairs populated by this function. + If is run it may contain some data. + + True if the route action should be executed, false otherwise. + + + + Delegate which runs when a route is matched. + + HTTP request. + HTTP response. + Collection of key-value pairs populated by the . + Action task. + + + + Delegate which runs when a route is matched. + + HTTP request. + HTTP response. + Collection of key-value pairs populated by the . + + + + Delegate which runs if an error occurs. + + HTTP request. + HTTP response. + Thrown exception. + + + + Represents error that occur when a route is not found. + + + + + Creates a new instance of the route not found exception. + + + + + + Class defining all the required actions for route-processing and error handling. + /// + + + + Action executed before all route-methods. + It may be null. + + + + + Action executed if an error occurs. + By default it outputs exception message as text with an existing status code. In case of 200-299, 'BadRequest' is used. + + + + + Gets or sets the route methods. + + + + + Entry function executed on the incoming HTTP request. + + HTTP request. + HTTP response. + Request processing task. + + + + Adds the specified action to the route collection. + The order of actions defines the priority. + + + String pattern optionally containing named arguments in {}. + + Example: "/page-{pageNumber}/". 'pageNumber' will be parsed and added to 'arguments' key-value pair collection. + The last argument is parsed as greedy one. + + + Action executed if the specified pattern matches the URL path. + HTTP method (GET, POST, DELETE, HEAD). + + + + Adds the specified action to the route collection. + The order of actions defines the priority. + + + String pattern optionally containing named arguments in {}. + + Example: "/page-{pageNumber}/". 'pageNumber' will be parsed and added to 'arguments' key-value pair collection. + The last argument is parsed as greedy one. + + + Action executed if the specified pattern matches the URL path. + HTTP method (GET, POST, DELETE, HEAD). + + + + Adds the specified action to the route collection. + The order of actions defines the priority. + + Function defining whether the specified action should be executed or not. + Action executed if the specified pattern matches the URL path. + + + + Adds the specified action to the route collection. + The order of actions defines the priority. + + Function defining whether the specified action should be executed or not. + Action executed if the specified pattern matches the URL path. + + + + HTTP server listener class. + + + + + Creates and starts a new instance of the http(s) server. + + The http/https URI listening port. + Cancellation token. + Action executed on HTTP request. + True to add 'https://' prefix insteaad of 'http://'. + Maximum HTTP connection count, after which the incoming requests will wait (sockets are not included). + Server listening task. + + + + Creates and starts a new instance of the http(s) / websocket server. + + The http/https URI listening prefix. + Cancellation token. + Action executed on HTTP request. + Maximum HTTP connection count, after which the incoming requests will wait (sockets are not included). + Server listening task. + + + + Class defining methods for string or file pattern replacements. + + + + + Replaces all occurrences defined inside each {key} expression with values. Keys and values are specified in the replacements. + + File path with name. + Key-value pair collection for replacements. + Processed file content. + + + + Replaces all occurrences defined inside each {key} expression with values. Keys and values are specified in the replacements. + + Template string. + Key-value pair collection for replacements. + Processed template. + + + + Replaces all occurrences defined inside each {key} expression with values. Keys and values are defined as object property names and values. + + Object type. + File path with name. + Object to use for replacements. + Processed file content. + + + + Replaces all occurrences defined inside each {key} expression with values. Keys and values are defined as object property names and values. + + Object type. + Template string. + Object to use for replacements. + Processed file content. + + + diff --git a/bin/Release/System.AppContext.dll b/bin/Release/System.AppContext.dll new file mode 100644 index 0000000..4ccc058 Binary files /dev/null and b/bin/Release/System.AppContext.dll differ diff --git a/bin/Release/System.Buffers.dll b/bin/Release/System.Buffers.dll new file mode 100644 index 0000000..f2d83c5 Binary files /dev/null and b/bin/Release/System.Buffers.dll differ diff --git a/bin/Release/System.Buffers.xml b/bin/Release/System.Buffers.xml new file mode 100644 index 0000000..e243dce --- /dev/null +++ b/bin/Release/System.Buffers.xml @@ -0,0 +1,38 @@ + + + System.Buffers + + + + Provides a resource pool that enables reusing instances of type . + The type of the objects that are in the resource pool. + + + Initializes a new instance of the class. + + + Creates a new instance of the class. + A new instance of the class. + + + Creates a new instance of the class using the specifed configuration. + The maximum length of an array instance that may be stored in the pool. + The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access. + A new instance of the class with the specified configuration. + + + Retrieves a buffer that is at least the requested length. + The minimum length of the array. + An array of type that is at least minimumLength in length. + + + Returns an array to the pool that was previously obtained using the method on the same instance. + A buffer to return to the pool that was previously obtained using the method. + Indicates whether the contents of the buffer should be cleared before reuse. If clearArray is set to true, and if the pool will store the buffer to enable subsequent reuse, the method will clear the array of its contents so that a subsequent caller using the method will not see the content of the previous caller. If clearArray is set to false or if the pool will release the buffer, the array&#39;s contents are left unchanged. + + + Gets a shared instance. + A shared instance. + + + \ No newline at end of file diff --git a/bin/Release/System.Collections.Concurrent.dll b/bin/Release/System.Collections.Concurrent.dll new file mode 100644 index 0000000..26f10d1 Binary files /dev/null and b/bin/Release/System.Collections.Concurrent.dll differ diff --git a/bin/Release/System.Collections.NonGeneric.dll b/bin/Release/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..9da235a Binary files /dev/null and b/bin/Release/System.Collections.NonGeneric.dll differ diff --git a/bin/Release/System.Collections.Specialized.dll b/bin/Release/System.Collections.Specialized.dll new file mode 100644 index 0000000..fbd4fc7 Binary files /dev/null and b/bin/Release/System.Collections.Specialized.dll differ diff --git a/bin/Release/System.Collections.dll b/bin/Release/System.Collections.dll new file mode 100644 index 0000000..72ac205 Binary files /dev/null and b/bin/Release/System.Collections.dll differ diff --git a/bin/Release/System.ComponentModel.EventBasedAsync.dll b/bin/Release/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..37742d4 Binary files /dev/null and b/bin/Release/System.ComponentModel.EventBasedAsync.dll differ diff --git a/bin/Release/System.ComponentModel.Primitives.dll b/bin/Release/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..b0c4b68 Binary files /dev/null and b/bin/Release/System.ComponentModel.Primitives.dll differ diff --git a/bin/Release/System.ComponentModel.TypeConverter.dll b/bin/Release/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..fb42b44 Binary files /dev/null and b/bin/Release/System.ComponentModel.TypeConverter.dll differ diff --git a/bin/Release/System.ComponentModel.dll b/bin/Release/System.ComponentModel.dll new file mode 100644 index 0000000..8e2d829 Binary files /dev/null and b/bin/Release/System.ComponentModel.dll differ diff --git a/bin/Release/System.Console.dll b/bin/Release/System.Console.dll new file mode 100644 index 0000000..fe61bcc Binary files /dev/null and b/bin/Release/System.Console.dll differ diff --git a/bin/Release/System.Data.Common.dll b/bin/Release/System.Data.Common.dll new file mode 100644 index 0000000..05e3481 Binary files /dev/null and b/bin/Release/System.Data.Common.dll differ diff --git a/bin/Release/System.Diagnostics.Contracts.dll b/bin/Release/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..98f40eb Binary files /dev/null and b/bin/Release/System.Diagnostics.Contracts.dll differ diff --git a/bin/Release/System.Diagnostics.Debug.dll b/bin/Release/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..a51c0cf Binary files /dev/null and b/bin/Release/System.Diagnostics.Debug.dll differ diff --git a/bin/Release/System.Diagnostics.FileVersionInfo.dll b/bin/Release/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..3c203b0 Binary files /dev/null and b/bin/Release/System.Diagnostics.FileVersionInfo.dll differ diff --git a/bin/Release/System.Diagnostics.Process.dll b/bin/Release/System.Diagnostics.Process.dll new file mode 100644 index 0000000..b537e62 Binary files /dev/null and b/bin/Release/System.Diagnostics.Process.dll differ diff --git a/bin/Release/System.Diagnostics.StackTrace.dll b/bin/Release/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..5dfaad6 Binary files /dev/null and b/bin/Release/System.Diagnostics.StackTrace.dll differ diff --git a/bin/Release/System.Diagnostics.TextWriterTraceListener.dll b/bin/Release/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..a5720da Binary files /dev/null and b/bin/Release/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/bin/Release/System.Diagnostics.Tools.dll b/bin/Release/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..bd9deae Binary files /dev/null and b/bin/Release/System.Diagnostics.Tools.dll differ diff --git a/bin/Release/System.Diagnostics.TraceSource.dll b/bin/Release/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..5474eb2 Binary files /dev/null and b/bin/Release/System.Diagnostics.TraceSource.dll differ diff --git a/bin/Release/System.Diagnostics.Tracing.dll b/bin/Release/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..5b8b2b4 Binary files /dev/null and b/bin/Release/System.Diagnostics.Tracing.dll differ diff --git a/bin/Release/System.Drawing.Primitives.dll b/bin/Release/System.Drawing.Primitives.dll new file mode 100644 index 0000000..1eeacc4 Binary files /dev/null and b/bin/Release/System.Drawing.Primitives.dll differ diff --git a/bin/Release/System.Dynamic.Runtime.dll b/bin/Release/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..d34b388 Binary files /dev/null and b/bin/Release/System.Dynamic.Runtime.dll differ diff --git a/bin/Release/System.Globalization.Calendars.dll b/bin/Release/System.Globalization.Calendars.dll new file mode 100644 index 0000000..4a198bc Binary files /dev/null and b/bin/Release/System.Globalization.Calendars.dll differ diff --git a/bin/Release/System.Globalization.Extensions.dll b/bin/Release/System.Globalization.Extensions.dll new file mode 100644 index 0000000..99f9e4a Binary files /dev/null and b/bin/Release/System.Globalization.Extensions.dll differ diff --git a/bin/Release/System.Globalization.dll b/bin/Release/System.Globalization.dll new file mode 100644 index 0000000..dd3d2e3 Binary files /dev/null and b/bin/Release/System.Globalization.dll differ diff --git a/bin/Release/System.IO.Compression.ZipFile.dll b/bin/Release/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..345acbd Binary files /dev/null and b/bin/Release/System.IO.Compression.ZipFile.dll differ diff --git a/bin/Release/System.IO.Compression.dll b/bin/Release/System.IO.Compression.dll new file mode 100644 index 0000000..ebbb503 Binary files /dev/null and b/bin/Release/System.IO.Compression.dll differ diff --git a/bin/Release/System.IO.FileSystem.DriveInfo.dll b/bin/Release/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..5c59398 Binary files /dev/null and b/bin/Release/System.IO.FileSystem.DriveInfo.dll differ diff --git a/bin/Release/System.IO.FileSystem.Primitives.dll b/bin/Release/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..de4c49f Binary files /dev/null and b/bin/Release/System.IO.FileSystem.Primitives.dll differ diff --git a/bin/Release/System.IO.FileSystem.Watcher.dll b/bin/Release/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..228d60b Binary files /dev/null and b/bin/Release/System.IO.FileSystem.Watcher.dll differ diff --git a/bin/Release/System.IO.FileSystem.dll b/bin/Release/System.IO.FileSystem.dll new file mode 100644 index 0000000..6934080 Binary files /dev/null and b/bin/Release/System.IO.FileSystem.dll differ diff --git a/bin/Release/System.IO.IsolatedStorage.dll b/bin/Release/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..356e123 Binary files /dev/null and b/bin/Release/System.IO.IsolatedStorage.dll differ diff --git a/bin/Release/System.IO.MemoryMappedFiles.dll b/bin/Release/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..add3b29 Binary files /dev/null and b/bin/Release/System.IO.MemoryMappedFiles.dll differ diff --git a/bin/Release/System.IO.Pipes.dll b/bin/Release/System.IO.Pipes.dll new file mode 100644 index 0000000..e5690c4 Binary files /dev/null and b/bin/Release/System.IO.Pipes.dll differ diff --git a/bin/Release/System.IO.UnmanagedMemoryStream.dll b/bin/Release/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..cdd7427 Binary files /dev/null and b/bin/Release/System.IO.UnmanagedMemoryStream.dll differ diff --git a/bin/Release/System.IO.dll b/bin/Release/System.IO.dll new file mode 100644 index 0000000..e9eb534 Binary files /dev/null and b/bin/Release/System.IO.dll differ diff --git a/bin/Release/System.Linq.Expressions.dll b/bin/Release/System.Linq.Expressions.dll new file mode 100644 index 0000000..63b570c Binary files /dev/null and b/bin/Release/System.Linq.Expressions.dll differ diff --git a/bin/Release/System.Linq.Parallel.dll b/bin/Release/System.Linq.Parallel.dll new file mode 100644 index 0000000..d8d097e Binary files /dev/null and b/bin/Release/System.Linq.Parallel.dll differ diff --git a/bin/Release/System.Linq.Queryable.dll b/bin/Release/System.Linq.Queryable.dll new file mode 100644 index 0000000..404bbe2 Binary files /dev/null and b/bin/Release/System.Linq.Queryable.dll differ diff --git a/bin/Release/System.Linq.dll b/bin/Release/System.Linq.dll new file mode 100644 index 0000000..42cd93b Binary files /dev/null and b/bin/Release/System.Linq.dll differ diff --git a/bin/Release/System.Memory.dll b/bin/Release/System.Memory.dll new file mode 100644 index 0000000..5d19470 Binary files /dev/null and b/bin/Release/System.Memory.dll differ diff --git a/bin/Release/System.Memory.xml b/bin/Release/System.Memory.xml new file mode 100644 index 0000000..4d12fd7 --- /dev/null +++ b/bin/Release/System.Memory.xml @@ -0,0 +1,355 @@ + + + System.Memory + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/bin/Release/System.Net.Http.dll b/bin/Release/System.Net.Http.dll new file mode 100644 index 0000000..1c5c6fd Binary files /dev/null and b/bin/Release/System.Net.Http.dll differ diff --git a/bin/Release/System.Net.NameResolution.dll b/bin/Release/System.Net.NameResolution.dll new file mode 100644 index 0000000..e8a65c0 Binary files /dev/null and b/bin/Release/System.Net.NameResolution.dll differ diff --git a/bin/Release/System.Net.NetworkInformation.dll b/bin/Release/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..543a6cf Binary files /dev/null and b/bin/Release/System.Net.NetworkInformation.dll differ diff --git a/bin/Release/System.Net.Ping.dll b/bin/Release/System.Net.Ping.dll new file mode 100644 index 0000000..eeb4666 Binary files /dev/null and b/bin/Release/System.Net.Ping.dll differ diff --git a/bin/Release/System.Net.Primitives.dll b/bin/Release/System.Net.Primitives.dll new file mode 100644 index 0000000..8a929ae Binary files /dev/null and b/bin/Release/System.Net.Primitives.dll differ diff --git a/bin/Release/System.Net.Requests.dll b/bin/Release/System.Net.Requests.dll new file mode 100644 index 0000000..5cf38f8 Binary files /dev/null and b/bin/Release/System.Net.Requests.dll differ diff --git a/bin/Release/System.Net.Security.dll b/bin/Release/System.Net.Security.dll new file mode 100644 index 0000000..eacb8a1 Binary files /dev/null and b/bin/Release/System.Net.Security.dll differ diff --git a/bin/Release/System.Net.Sockets.dll b/bin/Release/System.Net.Sockets.dll new file mode 100644 index 0000000..9716795 Binary files /dev/null and b/bin/Release/System.Net.Sockets.dll differ diff --git a/bin/Release/System.Net.WebHeaderCollection.dll b/bin/Release/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..0238e69 Binary files /dev/null and b/bin/Release/System.Net.WebHeaderCollection.dll differ diff --git a/bin/Release/System.Net.WebSockets.Client.dll b/bin/Release/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..3275912 Binary files /dev/null and b/bin/Release/System.Net.WebSockets.Client.dll differ diff --git a/bin/Release/System.Net.WebSockets.dll b/bin/Release/System.Net.WebSockets.dll new file mode 100644 index 0000000..7a74189 Binary files /dev/null and b/bin/Release/System.Net.WebSockets.dll differ diff --git a/bin/Release/System.Numerics.Vectors.dll b/bin/Release/System.Numerics.Vectors.dll new file mode 100644 index 0000000..0865972 Binary files /dev/null and b/bin/Release/System.Numerics.Vectors.dll differ diff --git a/bin/Release/System.Numerics.Vectors.xml b/bin/Release/System.Numerics.Vectors.xml new file mode 100644 index 0000000..da34d39 --- /dev/null +++ b/bin/Release/System.Numerics.Vectors.xml @@ -0,0 +1,2621 @@ + + + System.Numerics.Vectors + + + + Represents a 3x2 matrix. + + + Creates a 3x2 matrix from the specified components. + The value to assign to the first element in the first row. + The value to assign to the second element in the first row. + The value to assign to the first element in the second row. + The value to assign to the second element in the second row. + The value to assign to the first element in the third row. + The value to assign to the second element in the third row. + + + Adds each element in one matrix with its corresponding element in a second matrix. + The first matrix. + The second matrix. + The matrix that contains the summed values of value1 and value2. + + + Creates a rotation matrix using the given rotation in radians. + The amount of rotation, in radians. + The rotation matrix. + + + Creates a rotation matrix using the specified rotation in radians and a center point. + The amount of rotation, in radians. + The center point. + The rotation matrix. + + + Creates a scaling matrix from the specified X and Y components. + The value to scale by on the X axis. + The value to scale by on the Y axis. + The scaling matrix. + + + Creates a scaling matrix that scales uniformly with the specified scale with an offset from the specified center. + The uniform scale to use. + The center offset. + The scaling matrix. + + + Creates a scaling matrix that is offset by a given center point. + The value to scale by on the X axis. + The value to scale by on the Y axis. + The center point. + The scaling matrix. + + + Creates a scaling matrix that scales uniformly with the given scale. + The uniform scale to use. + The scaling matrix. + + + Creates a scaling matrix from the specified vector scale. + The scale to use. + The scaling matrix. + + + Creates a scaling matrix from the specified vector scale with an offset from the specified center point. + The scale to use. + The center offset. + The scaling matrix. + + + Creates a skew matrix from the specified angles in radians. + The X angle, in radians. + The Y angle, in radians. + The skew matrix. + + + Creates a skew matrix from the specified angles in radians and a center point. + The X angle, in radians. + The Y angle, in radians. + The center point. + The skew matrix. + + + Creates a translation matrix from the specified 2-dimensional vector. + The translation position. + The translation matrix. + + + Creates a translation matrix from the specified X and Y components. + The X position. + The Y position. + The translation matrix. + + + Returns a value that indicates whether this instance and another 3x2 matrix are equal. + The other matrix. + true if the two matrices are equal; otherwise, false. + + + Returns a value that indicates whether this instance and a specified object are equal. + The object to compare with the current instance. + true if the current instance and obj are equal; otherwise, false. If obj is null, the method returns false. + + + Calculates the determinant for this matrix. + The determinant. + + + Returns the hash code for this instance. + The hash code. + + + Gets the multiplicative identity matrix. + The multiplicative identify matrix. + + + Inverts the specified matrix. The return value indicates whether the operation succeeded. + The matrix to invert. + When this method returns, contains the inverted matrix if the operation succeeded. + true if matrix was converted successfully; otherwise, false. + + + Indicates whether the current matrix is the identity matrix. + true if the current matrix is the identity matrix; otherwise, false. + + + Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix. + The first matrix. + The second matrix. + The relative weighting of matrix2. + The interpolated matrix. + + + The first element of the first row. + + + + The second element of the first row. + + + + The first element of the second row. + + + + The second element of the second row. + + + + The first element of the third row. + + + + The second element of the third row. + + + + Returns the matrix that results from multiplying two matrices together. + The first matrix. + The second matrix. + The product matrix. + + + Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor. + The matrix to scale. + The scaling value to use. + The scaled matrix. + + + Negates the specified matrix by multiplying all its values by -1. + The matrix to negate. + The negated matrix. + + + Adds each element in one matrix with its corresponding element in a second matrix. + The first matrix. + The second matrix. + The matrix that contains the summed values. + + + Returns a value that indicates whether the specified matrices are equal. + The first matrix to compare. + The second matrix to compare. + true if value1 and value2 are equal; otherwise, false. + + + Returns a value that indicates whether the specified matrices are not equal. + The first matrix to compare. + The second matrix to compare. + true if value1 and value2 are not equal; otherwise, false. + + + Returns the matrix that results from multiplying two matrices together. + The first matrix. + The second matrix. + The product matrix. + + + Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor. + The matrix to scale. + The scaling value to use. + The scaled matrix. + + + Subtracts each element in a second matrix from its corresponding element in a first matrix. + The first matrix. + The second matrix. + The matrix containing the values that result from subtracting each element in value2 from its corresponding element in value1. + + + Negates the specified matrix by multiplying all its values by -1. + The matrix to negate. + The negated matrix. + + + Subtracts each element in a second matrix from its corresponding element in a first matrix. + The first matrix. + The second matrix. + The matrix containing the values that result from subtracting each element in value2 from its corresponding element in value1. + + + Returns a string that represents this matrix. + The string representation of this matrix. + + + Gets or sets the translation component of this matrix. + The translation component of the current instance. + + + Represents a 4x4 matrix. + + + Creates a object from a specified object. + A 3x2 matrix. + + + Creates a 4x4 matrix from the specified components. + The value to assign to the first element in the first row. + The value to assign to the second element in the first row. + The value to assign to the third element in the first row. + The value to assign to the fourth element in the first row. + The value to assign to the first element in the second row. + The value to assign to the second element in the second row. + The value to assign to the third element in the second row. + The value to assign to the third element in the second row. + The value to assign to the first element in the third row. + The value to assign to the second element in the third row. + The value to assign to the third element in the third row. + The value to assign to the fourth element in the third row. + The value to assign to the first element in the fourth row. + The value to assign to the second element in the fourth row. + The value to assign to the third element in the fourth row. + The value to assign to the fourth element in the fourth row. + + + Adds each element in one matrix with its corresponding element in a second matrix. + The first matrix. + The second matrix. + The matrix that contains the summed values of value1 and value2. + + + Creates a spherical billboard that rotates around a specified object position. + The position of the object that the billboard will rotate around. + The position of the camera. + The up vector of the camera. + The forward vector of the camera. + The created billboard. + + + Creates a cylindrical billboard that rotates around a specified axis. + The position of the object that the billboard will rotate around. + The position of the camera. + The axis to rotate the billboard around. + The forward vector of the camera. + The forward vector of the object. + The billboard matrix. + + + Creates a matrix that rotates around an arbitrary vector. + The axis to rotate around. + The angle to rotate around axis, in radians. + The rotation matrix. + + + Creates a rotation matrix from the specified Quaternion rotation value. + The source Quaternion. + The rotation matrix. + + + Creates a rotation matrix from the specified yaw, pitch, and roll. + The angle of rotation, in radians, around the Y axis. + The angle of rotation, in radians, around the X axis. + The angle of rotation, in radians, around the Z axis. + The rotation matrix. + + + Creates a view matrix. + The position of the camera. + The target towards which the camera is pointing. + The direction that is &quot;up&quot; from the camera&#39;s point of view. + The view matrix. + + + Creates an orthographic perspective matrix from the given view volume dimensions. + The width of the view volume. + The height of the view volume. + The minimum Z-value of the view volume. + The maximum Z-value of the view volume. + The orthographic projection matrix. + + + Creates a customized orthographic projection matrix. + The minimum X-value of the view volume. + The maximum X-value of the view volume. + The minimum Y-value of the view volume. + The maximum Y-value of the view volume. + The minimum Z-value of the view volume. + The maximum Z-value of the view volume. + The orthographic projection matrix. + + + Creates a perspective projection matrix from the given view volume dimensions. + The width of the view volume at the near view plane. + The height of the view volume at the near view plane. + The distance to the near view plane. + The distance to the far view plane. + The perspective projection matrix. + nearPlaneDistance is less than or equal to zero. + -or- + farPlaneDistance is less than or equal to zero. + -or- + nearPlaneDistance is greater than or equal to farPlaneDistance. + + + Creates a perspective projection matrix based on a field of view, aspect ratio, and near and far view plane distances. + The field of view in the y direction, in radians. + The aspect ratio, defined as view space width divided by height. + The distance to the near view plane. + The distance to the far view plane. + The perspective projection matrix. + fieldOfView is less than or equal to zero. + -or- + fieldOfView is greater than or equal to . + nearPlaneDistance is less than or equal to zero. + -or- + farPlaneDistance is less than or equal to zero. + -or- + nearPlaneDistance is greater than or equal to farPlaneDistance. + + + Creates a customized perspective projection matrix. + The minimum x-value of the view volume at the near view plane. + The maximum x-value of the view volume at the near view plane. + The minimum y-value of the view volume at the near view plane. + The maximum y-value of the view volume at the near view plane. + The distance to the near view plane. + The distance to the far view plane. + The perspective projection matrix. + nearPlaneDistance is less than or equal to zero. + -or- + farPlaneDistance is less than or equal to zero. + -or- + nearPlaneDistance is greater than or equal to farPlaneDistance. + + + Creates a matrix that reflects the coordinate system about a specified plane. + The plane about which to create a reflection. + A new matrix expressing the reflection. + + + Creates a matrix for rotating points around the X axis. + The amount, in radians, by which to rotate around the X axis. + The rotation matrix. + + + Creates a matrix for rotating points around the X axis from a center point. + The amount, in radians, by which to rotate around the X axis. + The center point. + The rotation matrix. + + + The amount, in radians, by which to rotate around the Y axis from a center point. + The amount, in radians, by which to rotate around the Y-axis. + The center point. + The rotation matrix. + + + Creates a matrix for rotating points around the Y axis. + The amount, in radians, by which to rotate around the Y-axis. + The rotation matrix. + + + Creates a matrix for rotating points around the Z axis. + The amount, in radians, by which to rotate around the Z-axis. + The rotation matrix. + + + Creates a matrix for rotating points around the Z axis from a center point. + The amount, in radians, by which to rotate around the Z-axis. + The center point. + The rotation matrix. + + + Creates a scaling matrix from the specified vector scale. + The scale to use. + The scaling matrix. + + + Creates a uniform scaling matrix that scale equally on each axis. + The uniform scaling factor. + The scaling matrix. + + + Creates a scaling matrix with a center point. + The vector that contains the amount to scale on each axis. + The center point. + The scaling matrix. + + + Creates a uniform scaling matrix that scales equally on each axis with a center point. + The uniform scaling factor. + The center point. + The scaling matrix. + + + Creates a scaling matrix from the specified X, Y, and Z components. + The value to scale by on the X axis. + The value to scale by on the Y axis. + The value to scale by on the Z axis. + The scaling matrix. + + + Creates a scaling matrix that is offset by a given center point. + The value to scale by on the X axis. + The value to scale by on the Y axis. + The value to scale by on the Z axis. + The center point. + The scaling matrix. + + + Creates a matrix that flattens geometry into a specified plane as if casting a shadow from a specified light source. + The direction from which the light that will cast the shadow is coming. + The plane onto which the new matrix should flatten geometry so as to cast a shadow. + A new matrix that can be used to flatten geometry onto the specified plane from the specified direction. + + + Creates a translation matrix from the specified 3-dimensional vector. + The amount to translate in each axis. + The translation matrix. + + + Creates a translation matrix from the specified X, Y, and Z components. + The amount to translate on the X axis. + The amount to translate on the Y axis. + The amount to translate on the Z axis. + The translation matrix. + + + Creates a world matrix with the specified parameters. + The position of the object. + The forward direction of the object. + The upward direction of the object. Its value is usually [0, 1, 0]. + The world matrix. + + + Attempts to extract the scale, translation, and rotation components from the given scale, rotation, or translation matrix. The return value indicates whether the operation succeeded. + The source matrix. + When this method returns, contains the scaling component of the transformation matrix if the operation succeeded. + When this method returns, contains the rotation component of the transformation matrix if the operation succeeded. + When the method returns, contains the translation component of the transformation matrix if the operation succeeded. + true if matrix was decomposed successfully; otherwise, false. + + + Returns a value that indicates whether this instance and another 4x4 matrix are equal. + The other matrix. + true if the two matrices are equal; otherwise, false. + + + Returns a value that indicates whether this instance and a specified object are equal. + The object to compare with the current instance. + true if the current instance and obj are equal; otherwise, false. If obj is null, the method returns false. + + + Calculates the determinant of the current 4x4 matrix. + The determinant. + + + Returns the hash code for this instance. + The hash code. + + + Gets the multiplicative identity matrix. + Gets the multiplicative identity matrix. + + + Inverts the specified matrix. The return value indicates whether the operation succeeded. + The matrix to invert. + When this method returns, contains the inverted matrix if the operation succeeded. + true if matrix was converted successfully; otherwise, false. + + + Indicates whether the current matrix is the identity matrix. + true if the current matrix is the identity matrix; otherwise, false. + + + Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix. + The first matrix. + The second matrix. + The relative weighting of matrix2. + The interpolated matrix. + + + The first element of the first row. + + + + The second element of the first row. + + + + The third element of the first row. + + + + The fourth element of the first row. + + + + The first element of the second row. + + + + The second element of the second row. + + + + The third element of the second row. + + + + The fourth element of the second row. + + + + The first element of the third row. + + + + The second element of the third row. + + + + The third element of the third row. + + + + The fourth element of the third row. + + + + The first element of the fourth row. + + + + The second element of the fourth row. + + + + The third element of the fourth row. + + + + The fourth element of the fourth row. + + + + Returns the matrix that results from multiplying two matrices together. + The first matrix. + The second matrix. + The product matrix. + + + Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor. + The matrix to scale. + The scaling value to use. + The scaled matrix. + + + Negates the specified matrix by multiplying all its values by -1. + The matrix to negate. + The negated matrix. + + + Adds each element in one matrix with its corresponding element in a second matrix. + The first matrix. + The second matrix. + The matrix that contains the summed values. + + + Returns a value that indicates whether the specified matrices are equal. + The first matrix to compare. + The second matrix to care + true if value1 and value2 are equal; otherwise, false. + + + Returns a value that indicates whether the specified matrices are not equal. + The first matrix to compare. + The second matrix to compare. + true if value1 and value2 are not equal; otherwise, false. + + + Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor. + The matrix to scale. + The scaling value to use. + The scaled matrix. + + + Returns the matrix that results from multiplying two matrices together. + The first matrix. + The second matrix. + The product matrix. + + + Subtracts each element in a second matrix from its corresponding element in a first matrix. + The first matrix. + The second matrix. + The matrix containing the values that result from subtracting each element in value2 from its corresponding element in value1. + + + Negates the specified matrix by multiplying all its values by -1. + The matrix to negate. + The negated matrix. + + + Subtracts each element in a second matrix from its corresponding element in a first matrix. + The first matrix. + The second matrix. + The matrix containing the values that result from subtracting each element in value2 from its corresponding element in value1. + + + Returns a string that represents this matrix. + The string representation of this matrix. + + + Transforms the specified matrix by applying the specified Quaternion rotation. + The matrix to transform. + The rotation t apply. + The transformed matrix. + + + Gets or sets the translation component of this matrix. + The translation component of the current instance. + + + Transposes the rows and columns of a matrix. + The matrix to transpose. + The transposed matrix. + + + Represents a three-dimensional plane. + + + Creates a object from a specified four-dimensional vector. + A vector whose first three elements describe the normal vector, and whose defines the distance along that normal from the origin. + + + Creates a object from a specified normal and the distance along the normal from the origin. + The plane&#39;s normal vector. + The plane&#39;s distance from the origin along its normal vector. + + + Creates a object from the X, Y, and Z components of its normal, and its distance from the origin on that normal. + The X component of the normal. + The Y component of the normal. + The Z component of the normal. + The distance of the plane along its normal from the origin. + + + Creates a object that contains three specified points. + The first point defining the plane. + The second point defining the plane. + The third point defining the plane. + The plane containing the three points. + + + The distance of the plane along its normal from the origin. + + + + Calculates the dot product of a plane and a 4-dimensional vector. + The plane. + The four-dimensional vector. + The dot product. + + + Returns the dot product of a specified three-dimensional vector and the normal vector of this plane plus the distance () value of the plane. + The plane. + The 3-dimensional vector. + The dot product. + + + Returns the dot product of a specified three-dimensional vector and the vector of this plane. + The plane. + The three-dimensional vector. + The dot product. + + + Returns a value that indicates whether this instance and a specified object are equal. + The object to compare with the current instance. + true if the current instance and obj are equal; otherwise, false. If obj is null, the method returns false. + + + Returns a value that indicates whether this instance and another plane object are equal. + The other plane. + true if the two planes are equal; otherwise, false. + + + Returns the hash code for this instance. + The hash code. + + + The normal vector of the plane. + + + + Creates a new object whose normal vector is the source plane&#39;s normal vector normalized. + The source plane. + The normalized plane. + + + Returns a value that indicates whether two planes are equal. + The first plane to compare. + The second plane to compare. + true if value1 and value2 are equal; otherwise, false. + + + Returns a value that indicates whether two planes are not equal. + The first plane to compare. + The second plane to compare. + true if value1 and value2 are not equal; otherwise, false. + + + Returns the string representation of this plane object. + A string that represents this object. + + + Transforms a normalized plane by a 4x4 matrix. + The normalized plane to transform. + The transformation matrix to apply to plane. + The transformed plane. + + + Transforms a normalized plane by a Quaternion rotation. + The normalized plane to transform. + The Quaternion rotation to apply to the plane. + A new plane that results from applying the Quaternion rotation. + + + Represents a vector that is used to encode three-dimensional physical rotations. + + + Creates a quaternion from the specified vector and rotation parts. + The vector part of the quaternion. + The rotation part of the quaternion. + + + Constructs a quaternion from the specified components. + The value to assign to the X component of the quaternion. + The value to assign to the Y component of the quaternion. + The value to assign to the Z component of the quaternion. + The value to assign to the W component of the quaternion. + + + Adds each element in one quaternion with its corresponding element in a second quaternion. + The first quaternion. + The second quaternion. + The quaternion that contains the summed values of value1 and value2. + + + Concatenates two quaternions. + The first quaternion rotation in the series. + The second quaternion rotation in the series. + A new quaternion representing the concatenation of the value1 rotation followed by the value2 rotation. + + + Returns the conjugate of a specified quaternion. + The quaternion. + A new quaternion that is the conjugate of value. + + + Creates a quaternion from a vector and an angle to rotate about the vector. + The vector to rotate around. + The angle, in radians, to rotate around the vector. + The newly created quaternion. + + + Creates a quaternion from the specified rotation matrix. + The rotation matrix. + The newly created quaternion. + + + Creates a new quaternion from the given yaw, pitch, and roll. + The yaw angle, in radians, around the Y axis. + The pitch angle, in radians, around the X axis. + The roll angle, in radians, around the Z axis. + The resulting quaternion. + + + Divides one quaternion by a second quaternion. + The dividend. + The divisor. + The quaternion that results from dividing value1 by value2. + + + Calculates the dot product of two quaternions. + The first quaternion. + The second quaternion. + The dot product. + + + Returns a value that indicates whether this instance and another quaternion are equal. + The other quaternion. + true if the two quaternions are equal; otherwise, false. + + + Returns a value that indicates whether this instance and a specified object are equal. + The object to compare with the current instance. + true if the current instance and obj are equal; otherwise, false. If obj is null, the method returns false. + + + Returns the hash code for this instance. + The hash code. + + + Gets a quaternion that represents no rotation. + A quaternion whose values are (0, 0, 0, 1). + + + Returns the inverse of a quaternion. + The quaternion. + The inverted quaternion. + + + Gets a value that indicates whether the current instance is the identity quaternion. + true if the current instance is the identity quaternion; otherwise, false. + + + Calculates the length of the quaternion. + The computed length of the quaternion. + + + Calculates the squared length of the quaternion. + The length squared of the quaternion. + + + Performs a linear interpolation between two quaternions based on a value that specifies the weighting of the second quaternion. + The first quaternion. + The second quaternion. + The relative weight of quaternion2 in the interpolation. + The interpolated quaternion. + + + Returns the quaternion that results from multiplying two quaternions together. + The first quaternion. + The second quaternion. + The product quaternion. + + + Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor. + The source quaternion. + The scalar value. + The scaled quaternion. + + + Reverses the sign of each component of the quaternion. + The quaternion to negate. + The negated quaternion. + + + Divides each component of a specified by its length. + The quaternion to normalize. + The normalized quaternion. + + + Adds each element in one quaternion with its corresponding element in a second quaternion. + The first quaternion. + The second quaternion. + The quaternion that contains the summed values of value1 and value2. + + + Divides one quaternion by a second quaternion. + The dividend. + The divisor. + The quaternion that results from dividing value1 by value2. + + + Returns a value that indicates whether two quaternions are equal. + The first quaternion to compare. + The second quaternion to compare. + true if the two quaternions are equal; otherwise, false. + + + Returns a value that indicates whether two quaternions are not equal. + The first quaternion to compare. + The second quaternion to compare. + true if value1 and value2 are not equal; otherwise, false. + + + Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor. + The source quaternion. + The scalar value. + The scaled quaternion. + + + Returns the quaternion that results from multiplying two quaternions together. + The first quaternion. + The second quaternion. + The product quaternion. + + + Subtracts each element in a second quaternion from its corresponding element in a first quaternion. + The first quaternion. + The second quaternion. + The quaternion containing the values that result from subtracting each element in value2 from its corresponding element in value1. + + + Reverses the sign of each component of the quaternion. + The quaternion to negate. + The negated quaternion. + + + Interpolates between two quaternions, using spherical linear interpolation. + The first quaternion. + The second quaternion. + The relative weight of the second quaternion in the interpolation. + The interpolated quaternion. + + + Subtracts each element in a second quaternion from its corresponding element in a first quaternion. + The first quaternion. + The second quaternion. + The quaternion containing the values that result from subtracting each element in value2 from its corresponding element in value1. + + + Returns a string that represents this quaternion. + The string representation of this quaternion. + + + The rotation component of the quaternion. + + + + The X value of the vector component of the quaternion. + + + + The Y value of the vector component of the quaternion. + + + + The Z value of the vector component of the quaternion. + + + + Represents a single vector of a specified numeric type that is suitable for low-level optimization of parallel algorithms. + The vector type. T can be any primitive numeric type. + + + Creates a vector whose components are of a specified type. + The numeric type that defines the type of the components in the vector. + + + Creates a vector from a specified array. + A numeric array. + values is null. + + + Creates a vector from a specified array starting at a specified index position. + A numeric array. + The starting index position from which to create the vector. + values is null. + index is less than zero. + -or- + The length of values minus index is less than . + + + Copies the vector instance to a specified destination array. + The array to receive a copy of the vector values. + destination is null. + The number of elements in the current vector is greater than the number of elements available in the destination array. + + + Copies the vector instance to a specified destination array starting at a specified index position. + The array to receive a copy of the vector values. + The starting index in destination at which to begin the copy operation. + destination is null. + The number of elements in the current instance is greater than the number of elements available from startIndex to the end of the destination array. + index is less than zero or greater than the last index in destination. + + + Returns the number of elements stored in the vector. + The number of elements stored in the vector. + Access to the property getter via reflection is not supported. + + + Returns a value that indicates whether this instance is equal to a specified vector. + The vector to compare with this instance. + true if the current instance and other are equal; otherwise, false. + + + Returns a value that indicates whether this instance is equal to a specified object. + The object to compare with this instance. + true if the current instance and obj are equal; otherwise, false. The method returns false if obj is null, or if obj is a vector of a different type than the current instance. + + + Returns the hash code for this instance. + The hash code. + + + Gets the element at a specified index. + The index of the element to return. + The element at index index. + index is less than zero. + -or- + index is greater than or equal to . + + + Returns a vector containing all ones. + A vector containing all ones. + + + Adds two vectors together. + The first vector to add. + The second vector to add. + The summed vector. + + + Returns a new vector by performing a bitwise And operation on each of the elements in two vectors. + The first vector. + The second vector. + The vector that results from the bitwise And of left and right. + + + Returns a new vector by performing a bitwise Or operation on each of the elements in two vectors. + The first vector. + The second vector. + The vector that results from the bitwise Or of the elements in left and right. + + + Divides the first vector by the second. + The first vector. + The second vector. + The vector that results from dividing left by right. + + + Returns a value that indicates whether each pair of elements in two specified vectors are equal. + The first vector to compare. + The second vector to compare. + true if left and right are equal; otherwise, false. + + + Returns a new vector by performing a bitwise XOr operation on each of the elements in two vectors. + The first vector. + The second vector. + The vector that results from the bitwise XOr of the elements in left and right. + + + Reinterprets the bits of the specified vector into a vector of type . + The vector to reinterpret. + The reinterpreted vector. + + + Reinterprets the bits of the specified vector into a vector of type . + The vector to reinterpret. + The reinterpreted vector. + + + Reinterprets the bits of the specified vector into a vector of type . + The vector to reinterpret. + The reinterpreted vector. + + + Reinterprets the bits of the specified vector into a vector of type . + The vector to reinterpret. + The reinterpreted vector. + + + Reinterprets the bits of the specified vector into a vector of type . + The vector to reinterpret. + The reinterpreted vector. + + + Reinterprets the bits of the specified vector into a vector of type . + The vector to reinterpret. + The reinterpreted vector. + + + Reinterprets the bits of the specified vector into a vector of type . + The vector to reinterpret. + The reinterpreted vector. + + + Reinterprets the bits of the specified vector into a vector of type . + The vector to reinterpret. + The reinterpreted vector. + + + Reinterprets the bits of the specified vector into a vector of type . + The vector to reinterpret. + The reinterpreted vector. + + + Reinterprets the bits of the specified vector into a vector of type . + The vector to reinterpret. + The reinterpreted vector. + + + Returns a value that indicates whether any single pair of elements in the specified vectors is equal. + The first vector to compare. + The second vector to compare. + true if any element pairs in left and right are equal. false if no element pairs are equal. + + + Multiplies two vectors together. + The first vector. + The second vector. + The product vector. + + + Multiplies a vector by a specified scalar value. + The source vector. + A scalar value. + The scaled vector. + + + Multiplies a vector by the given scalar. + The scalar value. + The source vector. + The scaled vector. + + + Returns a new vector whose elements are obtained by taking the one&#39;s complement of a specified vector&#39;s elements. + The source vector. + The one&#39;s complement vector. + + + Subtracts the second vector from the first. + The first vector. + The second vector. + The vector that results from subtracting right from left. + + + Negates a given vector. + The vector to negate. + The negated vector. + + + Returns the string representation of this vector using the specified format string to format individual elements and the specified format provider to define culture-specific formatting. + A or that defines the format of individual elements. + A format provider that supplies culture-specific formatting information. + The string representation of the current instance. + + + Returns the string representation of this vector using default formatting. + The string representation of this vector. + + + Returns the string representation of this vector using the specified format string to format individual elements. + A or that defines the format of individual elements. + The string representation of the current instance. + + + Returns a vector containing all zeroes. + A vector containing all zeroes. + + + Provides a collection of static convenience methods for creating, manipulating, combining, and converting generic vectors. + + + Returns a new vector whose elements are the absolute values of the given vector&#39;s elements. + The source vector. + The vector type. T can be any primitive numeric type. + The absolute value vector. + + + Returns a new vector whose values are the sum of each pair of elements from two given vectors. + The first vector. + The second vector. + The vector type. T can be any primitive numeric type. + The summed vector. + + + Returns a new vector by performing a bitwise And Not operation on each pair of corresponding elements in two vectors. + The first vector. + The second vector. + The vector type. T can be any primitive numeric type. + The resulting vector. + + + Reinterprets the bits of a specified vector into those of a vector of unsigned bytes. + The source vector. + The vector type. T can be any primitive numeric type. + The reinterpreted vector. + + + Reinterprets the bits of a specified vector into those of a double-precision floating-point vector. + The source vector. + The vector type. T can be any primitive numeric type. + The reinterpreted vector. + + + Reinterprets the bits of a specified vector into those of a vector of 16-bit integers. + The source vector. + The vector type. T can be any primitive numeric type. + The reinterpreted vector. + + + Reinterprets the bits of a specified vector into those of a vector of integers. + The source vector. + The vector type. T can be any primitive numeric type. + The reinterpreted vector. + + + Reinterprets the bits of a specified vector into those of a vector of long integers. + The source vector. + The vector type. T can be any primitive numeric type. + The reinterpreted vector. + + + Reinterprets the bits of a specified vector into those of a vector of signed bytes. + The source vector. + The vector type. T can be any primitive numeric type. + The reinterpreted vector. + + + Reinterprets the bits of a specified vector into those of a single-precision floating-point vector. + The source vector. + The vector type. T can be any primitive numeric type. + The reinterpreted vector. + + + Reinterprets the bits of a specified vector into those of a vector of unsigned 16-bit integers. + The source vector. + The vector type. T can be any primitive numeric type. + The reinterpreted vector. + + + Reinterprets the bits of a specified vector into those of a vector of unsigned integers. + The source vector. + The vector type. T can be any primitive numeric type. + The reinterpreted vector. + + + Reinterprets the bits of a specified vector into those of a vector of unsigned long integers. + The source vector. + The vector type. T can be any primitive numeric type. + The reinterpreted vector. + + + Returns a new vector by performing a bitwise And operation on each pair of elements in two vectors. + The first vector. + The second vector. + The vector type. T can be any primitive numeric type. + The resulting vector. + + + Returns a new vector by performing a bitwise Or operation on each pair of elements in two vectors. + The first vector. + The second vector. + The vector type. T can be any primitive numeric type. + The resulting vector. + + + Creates a new single-precision vector with elements selected between two specified single-precision source vectors based on an integral mask vector. + The integral mask vector used to drive selection. + The first source vector. + The second source vector. + The new vector with elements selected based on the mask. + + + Creates a new double-precision vector with elements selected between two specified double-precision source vectors based on an integral mask vector. + The integral mask vector used to drive selection. + The first source vector. + The second source vector. + The new vector with elements selected based on the mask. + + + Creates a new vector of a specified type with elements selected between two specified source vectors of the same type based on an integral mask vector. + The integral mask vector used to drive selection. + The first source vector. + The second source vector. + The vector type. T can be any primitive numeric type. + The new vector with elements selected based on the mask. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Returns a new vector whose values are the result of dividing the first vector&#39;s elements by the corresponding elements in the second vector. + The first vector. + The second vector. + The vector type. T can be any primitive numeric type. + The divided vector. + + + Returns the dot product of two vectors. + The first vector. + The second vector. + The vector type. T can be any primitive numeric type. + The dot product. + + + Returns a new integral vector whose elements signal whether the elements in two specified double-precision vectors are equal. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new integral vector whose elements signal whether the elements in two specified integral vectors are equal. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new vector whose elements signal whether the elements in two specified long integer vectors are equal. + The first vector to compare. + The second vector to compare. + The resulting long integer vector. + + + Returns a new integral vector whose elements signal whether the elements in two specified single-precision vectors are equal. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new vector of a specified type whose elements signal whether the elements in two specified vectors of the same type are equal. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + The resulting vector. + + + Returns a value that indicates whether each pair of elements in the given vectors is equal. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + true if all elements in left and right are equal; otherwise, false. + + + Returns a value that indicates whether any single pair of elements in the given vectors is equal. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + true if any element pair in left and right is equal; otherwise, false. + + + Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are greater than their corresponding elements in a second double-precision floating-point vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than their corresponding elements in a second integral vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than their corresponding elements in a second long integer vector. + The first vector to compare. + The second vector to compare. + The resulting long integer vector. + + + Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are greater than their corresponding elements in a second single-precision floating-point vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than their corresponding elements in the second vector of the same time. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + The resulting vector. + + + Returns a value that indicates whether all elements in the first vector are greater than the corresponding elements in the second vector. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + true if all elements in left are greater than the corresponding elements in right; otherwise, false. + + + Returns a value that indicates whether any element in the first vector is greater than the corresponding element in the second vector. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + true if any element in left is greater than the corresponding element in right; otherwise, false. + + + Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the single-precision floating-point second vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than or equal to their corresponding elements in the second long integer vector. + The first vector to compare. + The second vector to compare. + The resulting long integer vector. + + + Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than or equal to their corresponding elements in the second integral vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the second double-precision floating-point vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than or equal to their corresponding elements in the second vector of the same type. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + The resulting vector. + + + Returns a value that indicates whether all elements in the first vector are greater than or equal to all the corresponding elements in the second vector. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + true if all elements in left are greater than or equal to the corresponding elements in right; otherwise, false. + + + Returns a value that indicates whether any element in the first vector is greater than or equal to the corresponding element in the second vector. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + true if any element in left is greater than or equal to the corresponding element in right; otherwise, false. + + + Gets a value that indicates whether vector operations are subject to hardware acceleration through JIT intrinsic support. + true if vector operations are subject to hardware acceleration; otherwise, false. + + + Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than their corresponding elements in a second double-precision floating-point vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new integral vector whose elements signal whether the elements in one integral vector are less than their corresponding elements in a second integral vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector + + + Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less than their corresponding elements in a second long integer vector. + The first vector to compare. + The second vector to compare. + The resulting long integer vector. + + + Returns a new integral vector whose elements signal whether the elements in one single-precision vector are less than their corresponding elements in a second single-precision vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new vector of a specified type whose elements signal whether the elements in one vector are less than their corresponding elements in the second vector. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + The resulting vector. + + + Returns a value that indicates whether all of the elements in the first vector are less than their corresponding elements in the second vector. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + true if all of the elements in left are less than the corresponding elements in right; otherwise, false. + + + Returns a value that indicates whether any element in the first vector is less than the corresponding element in the second vector. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + true if any element in left is less than the corresponding element in right; otherwise, false. + + + Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than or equal to their corresponding elements in a second double-precision floating-point vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new integral vector whose elements signal whether the elements in one integral vector are less than or equal to their corresponding elements in a second integral vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less or equal to their corresponding elements in a second long integer vector. + The first vector to compare. + The second vector to compare. + The resulting long integer vector. + + + Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are less than or equal to their corresponding elements in a second single-precision floating-point vector. + The first vector to compare. + The second vector to compare. + The resulting integral vector. + + + Returns a new vector whose elements signal whether the elements in one vector are less than or equal to their corresponding elements in the second vector. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + The resulting vector. + + + Returns a value that indicates whether all elements in the first vector are less than or equal to their corresponding elements in the second vector. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + true if all of the elements in left are less than or equal to the corresponding elements in right; otherwise, false. + + + Returns a value that indicates whether any element in the first vector is less than or equal to the corresponding element in the second vector. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + true if any element in left is less than or equal to the corresponding element in right; otherwise, false. + + + Returns a new vector whose elements are the maximum of each pair of elements in the two given vectors. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + The maximum vector. + + + Returns a new vector whose elements are the minimum of each pair of elements in the two given vectors. + The first vector to compare. + The second vector to compare. + The vector type. T can be any primitive numeric type. + The minimum vector. + + + Returns a new vector whose values are a scalar value multiplied by each of the values of a specified vector. + The scalar value. + The vector. + The vector type. T can be any primitive numeric type. + The scaled vector. + + + Returns a new vector whose values are the product of each pair of elements in two specified vectors. + The first vector. + The second vector. + The vector type. T can be any primitive numeric type. + The product vector. + + + Returns a new vector whose values are the values of a specified vector each multiplied by a scalar value. + The vector. + The scalar value. + The vector type. T can be any primitive numeric type. + The scaled vector. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Returns a new vector whose elements are the negation of the corresponding element in the specified vector. + The source vector. + The vector type. T can be any primitive numeric type. + The negated vector. + + + Returns a new vector whose elements are obtained by taking the one&#39;s complement of a specified vector&#39;s elements. + The source vector. + The vector type. T can be any primitive numeric type. + The resulting vector. + + + Returns a new vector whose elements are the square roots of a specified vector&#39;s elements. + The source vector. + The vector type. T can be any primitive numeric type. + The square root vector. + + + Returns a new vector whose values are the difference between the elements in the second vector and their corresponding elements in the first vector. + The first vector. + The second vector. + The vector type. T can be any primitive numeric type. + The difference vector. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Returns a new vector by performing a bitwise exclusive Or (XOr) operation on each pair of elements in two vectors. + The first vector. + The second vector. + The vector type. T can be any primitive numeric type. + The resulting vector. + + + Represents a vector with two single-precision floating-point values. + + + Creates a new object whose two elements have the same value. + The value to assign to both elements. + + + Creates a vector whose elements have the specified values. + The value to assign to the field. + The value to assign to the field. + + + Returns a vector whose elements are the absolute values of each of the specified vector&#39;s elements. + A vector. + The absolute value vector. + + + Adds two vectors together. + The first vector to add. + The second vector to add. + The summed vector. + + + Restricts a vector between a minimum and a maximum value. + The vector to restrict. + The minimum value. + The maximum value. + The restricted vector. + + + Copies the elements of the vector to a specified array. + The destination array. + array is null. + The number of elements in the current instance is greater than in the array. + array is multidimensional. + + + Copies the elements of the vector to a specified array starting at a specified index position. + The destination array. + The index at which to copy the first element of the vector. + array is null. + The number of elements in the current instance is greater than in the array. + index is less than zero. + -or- + index is greater than or equal to the array length. + array is multidimensional. + + + Computes the Euclidean distance between the two given points. + The first point. + The second point. + The distance. + + + Returns the Euclidean distance squared between two specified points. + The first point. + The second point. + The distance squared. + + + Divides the first vector by the second. + The first vector. + The second vector. + The vector resulting from the division. + + + Divides the specified vector by a specified scalar value. + The vector. + The scalar value. + The vector that results from the division. + + + Returns the dot product of two vectors. + The first vector. + The second vector. + The dot product. + + + Returns a value that indicates whether this instance and a specified object are equal. + The object to compare with the current instance. + true if the current instance and obj are equal; otherwise, false. If obj is null, the method returns false. + + + Returns a value that indicates whether this instance and another vector are equal. + The other vector. + true if the two vectors are equal; otherwise, false. + + + Returns the hash code for this instance. + The hash code. + + + Returns the length of the vector. + The vector&#39;s length. + + + Returns the length of the vector squared. + The vector&#39;s length squared. + + + Performs a linear interpolation between two vectors based on the given weighting. + The first vector. + The second vector. + A value between 0 and 1 that indicates the weight of value2. + The interpolated vector. + + + Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors. + The first vector. + The second vector. + The maximized vector. + + + Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors. + The first vector. + The second vector. + The minimized vector. + + + Multiplies two vectors together. + The first vector. + The second vector. + The product vector. + + + Multiplies a vector by a specified scalar. + The vector to multiply. + The scalar value. + The scaled vector. + + + Multiplies a scalar value by a specified vector. + The scaled value. + The vector. + The scaled vector. + + + Negates a specified vector. + The vector to negate. + The negated vector. + + + Returns a vector with the same direction as the specified vector, but with a length of one. + The vector to normalize. + The normalized vector. + + + Gets a vector whose 2 elements are equal to one. + A vector whose two elements are equal to one (that is, it returns the vector (1,1). + + + Adds two vectors together. + The first vector to add. + The second vector to add. + The summed vector. + + + Divides the first vector by the second. + The first vector. + The second vector. + The vector that results from dividing left by right. + + + Divides the specified vector by a specified scalar value. + The vector. + The scalar value. + The result of the division. + + + Returns a value that indicates whether each pair of elements in two specified vectors is equal. + The first vector to compare. + The second vector to compare. + true if left and right are equal; otherwise, false. + + + Returns a value that indicates whether two specified vectors are not equal. + The first vector to compare. + The second vector to compare. + true if left and right are not equal; otherwise, false. + + + Multiplies two vectors together. + The first vector. + The second vector. + The product vector. + + + Multiples the specified vector by the specified scalar value. + The vector. + The scalar value. + The scaled vector. + + + Multiples the scalar value by the specified vector. + The vector. + The scalar value. + The scaled vector. + + + Subtracts the second vector from the first. + The first vector. + The second vector. + The vector that results from subtracting right from left. + + + Negates the specified vector. + The vector to negate. + The negated vector. + + + Returns the reflection of a vector off a surface that has the specified normal. + The source vector. + The normal of the surface being reflected off. + The reflected vector. + + + Returns a vector whose elements are the square root of each of a specified vector&#39;s elements. + A vector. + The square root vector. + + + Subtracts the second vector from the first. + The first vector. + The second vector. + The difference vector. + + + Returns the string representation of the current instance using default formatting. + The string representation of the current instance. + + + Returns the string representation of the current instance using the specified format string to format individual elements. + A or that defines the format of individual elements. + The string representation of the current instance. + + + Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting. + A or that defines the format of individual elements. + A format provider that supplies culture-specific formatting information. + The string representation of the current instance. + + + Transforms a vector by a specified 3x2 matrix. + The vector to transform. + The transformation matrix. + The transformed vector. + + + Transforms a vector by a specified 4x4 matrix. + The vector to transform. + The transformation matrix. + The transformed vector. + + + Transforms a vector by the specified Quaternion rotation value. + The vector to rotate. + The rotation to apply. + The transformed vector. + + + Transforms a vector normal by the given 3x2 matrix. + The source vector. + The matrix. + The transformed vector. + + + Transforms a vector normal by the given 4x4 matrix. + The source vector. + The matrix. + The transformed vector. + + + Gets the vector (1,0). + The vector (1,0). + + + Gets the vector (0,1). + The vector (0,1). + + + The X component of the vector. + + + + The Y component of the vector. + + + + Returns a vector whose 2 elements are equal to zero. + A vector whose two elements are equal to zero (that is, it returns the vector (0,0). + + + Represents a vector with three single-precision floating-point values. + + + Creates a new object whose three elements have the same value. + The value to assign to all three elements. + + + Creates a new object from the specified object and the specified value. + The vector with two elements. + The additional value to assign to the field. + + + Creates a vector whose elements have the specified values. + The value to assign to the field. + The value to assign to the field. + The value to assign to the field. + + + Returns a vector whose elements are the absolute values of each of the specified vector&#39;s elements. + A vector. + The absolute value vector. + + + Adds two vectors together. + The first vector to add. + The second vector to add. + The summed vector. + + + Restricts a vector between a minimum and a maximum value. + The vector to restrict. + The minimum value. + The maximum value. + The restricted vector. + + + Copies the elements of the vector to a specified array. + The destination array. + array is null. + The number of elements in the current instance is greater than in the array. + array is multidimensional. + + + Copies the elements of the vector to a specified array starting at a specified index position. + The destination array. + The index at which to copy the first element of the vector. + array is null. + The number of elements in the current instance is greater than in the array. + index is less than zero. + -or- + index is greater than or equal to the array length. + array is multidimensional. + + + Computes the cross product of two vectors. + The first vector. + The second vector. + The cross product. + + + Computes the Euclidean distance between the two given points. + The first point. + The second point. + The distance. + + + Returns the Euclidean distance squared between two specified points. + The first point. + The second point. + The distance squared. + + + Divides the specified vector by a specified scalar value. + The vector. + The scalar value. + The vector that results from the division. + + + Divides the first vector by the second. + The first vector. + The second vector. + The vector resulting from the division. + + + Returns the dot product of two vectors. + The first vector. + The second vector. + The dot product. + + + Returns a value that indicates whether this instance and another vector are equal. + The other vector. + true if the two vectors are equal; otherwise, false. + + + Returns a value that indicates whether this instance and a specified object are equal. + The object to compare with the current instance. + true if the current instance and obj are equal; otherwise, false. If obj is null, the method returns false. + + + Returns the hash code for this instance. + The hash code. + + + Returns the length of this vector object. + The vector&#39;s length. + + + Returns the length of the vector squared. + The vector&#39;s length squared. + + + Performs a linear interpolation between two vectors based on the given weighting. + The first vector. + The second vector. + A value between 0 and 1 that indicates the weight of value2. + The interpolated vector. + + + Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors. + The first vector. + The second vector. + The maximized vector. + + + Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors. + The first vector. + The second vector. + The minimized vector. + + + Multiplies a scalar value by a specified vector. + The scaled value. + The vector. + The scaled vector. + + + Multiplies two vectors together. + The first vector. + The second vector. + The product vector. + + + Multiplies a vector by a specified scalar. + The vector to multiply. + The scalar value. + The scaled vector. + + + Negates a specified vector. + The vector to negate. + The negated vector. + + + Returns a vector with the same direction as the specified vector, but with a length of one. + The vector to normalize. + The normalized vector. + + + Gets a vector whose 3 elements are equal to one. + A vector whose three elements are equal to one (that is, it returns the vector (1,1,1). + + + Adds two vectors together. + The first vector to add. + The second vector to add. + The summed vector. + + + Divides the first vector by the second. + The first vector. + The second vector. + The vector that results from dividing left by right. + + + Divides the specified vector by a specified scalar value. + The vector. + The scalar value. + The result of the division. + + + Returns a value that indicates whether each pair of elements in two specified vectors is equal. + The first vector to compare. + The second vector to compare. + true if left and right are equal; otherwise, false. + + + Returns a value that indicates whether two specified vectors are not equal. + The first vector to compare. + The second vector to compare. + true if left and right are not equal; otherwise, false. + + + Multiplies two vectors together. + The first vector. + The second vector. + The product vector. + + + Multiples the specified vector by the specified scalar value. + The vector. + The scalar value. + The scaled vector. + + + Multiples the scalar value by the specified vector. + The vector. + The scalar value. + The scaled vector. + + + Subtracts the second vector from the first. + The first vector. + The second vector. + The vector that results from subtracting right from left. + + + Negates the specified vector. + The vector to negate. + The negated vector. + + + Returns the reflection of a vector off a surface that has the specified normal. + The source vector. + The normal of the surface being reflected off. + The reflected vector. + + + Returns a vector whose elements are the square root of each of a specified vector&#39;s elements. + A vector. + The square root vector. + + + Subtracts the second vector from the first. + The first vector. + The second vector. + The difference vector. + + + Returns the string representation of the current instance using default formatting. + The string representation of the current instance. + + + Returns the string representation of the current instance using the specified format string to format individual elements. + A or that defines the format of individual elements. + The string representation of the current instance. + + + Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting. + A or that defines the format of individual elements. + A format provider that supplies culture-specific formatting information. + The string representation of the current instance. + + + Transforms a vector by a specified 4x4 matrix. + The vector to transform. + The transformation matrix. + The transformed vector. + + + Transforms a vector by the specified Quaternion rotation value. + The vector to rotate. + The rotation to apply. + The transformed vector. + + + Transforms a vector normal by the given 4x4 matrix. + The source vector. + The matrix. + The transformed vector. + + + Gets the vector (1,0,0). + The vector (1,0,0). + + + Gets the vector (0,1,0). + The vector (0,1,0).. + + + Gets the vector (0,0,1). + The vector (0,0,1). + + + The X component of the vector. + + + + The Y component of the vector. + + + + The Z component of the vector. + + + + Gets a vector whose 3 elements are equal to zero. + A vector whose three elements are equal to zero (that is, it returns the vector (0,0,0). + + + Represents a vector with four single-precision floating-point values. + + + Creates a new object whose four elements have the same value. + The value to assign to all four elements. + + + Constructs a new object from the specified object and a W component. + The vector to use for the X, Y, and Z components. + The W component. + + + Creates a new object from the specified object and a Z and a W component. + The vector to use for the X and Y components. + The Z component. + The W component. + + + Creates a vector whose elements have the specified values. + The value to assign to the field. + The value to assign to the field. + The value to assign to the field. + The value to assign to the field. + + + Returns a vector whose elements are the absolute values of each of the specified vector&#39;s elements. + A vector. + The absolute value vector. + + + Adds two vectors together. + The first vector to add. + The second vector to add. + The summed vector. + + + Restricts a vector between a minimum and a maximum value. + The vector to restrict. + The minimum value. + The maximum value. + The restricted vector. + + + Copies the elements of the vector to a specified array. + The destination array. + array is null. + The number of elements in the current instance is greater than in the array. + array is multidimensional. + + + Copies the elements of the vector to a specified array starting at a specified index position. + The destination array. + The index at which to copy the first element of the vector. + array is null. + The number of elements in the current instance is greater than in the array. + index is less than zero. + -or- + index is greater than or equal to the array length. + array is multidimensional. + + + Computes the Euclidean distance between the two given points. + The first point. + The second point. + The distance. + + + Returns the Euclidean distance squared between two specified points. + The first point. + The second point. + The distance squared. + + + Divides the first vector by the second. + The first vector. + The second vector. + The vector resulting from the division. + + + Divides the specified vector by a specified scalar value. + The vector. + The scalar value. + The vector that results from the division. + + + Returns the dot product of two vectors. + The first vector. + The second vector. + The dot product. + + + Returns a value that indicates whether this instance and another vector are equal. + The other vector. + true if the two vectors are equal; otherwise, false. + + + Returns a value that indicates whether this instance and a specified object are equal. + The object to compare with the current instance. + true if the current instance and obj are equal; otherwise, false. If obj is null, the method returns false. + + + Returns the hash code for this instance. + The hash code. + + + Returns the length of this vector object. + The vector&#39;s length. + + + Returns the length of the vector squared. + The vector&#39;s length squared. + + + Performs a linear interpolation between two vectors based on the given weighting. + The first vector. + The second vector. + A value between 0 and 1 that indicates the weight of value2. + The interpolated vector. + + + Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors. + The first vector. + The second vector. + The maximized vector. + + + Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors. + The first vector. + The second vector. + The minimized vector. + + + Multiplies two vectors together. + The first vector. + The second vector. + The product vector. + + + Multiplies a vector by a specified scalar. + The vector to multiply. + The scalar value. + The scaled vector. + + + Multiplies a scalar value by a specified vector. + The scaled value. + The vector. + The scaled vector. + + + Negates a specified vector. + The vector to negate. + The negated vector. + + + Returns a vector with the same direction as the specified vector, but with a length of one. + The vector to normalize. + The normalized vector. + + + Gets a vector whose 4 elements are equal to one. + Returns . + + + Adds two vectors together. + The first vector to add. + The second vector to add. + The summed vector. + + + Divides the first vector by the second. + The first vector. + The second vector. + The vector that results from dividing left by right. + + + Divides the specified vector by a specified scalar value. + The vector. + The scalar value. + The result of the division. + + + Returns a value that indicates whether each pair of elements in two specified vectors is equal. + The first vector to compare. + The second vector to compare. + true if left and right are equal; otherwise, false. + + + Returns a value that indicates whether two specified vectors are not equal. + The first vector to compare. + The second vector to compare. + true if left and right are not equal; otherwise, false. + + + Multiplies two vectors together. + The first vector. + The second vector. + The product vector. + + + Multiples the specified vector by the specified scalar value. + The vector. + The scalar value. + The scaled vector. + + + Multiples the scalar value by the specified vector. + The vector. + The scalar value. + The scaled vector. + + + Subtracts the second vector from the first. + The first vector. + The second vector. + The vector that results from subtracting right from left. + + + Negates the specified vector. + The vector to negate. + The negated vector. + + + Returns a vector whose elements are the square root of each of a specified vector&#39;s elements. + A vector. + The square root vector. + + + Subtracts the second vector from the first. + The first vector. + The second vector. + The difference vector. + + + Returns the string representation of the current instance using default formatting. + The string representation of the current instance. + + + Returns the string representation of the current instance using the specified format string to format individual elements. + A or that defines the format of individual elements. + The string representation of the current instance. + + + Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting. + A or that defines the format of individual elements. + A format provider that supplies culture-specific formatting information. + The string representation of the current instance. + + + Transforms a four-dimensional vector by the specified Quaternion rotation value. + The vector to rotate. + The rotation to apply. + The transformed vector. + + + Transforms a four-dimensional vector by a specified 4x4 matrix. + The vector to transform. + The transformation matrix. + The transformed vector. + + + Transforms a three-dimensional vector by the specified Quaternion rotation value. + The vector to rotate. + The rotation to apply. + The transformed vector. + + + Transforms a two-dimensional vector by a specified 4x4 matrix. + The vector to transform. + The transformation matrix. + The transformed vector. + + + Transforms a two-dimensional vector by the specified Quaternion rotation value. + The vector to rotate. + The rotation to apply. + The transformed vector. + + + Transforms a three-dimensional vector by a specified 4x4 matrix. + The vector to transform. + The transformation matrix. + The transformed vector. + + + Gets the vector (0,0,0,1). + The vector (0,0,0,1). + + + Gets the vector (1,0,0,0). + The vector (1,0,0,0). + + + Gets the vector (0,1,0,0). + The vector (0,1,0,0).. + + + Gets a vector whose 4 elements are equal to zero. + The vector (0,0,1,0). + + + The W component of the vector. + + + + The X component of the vector. + + + + The Y component of the vector. + + + + The Z component of the vector. + + + + Gets a vector whose 4 elements are equal to zero. + A vector whose four elements are equal to zero (that is, it returns the vector (0,0,0,0). + + + \ No newline at end of file diff --git a/bin/Release/System.ObjectModel.dll b/bin/Release/System.ObjectModel.dll new file mode 100644 index 0000000..37e1189 Binary files /dev/null and b/bin/Release/System.ObjectModel.dll differ diff --git a/bin/Release/System.Reflection.Extensions.dll b/bin/Release/System.Reflection.Extensions.dll new file mode 100644 index 0000000..6d12687 Binary files /dev/null and b/bin/Release/System.Reflection.Extensions.dll differ diff --git a/bin/Release/System.Reflection.Primitives.dll b/bin/Release/System.Reflection.Primitives.dll new file mode 100644 index 0000000..2c160e9 Binary files /dev/null and b/bin/Release/System.Reflection.Primitives.dll differ diff --git a/bin/Release/System.Reflection.dll b/bin/Release/System.Reflection.dll new file mode 100644 index 0000000..ec0b3d2 Binary files /dev/null and b/bin/Release/System.Reflection.dll differ diff --git a/bin/Release/System.Resources.Reader.dll b/bin/Release/System.Resources.Reader.dll new file mode 100644 index 0000000..a34c693 Binary files /dev/null and b/bin/Release/System.Resources.Reader.dll differ diff --git a/bin/Release/System.Resources.ResourceManager.dll b/bin/Release/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..c4a14ce Binary files /dev/null and b/bin/Release/System.Resources.ResourceManager.dll differ diff --git a/bin/Release/System.Resources.Writer.dll b/bin/Release/System.Resources.Writer.dll new file mode 100644 index 0000000..0ce2946 Binary files /dev/null and b/bin/Release/System.Resources.Writer.dll differ diff --git a/bin/Release/System.Runtime.CompilerServices.Unsafe.dll b/bin/Release/System.Runtime.CompilerServices.Unsafe.dll new file mode 100755 index 0000000..ab18c10 Binary files /dev/null and b/bin/Release/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/bin/Release/System.Runtime.CompilerServices.Unsafe.xml b/bin/Release/System.Runtime.CompilerServices.Unsafe.xml new file mode 100755 index 0000000..7aa4e5d --- /dev/null +++ b/bin/Release/System.Runtime.CompilerServices.Unsafe.xml @@ -0,0 +1,244 @@ + + + + System.Runtime.CompilerServices.Unsafe + + + + Contains generic, low-level functionality for manipulating pointers. + + + Adds an element offset to the given reference. + The reference to add the offset to. + The offset to add. + The type of reference. + A new reference that reflects the addition of offset to pointer. + + + Adds an element offset to the given reference. + The reference to add the offset to. + The offset to add. + The type of reference. + A new reference that reflects the addition of offset to pointer. + + + Adds an element offset to the given void pointer. + The void pointer to add the offset to. + The offset to add. + The type of void pointer. + A new void pointer that reflects the addition of offset to the specified pointer. + + + Adds a byte offset to the given reference. + The reference to add the offset to. + The offset to add. + The type of reference. + A new reference that reflects the addition of byte offset to pointer. + + + Determines whether the specified references point to the same location. + The first reference to compare. + The second reference to compare. + The type of reference. + + if and point to the same location; otherwise, . + + + Casts the given object to the specified type. + The object to cast. + The type which the object will be cast to. + The original object, casted to the given type. + + + Reinterprets the given reference as a reference to a value of type . + The reference to reinterpret. + The type of reference to reinterpret. + The desired type of the reference. + A reference to a value of type . + + + Returns a pointer to the given by-ref parameter. + The object whose pointer is obtained. + The type of object. + A pointer to the given value. + + + Reinterprets the given read-only reference as a reference. + The read-only reference to reinterpret. + The type of reference. + A reference to a value of type . + + + Reinterprets the given location as a reference to a value of type . + The location of the value to reference. + The type of the interpreted location. + A reference to a value of type . + + + Determines the byte offset from origin to target from the given references. + The reference to origin. + The reference to target. + The type of reference. + Byte offset from origin to target i.e. - . + + + Copies a value of type to the given location. + The location to copy to. + A pointer to the value to copy. + The type of value to copy. + + + Copies a value of type to the given location. + The location to copy to. + A reference to the value to copy. + The type of value to copy. + + + Copies bytes from the source address to the destination address. + The destination address to copy to. + The source address to copy from. + The number of bytes to copy. + + + Copies bytes from the source address to the destination address. + The destination address to copy to. + The source address to copy from. + The number of bytes to copy. + + + Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses. + The destination address to copy to. + The source address to copy from. + The number of bytes to copy. + + + Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses. + The destination address to copy to. + The source address to copy from. + The number of bytes to copy. + + + Initializes a block of memory at the given location with a given initial value. + The address of the start of the memory block to initialize. + The value to initialize the block to. + The number of bytes to initialize. + + + Initializes a block of memory at the given location with a given initial value. + The address of the start of the memory block to initialize. + The value to initialize the block to. + The number of bytes to initialize. + + + Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address. + The address of the start of the memory block to initialize. + The value to initialize the block to. + The number of bytes to initialize. + + + Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address. + The address of the start of the memory block to initialize. + The value to initialize the block to. + The number of bytes to initialize. + + + Returns a value that indicates whether a specified reference is greater than another specified reference. + The first value to compare. + The second value to compare. + The type of the reference. + + if is greater than ; otherwise, . + + + Returns a value that indicates whether a specified reference is less than another specified reference. + The first value to compare. + The second value to compare. + The type of the reference. + + if is less than ; otherwise, . + + + Reads a value of type from the given location. + The location to read from. + The type to read. + An object of type read from the given location. + + + Reads a value of type from the given location without assuming architecture dependent alignment of the addresses. + The location to read from. + The type to read. + An object of type read from the given location. + + + Reads a value of type from the given location without assuming architecture dependent alignment of the addresses. + The location to read from. + The type to read. + An object of type read from the given location. + + + Returns the size of an object of the given type parameter. + The type of object whose size is retrieved. + The size of an object of type . + + + Subtracts an element offset from the given reference. + The reference to subtract the offset from. + The offset to subtract. + The type of reference. + A new reference that reflects the subtraction of offset from pointer. + + + Subtracts an element offset from the given reference. + The reference to subtract the offset from. + The offset to subtract. + The type of reference. + A new reference that reflects the subtraction of offset from pointer. + + + Subtracts an element offset from the given void pointer. + The void pointer to subtract the offset from. + The offset to subtract. + The type of the void pointer. + A new void pointer that reflects the subtraction of offset from the specified pointer. + + + Subtracts a byte offset from the given reference. + The reference to subtract the offset from. + The offset to subtract. + The type of reference. + A new reference that reflects the subtraction of byte offset from pointer. + + + Returns a to a boxed value. + The value to unbox. + The type to be unboxed. + A to the boxed value . + + is , and is a non-nullable value type. + + is not a boxed value type. +-or- + is not a boxed . + + cannot be found. + + + Writes a value of type to the given location. + The location to write to. + The value to write. + The type of value to write. + + + Writes a value of type to the given location without assuming architecture dependent alignment of the addresses. + The location to write to. + The value to write. + The type of value to write. + + + Writes a value of type to the given location without assuming architecture dependent alignment of the addresses. + The location to write to. + The value to write. + The type of value to write. + + + \ No newline at end of file diff --git a/bin/Release/System.Runtime.CompilerServices.VisualC.dll b/bin/Release/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..30a2f81 Binary files /dev/null and b/bin/Release/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/bin/Release/System.Runtime.Extensions.dll b/bin/Release/System.Runtime.Extensions.dll new file mode 100644 index 0000000..eb0e80b Binary files /dev/null and b/bin/Release/System.Runtime.Extensions.dll differ diff --git a/bin/Release/System.Runtime.Handles.dll b/bin/Release/System.Runtime.Handles.dll new file mode 100644 index 0000000..37f15ff Binary files /dev/null and b/bin/Release/System.Runtime.Handles.dll differ diff --git a/bin/Release/System.Runtime.InteropServices.RuntimeInformation.dll b/bin/Release/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..2eed08f Binary files /dev/null and b/bin/Release/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/bin/Release/System.Runtime.InteropServices.dll b/bin/Release/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..ab54429 Binary files /dev/null and b/bin/Release/System.Runtime.InteropServices.dll differ diff --git a/bin/Release/System.Runtime.Numerics.dll b/bin/Release/System.Runtime.Numerics.dll new file mode 100644 index 0000000..3202cd9 Binary files /dev/null and b/bin/Release/System.Runtime.Numerics.dll differ diff --git a/bin/Release/System.Runtime.Serialization.Formatters.dll b/bin/Release/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..06b5480 Binary files /dev/null and b/bin/Release/System.Runtime.Serialization.Formatters.dll differ diff --git a/bin/Release/System.Runtime.Serialization.Json.dll b/bin/Release/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..1f30098 Binary files /dev/null and b/bin/Release/System.Runtime.Serialization.Json.dll differ diff --git a/bin/Release/System.Runtime.Serialization.Primitives.dll b/bin/Release/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..19a6dd2 Binary files /dev/null and b/bin/Release/System.Runtime.Serialization.Primitives.dll differ diff --git a/bin/Release/System.Runtime.Serialization.Xml.dll b/bin/Release/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..3a839e2 Binary files /dev/null and b/bin/Release/System.Runtime.Serialization.Xml.dll differ diff --git a/bin/Release/System.Runtime.dll b/bin/Release/System.Runtime.dll new file mode 100644 index 0000000..344ee77 Binary files /dev/null and b/bin/Release/System.Runtime.dll differ diff --git a/bin/Release/System.Security.Claims.dll b/bin/Release/System.Security.Claims.dll new file mode 100644 index 0000000..9cb6423 Binary files /dev/null and b/bin/Release/System.Security.Claims.dll differ diff --git a/bin/Release/System.Security.Cryptography.Algorithms.dll b/bin/Release/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..1698db6 Binary files /dev/null and b/bin/Release/System.Security.Cryptography.Algorithms.dll differ diff --git a/bin/Release/System.Security.Cryptography.Csp.dll b/bin/Release/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..d7721e7 Binary files /dev/null and b/bin/Release/System.Security.Cryptography.Csp.dll differ diff --git a/bin/Release/System.Security.Cryptography.Encoding.dll b/bin/Release/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..f588614 Binary files /dev/null and b/bin/Release/System.Security.Cryptography.Encoding.dll differ diff --git a/bin/Release/System.Security.Cryptography.Primitives.dll b/bin/Release/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..35a21ef Binary files /dev/null and b/bin/Release/System.Security.Cryptography.Primitives.dll differ diff --git a/bin/Release/System.Security.Cryptography.X509Certificates.dll b/bin/Release/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..53d05b2 Binary files /dev/null and b/bin/Release/System.Security.Cryptography.X509Certificates.dll differ diff --git a/bin/Release/System.Security.Principal.dll b/bin/Release/System.Security.Principal.dll new file mode 100644 index 0000000..6d7c2ba Binary files /dev/null and b/bin/Release/System.Security.Principal.dll differ diff --git a/bin/Release/System.Security.SecureString.dll b/bin/Release/System.Security.SecureString.dll new file mode 100644 index 0000000..355a050 Binary files /dev/null and b/bin/Release/System.Security.SecureString.dll differ diff --git a/bin/Release/System.Text.Encoding.CodePages.dll b/bin/Release/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..d9d45a1 Binary files /dev/null and b/bin/Release/System.Text.Encoding.CodePages.dll differ diff --git a/bin/Release/System.Text.Encoding.Extensions.dll b/bin/Release/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..4f2b83d Binary files /dev/null and b/bin/Release/System.Text.Encoding.Extensions.dll differ diff --git a/bin/Release/System.Text.Encoding.dll b/bin/Release/System.Text.Encoding.dll new file mode 100644 index 0000000..557551f Binary files /dev/null and b/bin/Release/System.Text.Encoding.dll differ diff --git a/bin/Release/System.Text.Encodings.Web.dll b/bin/Release/System.Text.Encodings.Web.dll new file mode 100755 index 0000000..e96ba32 Binary files /dev/null and b/bin/Release/System.Text.Encodings.Web.dll differ diff --git a/bin/Release/System.Text.Encodings.Web.xml b/bin/Release/System.Text.Encodings.Web.xml new file mode 100755 index 0000000..c5904a1 --- /dev/null +++ b/bin/Release/System.Text.Encodings.Web.xml @@ -0,0 +1,932 @@ + + + + System.Text.Encodings.Web + + + + Represents an HTML character encoding. + + + Initializes a new instance of the class. + + + Creates a new instance of the HtmlEncoder class with the specified settings. + Settings that control how the instance encodes, primarily which characters to encode. + A new instance of the class. + + is . + + + Creates a new instance of the HtmlEncoder class that specifies characters the encoder is allowed to not encode. + The set of characters that the encoder is allowed to not encode. + A new instance of the class. + + is . + + + Gets a built-in instance of the class. + A built-in instance of the class. + + + Represents a JavaScript character encoding. + + + Initializes a new instance of the class. + + + Creates a new instance of JavaScriptEncoder class with the specified settings. + Settings that control how the instance encodes, primarily which characters to encode. + A new instance of the class. + + is . + + + Creates a new instance of the JavaScriptEncoder class that specifies characters the encoder is allowed to not encode. + The set of characters that the encoder is allowed to not encode. + A new instance of the class. + + is . + + + Gets a built-in instance of the class. + A built-in instance of the class. + + + Gets a built-in JavaScript encoder instance that is less strict about what is encoded. + A JavaScript encoder instance. + + + The base class of web encoders. + + + Initializes a new instance of the class. + + + Encodes characters from an array and writes them to a object. + The stream to which to write the encoded text. + The array of characters to encode. + The array index of the first character to encode. + The number of characters in the array to encode. + + is . + The method failed. The encoder does not implement correctly. + + is . + + is out of range. + + is out of range. + + + Encodes the specified string to a object. + The stream to which to write the encoded text. + The string to encode. + + + Encodes a substring and writes it to a object. + The stream to which to write the encoded text. + The string whose substring is to be encoded. + The index where the substring starts. + The number of characters in the substring. + + is . + The method failed. The encoder does not implement correctly. + + is . + + is out of range. + + is out of range. + + + Encodes the supplied characters. + A source buffer containing the characters to encode. + The destination buffer to which the encoded form of will be written. + The number of characters consumed from the buffer. + The number of characters written to the buffer. + + to indicate there is no further source data that needs to be encoded; otherwise, . + An enumeration value that describes the result of the encoding operation. + + + Encodes the supplied string and returns the encoded text as a new string. + The string to encode. + The encoded string. + + is . + The method failed. The encoder does not implement correctly. + + + Encodes the supplied UTF-8 text. + A source buffer containing the UTF-8 text to encode. + The destination buffer to which the encoded form of will be written. + The number of bytes consumed from the buffer. + The number of bytes written to the buffer. + + to indicate there is no further source data that needs to be encoded; otherwise, . + A status code that describes the result of the encoding operation. + + + Finds the index of the first character to encode. + The text buffer to search. + The number of characters in . + The index of the first character to encode. + + + Finds the first element in a UTF-8 text input buffer that would be escaped by the current encoder instance. + The UTF-8 text input buffer to search. + The index of the first element in that would be escaped by the current encoder instance, or -1 if no data in requires escaping. + + + Gets the maximum number of characters that this encoder can generate for each input code point. + The maximum number of characters. + + + Encodes a Unicode scalar value and writes it to a buffer. + A Unicode scalar value. + A pointer to the buffer to which to write the encoded text. + The length of the destination in characters. + When the method returns, indicates the number of characters written to the . + + if is too small to fit the encoded text; otherwise, returns . + + + Determines if a given Unicode scalar value will be encoded. + A Unicode scalar value. + + if the value will be encoded by this encoder; otherwise, returns . + + + Represents a filter that allows only certain Unicode code points. + + + Instantiates an empty filter (allows no code points through by default). + + + Instantiates a filter by cloning the allowed list of another object. + The other object to be cloned. + + + Instantiates a filter where only the character ranges specified by are allowed by the filter. + The allowed character ranges. + + is . + + + Allows the character specified by through the filter. + The allowed character. + + + Allows all characters specified by through the filter. + The allowed characters. + + is . + + + Allows all code points specified by . + The allowed code points. + + is . + + + Allows all characters specified by through the filter. + The range of characters to be allowed. + + is . + + + Allows all characters specified by through the filter. + The ranges of characters to be allowed. + + is . + + + Resets this object by disallowing all characters. + + + Disallows the character through the filter. + The disallowed character. + + + Disallows all characters specified by through the filter. + The disallowed characters. + + is . + + + Disallows all characters specified by through the filter. + The range of characters to be disallowed. + + is . + + + Disallows all characters specified by through the filter. + The ranges of characters to be disallowed. + + is . + + + Gets an enumerator of all allowed code points. + The enumerator of allowed code points. + + + Represents a URL character encoding. + + + Initializes a new instance of the class. + + + Creates a new instance of UrlEncoder class with the specified settings. + Settings that control how the instance encodes, primarily which characters to encode. + A new instance of the class. + + is . + + + Creates a new instance of the UrlEncoder class that specifies characters the encoder is allowed to not encode. + The set of characters that the encoder is allowed to not encode. + A new instance of the class. + + is . + + + Gets a built-in instance of the class. + A built-in instance of the class. + + + Represents a contiguous range of Unicode code points. + + + Creates a new that includes a specified number of characters starting at a specified Unicode code point. + The first code point in the range. + The number of code points in the range. + + is less than zero or greater than 0xFFFF. +-or- + is less than zero. +-or- + plus is greater than 0xFFFF. + + + Creates a new instance from a span of characters. + The first character in the range. + The last character in the range. + A range that includes all characters between and . + + precedes . + + + Gets the first code point in the range represented by this instance. + The first code point in the range. + + + Gets the number of code points in the range represented by this instance. + The number of code points in the range. + + + Provides static properties that return predefined instances that correspond to blocks from the Unicode specification. + + + Gets a range that consists of the entire Basic Multilingual Plane (BMP), from U+0000 to U+FFFF). + A range that consists of the entire BMP. + + + Gets the Alphabetic Presentation Forms Unicode block (U+FB00-U+FB4F). + The Alphabetic Presentation Forms Unicode block (U+FB00-U+FB4F). + + + Gets the Arabic Unicode block (U+0600-U+06FF). + The Arabic Unicode block (U+0600-U+06FF). + + + Gets the Arabic Extended-A Unicode block (U+08A0-U+08FF). + The Arabic Extended-A Unicode block (U+08A0-U+08FF). + + + Gets the Arabic Presentation Forms-A Unicode block (U+FB50-U+FDFF). + The Arabic Presentation Forms-A Unicode block (U+FB50-U+FDFF). + + + Gets the Arabic Presentation Forms-B Unicode block (U+FE70-U+FEFF). + The Arabic Presentation Forms-B Unicode block (U+FE70-U+FEFF). + + + Gets the Arabic Supplement Unicode block (U+0750-U+077F). + The Arabic Supplement Unicode block (U+0750-U+077F). + + + Gets the Armenian Unicode block (U+0530-U+058F). + The Armenian Unicode block (U+0530-U+058F). + + + Gets the Arrows Unicode block (U+2190-U+21FF). + The Arrows Unicode block (U+2190-U+21FF). + + + Gets the Balinese Unicode block (U+1B00-U+1B7F). + The Balinese Unicode block (U+1B00-U+1B7F). + + + Gets the Bamum Unicode block (U+A6A0-U+A6FF). + The Bamum Unicode block (U+A6A0-U+A6FF). + + + Gets the Basic Latin Unicode block (U+0021-U+007F). + The Basic Latin Unicode block (U+0021-U+007F). + + + Gets the Batak Unicode block (U+1BC0-U+1BFF). + The Batak Unicode block (U+1BC0-U+1BFF). + + + Gets the Bengali Unicode block (U+0980-U+09FF). + The Bengali Unicode block (U+0980-U+09FF). + + + Gets the Block Elements Unicode block (U+2580-U+259F). + The Block Elements Unicode block (U+2580-U+259F). + + + Gets the Bopomofo Unicode block (U+3100-U+312F). + The Bopomofo Unicode block (U+3105-U+312F). + + + Gets the Bopomofo Extended Unicode block (U+31A0-U+31BF). + The Bopomofo Extended Unicode block (U+31A0-U+31BF). + + + Gets the Box Drawing Unicode block (U+2500-U+257F). + The Box Drawing Unicode block (U+2500-U+257F). + + + Gets the Braille Patterns Unicode block (U+2800-U+28FF). + The Braille Patterns Unicode block (U+2800-U+28FF). + + + Gets the Buginese Unicode block (U+1A00-U+1A1F). + The Buginese Unicode block (U+1A00-U+1A1F). + + + Gets the Buhid Unicode block (U+1740-U+175F). + The Buhid Unicode block (U+1740-U+175F). + + + Gets the Cham Unicode block (U+AA00-U+AA5F). + The Cham Unicode block (U+AA00-U+AA5F). + + + Gets the Cherokee Unicode block (U+13A0-U+13FF). + The Cherokee Unicode block (U+13A0-U+13FF). + + + Gets the Cherokee Supplement Unicode block (U+AB70-U+ABBF). + The Cherokee Supplement Unicode block (U+AB70-U+ABBF). + + + Gets the CJK Compatibility Unicode block (U+3300-U+33FF). + The CJK Compatibility Unicode block (U+3300-U+33FF). + + + Gets the CJK Compatibility Forms Unicode block (U+FE30-U+FE4F). + The CJK Compatibility Forms Unicode block (U+FE30-U+FE4F). + + + Gets the CJK Compatibility Ideographs Unicode block (U+F900-U+FAD9). + The CJK Compatibility Ideographs Unicode block (U+F900-U+FAD9). + + + Gets the CJK Radicals Supplement Unicode block (U+2E80-U+2EFF). + The CJK Radicals Supplement Unicode block (U+2E80-U+2EFF). + + + Gets the CJK Strokes Unicode block (U+31C0-U+31EF). + The CJK Strokes Unicode block (U+31C0-U+31EF). + + + Gets the CJK Symbols and Punctuation Unicode block (U+3000-U+303F). + The CJK Symbols and Punctuation Unicode block (U+3000-U+303F). + + + Gets the CJK Unified Ideographs Unicode block (U+4E00-U+9FCC). + The CJK Unified Ideographs Unicode block (U+4E00-U+9FCC). + + + Gets the CJK Unitied Ideographs Extension A Unicode block (U+3400-U+4DB5). + The CJK Unitied Ideographs Extension A Unicode block (U+3400-U+4DB5). + + + Gets the Combining Diacritical Marks Unicode block (U+0300-U+036F). + The Combining Diacritical Marks Unicode block (U+0300-U+036F). + + + Gets the Combining Diacritical Marks Extended Unicode block (U+1AB0-U+1AFF). + The Combining Diacritical Marks Extended Unicode block (U+1AB0-U+1AFF). + + + Gets the Combining Diacritical Marks for Symbols Unicode block (U+20D0-U+20FF). + The Combining Diacritical Marks for Symbols Unicode block (U+20D0-U+20FF). + + + Gets the Combining Diacritical Marks Supplement Unicode block (U+1DC0-U+1DFF). + The Combining Diacritical Marks Supplement Unicode block (U+1DC0-U+1DFF). + + + Gets the Combining Half Marks Unicode block (U+FE20-U+FE2F). + The Combining Half Marks Unicode block (U+FE20-U+FE2F). + + + Gets the Common Indic Number Forms Unicode block (U+A830-U+A83F). + The Common Indic Number Forms Unicode block (U+A830-U+A83F). + + + Gets the Control Pictures Unicode block (U+2400-U+243F). + The Control Pictures Unicode block (U+2400-U+243F). + + + Gets the Coptic Unicode block (U+2C80-U+2CFF). + The Coptic Unicode block (U+2C80-U+2CFF). + + + Gets the Currency Symbols Unicode block (U+20A0-U+20CF). + The Currency Symbols Unicode block (U+20A0-U+20CF). + + + Gets the Cyrillic Unicode block (U+0400-U+04FF). + The Cyrillic Unicode block (U+0400-U+04FF). + + + Gets the Cyrillic Extended-A Unicode block (U+2DE0-U+2DFF). + The Cyrillic Extended-A Unicode block (U+2DE0-U+2DFF). + + + Gets the Cyrillic Extended-B Unicode block (U+A640-U+A69F). + The Cyrillic Extended-B Unicode block (U+A640-U+A69F). + + + A corresponding to the 'Cyrillic Extended-C' Unicode block (U+1C80..U+1C8F). + + + Gets the Cyrillic Supplement Unicode block (U+0500-U+052F). + The Cyrillic Supplement Unicode block (U+0500-U+052F). + + + Gets the Devangari Unicode block (U+0900-U+097F). + The Devangari Unicode block (U+0900-U+097F). + + + Gets the Devanagari Extended Unicode block (U+A8E0-U+A8FF). + The Devanagari Extended Unicode block (U+A8E0-U+A8FF). + + + Gets the Dingbats Unicode block (U+2700-U+27BF). + The Dingbats Unicode block (U+2700-U+27BF). + + + Gets the Enclosed Alphanumerics Unicode block (U+2460-U+24FF). + The Enclosed Alphanumerics Unicode block (U+2460-U+24FF). + + + Gets the Enclosed CJK Letters and Months Unicode block (U+3200-U+32FF). + The Enclosed CJK Letters and Months Unicode block (U+3200-U+32FF). + + + Gets the Ethiopic Unicode block (U+1200-U+137C). + The Ethiopic Unicode block (U+1200-U+137C). + + + Gets the Ethipic Extended Unicode block (U+2D80-U+2DDF). + The Ethipic Extended Unicode block (U+2D80-U+2DDF). + + + Gets the Ethiopic Extended-A Unicode block (U+AB00-U+AB2F). + The Ethiopic Extended-A Unicode block (U+AB00-U+AB2F). + + + Gets the Ethiopic Supplement Unicode block (U+1380-U+1399). + The Ethiopic Supplement Unicode block (U+1380-U+1399). + + + Gets the General Punctuation Unicode block (U+2000-U+206F). + The General Punctuation Unicode block (U+2000-U+206F). + + + Gets the Geometric Shapes Unicode block (U+25A0-U+25FF). + The Geometric Shapes Unicode block (U+25A0-U+25FF). + + + Gets the Georgian Unicode block (U+10A0-U+10FF). + The Georgian Unicode block (U+10A0-U+10FF). + + + A corresponding to the 'Georgian Extended' Unicode block (U+1C90..U+1CBF). + + + Gets the Georgian Supplement Unicode block (U+2D00-U+2D2F). + The Georgian Supplement Unicode block (U+2D00-U+2D2F). + + + Gets the Glagolitic Unicode block (U+2C00-U+2C5F). + The Glagolitic Unicode block (U+2C00-U+2C5F). + + + Gets the Greek and Coptic Unicode block (U+0370-U+03FF). + The Greek and Coptic Unicode block (U+0370-U+03FF). + + + Gets the Greek Extended Unicode block (U+1F00-U+1FFF). + The Greek Extended Unicode block (U+1F00-U+1FFF). + + + Gets the Gujarti Unicode block (U+0A81-U+0AFF). + The Gujarti Unicode block (U+0A81-U+0AFF). + + + Gets the Gurmukhi Unicode block (U+0A01-U+0A7F). + The Gurmukhi Unicode block (U+0A01-U+0A7F). + + + Gets the Halfwidth and Fullwidth Forms Unicode block (U+FF00-U+FFEE). + The Halfwidth and Fullwidth Forms Unicode block (U+FF00-U+FFEE). + + + Gets the Hangul Compatibility Jamo Unicode block (U+3131-U+318F). + The Hangul Compatibility Jamo Unicode block (U+3131-U+318F). + + + Gets the Hangul Jamo Unicode block (U+1100-U+11FF). + The Hangul Jamo Unicode block (U+1100-U+11FF). + + + Gets the Hangul Jamo Extended-A Unicode block (U+A960-U+A9F). + The Hangul Jamo Extended-A Unicode block (U+A960-U+A97F). + + + Gets the Hangul Jamo Extended-B Unicode block (U+D7B0-U+D7FF). + The Hangul Jamo Extended-B Unicode block (U+D7B0-U+D7FF). + + + Gets the Hangul Syllables Unicode block (U+AC00-U+D7AF). + The Hangul Syllables Unicode block (U+AC00-U+D7AF). + + + Gets the Hanunoo Unicode block (U+1720-U+173F). + The Hanunoo Unicode block (U+1720-U+173F). + + + Gets the Hebrew Unicode block (U+0590-U+05FF). + The Hebrew Unicode block (U+0590-U+05FF). + + + Gets the Hiragana Unicode block (U+3040-U+309F). + The Hiragana Unicode block (U+3040-U+309F). + + + Gets the Ideographic Description Characters Unicode block (U+2FF0-U+2FFF). + The Ideographic Description Characters Unicode block (U+2FF0-U+2FFF). + + + Gets the IPA Extensions Unicode block (U+0250-U+02AF). + The IPA Extensions Unicode block (U+0250-U+02AF). + + + Gets the Javanese Unicode block (U+A980-U+A9DF). + The Javanese Unicode block (U+A980-U+A9DF). + + + Gets the Kanbun Unicode block (U+3190-U+319F). + The Kanbun Unicode block (U+3190-U+319F). + + + Gets the Kangxi Radicals Supplement Unicode block (U+2F00-U+2FDF). + The Kangxi Radicals Supplement Unicode block (U+2F00-U+2FDF). + + + Gets the Kannada Unicode block (U+0C81-U+0CFF). + The Kannada Unicode block (U+0C81-U+0CFF). + + + Gets the Katakana Unicode block (U+30A0-U+30FF). + The Katakana Unicode block (U+30A0-U+30FF). + + + Gets the Katakana Phonetic Extensions Unicode block (U+31F0-U+31FF). + The Katakana Phonetic Extensions Unicode block (U+31F0-U+31FF). + + + Gets the Kayah Li Unicode block (U+A900-U+A92F). + The Kayah Li Unicode block (U+A900-U+A92F). + + + Gets the Khmer Unicode block (U+1780-U+17FF). + The Khmer Unicode block (U+1780-U+17FF). + + + Gets the Khmer Symbols Unicode block (U+19E0-U+19FF). + The Khmer Symbols Unicode block (U+19E0-U+19FF). + + + Gets the Lao Unicode block (U+0E80-U+0EDF). + The Lao Unicode block (U+0E80-U+0EDF). + + + Gets the Latin-1 Supplement Unicode block (U+00A1-U+00FF). + The Latin-1 Supplement Unicode block (U+00A1-U+00FF). + + + Gets the Latin Extended-A Unicode block (U+0100-U+017F). + The Latin Extended-A Unicode block (U+0100-U+017F). + + + Gets the Latin Extended Additional Unicode block (U+1E00-U+1EFF). + The Latin Extended Additional Unicode block (U+1E00-U+1EFF). + + + Gets the Latin Extended-B Unicode block (U+0180-U+024F). + The Latin Extended-B Unicode block (U+0180-U+024F). + + + Gets the Latin Extended-C Unicode block (U+2C60-U+2C7F). + The Latin Extended-C Unicode block (U+2C60-U+2C7F). + + + Gets the Latin Extended-D Unicode block (U+A720-U+A7FF). + The Latin Extended-D Unicode block (U+A720-U+A7FF). + + + Gets the Latin Extended-E Unicode block (U+AB30-U+AB6F). + The Latin Extended-E Unicode block (U+AB30-U+AB6F). + + + Gets the Lepcha Unicode block (U+1C00-U+1C4F). + The Lepcha Unicode block (U+1C00-U+1C4F). + + + Gets the Letterlike Symbols Unicode block (U+2100-U+214F). + The Letterlike Symbols Unicode block (U+2100-U+214F). + + + Gets the Limbu Unicode block (U+1900-U+194F). + The Limbu Unicode block (U+1900-U+194F). + + + Gets the Lisu Unicode block (U+A4D0-U+A4FF). + The Lisu Unicode block (U+A4D0-U+A4FF). + + + Gets the Malayalam Unicode block (U+0D00-U+0D7F). + The Malayalam Unicode block (U+0D00-U+0D7F). + + + Gets the Mandaic Unicode block (U+0840-U+085F). + The Mandaic Unicode block (U+0840-U+085F). + + + Gets the Mathematical Operators Unicode block (U+2200-U+22FF). + The Mathematical Operators Unicode block (U+2200-U+22FF). + + + Gets the Meetei Mayek Unicode block (U+ABC0-U+ABFF). + The Meetei Mayek Unicode block (U+ABC0-U+ABFF). + + + Gets the Meetei Mayek Extensions Unicode block (U+AAE0-U+AAFF). + The Meetei Mayek Extensions Unicode block (U+AAE0-U+AAFF). + + + Gets the Miscellaneous Mathematical Symbols-A Unicode block (U+27C0-U+27EF). + The Miscellaneous Mathematical Symbols-A Unicode block (U+27C0-U+27EF). + + + Gets the Miscellaneous Mathematical Symbols-B Unicode block (U+2980-U+29FF). + The Miscellaneous Mathematical Symbols-B Unicode block (U+2980-U+29FF). + + + Gets the Miscellaneous Symbols Unicode block (U+2600-U+26FF). + The Miscellaneous Symbols Unicode block (U+2600-U+26FF). + + + Gets the Miscellaneous Symbols and Arrows Unicode block (U+2B00-U+2BFF). + The Miscellaneous Symbols and Arrows Unicode block (U+2B00-U+2BFF). + + + Gets the Miscellaneous Technical Unicode block (U+2300-U+23FF). + The Miscellaneous Technical Unicode block (U+2300-U+23FF). + + + Gets the Modifier Tone Letters Unicode block (U+A700-U+A71F). + The Modifier Tone Letters Unicode block (U+A700-U+A71F). + + + Gets the Mongolian Unicode block (U+1800-U+18AF). + The Mongolian Unicode block (U+1800-U+18AF). + + + Gets the Myanmar Unicode block (U+1000-U+109F). + The Myanmar Unicode block (U+1000-U+109F). + + + Gets the Myanmar Extended-A Unicode block (U+AA60-U+AA7F). + The Myanmar Extended-A Unicode block (U+AA60-U+AA7F). + + + Gets the Myanmar Extended-B Unicode block (U+A9E0-U+A9FF). + The Myanmar Extended-B Unicode block (U+A9E0-U+A9FF). + + + Gets the New Tai Lue Unicode block (U+1980-U+19DF). + The New Tai Lue Unicode block (U+1980-U+19DF). + + + Gets the NKo Unicode block (U+07C0-U+07FF). + The NKo Unicode block (U+07C0-U+07FF). + + + Gets an empty Unicode range. + A Unicode range with no elements. + + + Gets the Number Forms Unicode block (U+2150-U+218F). + The Number Forms Unicode block (U+2150-U+218F). + + + Gets the Ogham Unicode block (U+1680-U+169F). + The Ogham Unicode block (U+1680-U+169F). + + + Gets the Ol Chiki Unicode block (U+1C50-U+1C7F). + The Ol Chiki Unicode block (U+1C50-U+1C7F). + + + Gets the Optical Character Recognition Unicode block (U+2440-U+245F). + The Optical Character Recognition Unicode block (U+2440-U+245F). + + + Gets the Oriya Unicode block (U+0B00-U+0B7F). + The Oriya Unicode block (U+0B00-U+0B7F). + + + Gets the Phags-pa Unicode block (U+A840-U+A87F). + The Phags-pa Unicode block (U+A840-U+A87F). + + + Gets the Phonetic Extensions Unicode block (U+1D00-U+1D7F). + The Phonetic Extensions Unicode block (U+1D00-U+1D7F). + + + Gets the Phonetic Extensions Supplement Unicode block (U+1D80-U+1DBF). + The Phonetic Extensions Supplement Unicode block (U+1D80-U+1DBF). + + + Gets the Rejang Unicode block (U+A930-U+A95F). + The Rejang Unicode block (U+A930-U+A95F). + + + Gets the Runic Unicode block (U+16A0-U+16FF). + The Runic Unicode block (U+16A0-U+16FF). + + + Gets the Samaritan Unicode block (U+0800-U+083F). + The Samaritan Unicode block (U+0800-U+083F). + + + Gets the Saurashtra Unicode block (U+A880-U+A8DF). + The Saurashtra Unicode block (U+A880-U+A8DF). + + + Gets the Sinhala Unicode block (U+0D80-U+0DFF). + The Sinhala Unicode block (U+0D80-U+0DFF). + + + Gets the Small Form Variants Unicode block (U+FE50-U+FE6F). + The Small Form Variants Unicode block (U+FE50-U+FE6F). + + + Gets the Spacing Modifier Letters Unicode block (U+02B0-U+02FF). + The Spacing Modifier Letters Unicode block (U+02B0-U+02FF). + + + Gets the Specials Unicode block (U+FFF0-U+FFFF). + The Specials Unicode block (U+FFF0-U+FFFF). + + + Gets the Sundanese Unicode block (U+1B80-U+1BBF). + The Sundanese Unicode block (U+1B80-U+1BBF). + + + Gets the Sundanese Supplement Unicode block (U+1CC0-U+1CCF). + The Sundanese Supplement Unicode block (U+1CC0-U+1CCF). + + + Gets the Superscripts and Subscripts Unicode block (U+2070-U+209F). + The Superscripts and Subscripts Unicode block (U+2070-U+209F). + + + Gets the Supplemental Arrows-A Unicode block (U+27F0-U+27FF). + The Supplemental Arrows-A Unicode block (U+27F0-U+27FF). + + + Gets the Supplemental Arrows-B Unicode block (U+2900-U+297F). + The Supplemental Arrows-B Unicode block (U+2900-U+297F). + + + Gets the Supplemental Mathematical Operators Unicode block (U+2A00-U+2AFF). + The Supplemental Mathematical Operators Unicode block (U+2A00-U+2AFF). + + + Gets the Supplemental Punctuation Unicode block (U+2E00-U+2E7F). + The Supplemental Punctuation Unicode block (U+2E00-U+2E7F). + + + Gets the Syloti Nagri Unicode block (U+A800-U+A82F). + The Syloti Nagri Unicode block (U+A800-U+A82F). + + + Gets the Syriac Unicode block (U+0700-U+074F). + The Syriac Unicode block (U+0700-U+074F). + + + A corresponding to the 'Syriac Supplement' Unicode block (U+0860..U+086F). + + + Gets the Tagalog Unicode block (U+1700-U+171F). + The Tagalog Unicode block (U+1700-U+171F). + + + Gets the Tagbanwa Unicode block (U+1760-U+177F). + The Tagbanwa Unicode block (U+1760-U+177F). + + + Gets the Tai Le Unicode block (U+1950-U+197F). + The Tai Le Unicode block (U+1950-U+197F). + + + Gets the Tai Tham Unicode block (U+1A20-U+1AAF). + The Tai Tham Unicode block (U+1A20-U+1AAF). + + + Gets the Tai Viet Unicode block (U+AA80-U+AADF). + The Tai Viet Unicode block (U+AA80-U+AADF). + + + Gets the Tamil Unicode block (U+0B80-U+0BFF). + The Tamil Unicode block (U+0B82-U+0BFA). + + + Gets the Telugu Unicode block (U+0C00-U+0C7F). + The Telugu Unicode block (U+0C00-U+0C7F). + + + Gets the Thaana Unicode block (U+0780-U+07BF). + The Thaana Unicode block (U+0780-U+07BF). + + + Gets the Thai Unicode block (U+0E00-U+0E7F). + The Thai Unicode block (U+0E00-U+0E7F). + + + Gets the Tibetan Unicode block (U+0F00-U+0FFF). + The Tibetan Unicode block (U+0F00-U+0FFF). + + + Gets the Tifinagh Unicode block (U+2D30-U+2D7F). + The Tifinagh Unicode block (U+2D30-U+2D7F). + + + Gets the Unified Canadian Aboriginal Syllabics Unicode block (U+1400-U+167F). + The Unified Canadian Aboriginal Syllabics Unicode block (U+1400-U+167F). + + + Gets the Unified Canadian Aboriginal Syllabics Extended Unicode block (U+18B0-U+18FF). + The Unified Canadian Aboriginal Syllabics Extended Unicode block (U+18B0-U+18FF). + + + Gets the Vai Unicode block (U+A500-U+A63F). + The Vai Unicode block (U+A500-U+A63F). + + + Gets the Variation Selectors Unicode block (U+FE00-U+FE0F). + The Variation Selectors Unicode block (U+FE00-U+FE0F). + + + Gets the Vedic Extensions Unicode block (U+1CD0-U+1CFF). + The Vedic Extensions Unicode block (U+1CD0-U+1CFF). + + + Gets the Vertical Forms Unicode block (U+FE10-U+FE1F). + The Vertical Forms Unicode block (U+FE10-U+FE1F). + + + Gets the Yijing Hexagram Symbols Unicode block (U+4DC0-U+4DFF). + The Yijing Hexagram Symbols Unicode block (U+4DC0-U+4DFF). + + + Gets the Yi Radicals Unicode block (U+A490-U+A4CF). + The Yi Radicals Unicode block (U+A490-U+A4CF). + + + Gets the Yi Syllables Unicode block (U+A000-U+A48F). + The Yi Syllables Unicode block (U+A000-U+A48F). + + + \ No newline at end of file diff --git a/bin/Release/System.Text.Json.dll b/bin/Release/System.Text.Json.dll new file mode 100755 index 0000000..a3a85c2 Binary files /dev/null and b/bin/Release/System.Text.Json.dll differ diff --git a/bin/Release/System.Text.Json.xml b/bin/Release/System.Text.Json.xml new file mode 100755 index 0000000..3de6bfe --- /dev/null +++ b/bin/Release/System.Text.Json.xml @@ -0,0 +1,2346 @@ + + + + System.Text.Json + + + + Defines how the struct handles comments. + + + Allows comments within the JSON input and treats them as valid tokens. While reading, the caller can access the comment values. + + + Doesn't allow comments within the JSON input. Comments are treated as invalid JSON if found, and a is thrown. This is the default value. + + + Allows comments within the JSON input and ignores them. The behaves as if no comments are present. + + + Provides a mechanism for examining the structural content of a JSON value without automatically instantiating data values. + + + Releases the resources used by this instance. + + + Parses a sequence as UTF-8-encoded text representing a single JSON byte value into a JsonDocument. + The JSON text to parse. + Options to control the reader behavior during parsing. + A JsonDocument representation of the JSON value. + + does not represent a valid single JSON value. + + contains unsupported options. + + + Parses a as UTF-8-encoded data representing a single JSON value into a JsonDocument. The stream is read to completion. + The JSON data to parse. + Options to control the reader behavior during parsing. + A JsonDocument representation of the JSON value. + + does not represent a valid single JSON value. + + contains unsupported options. + + + Parses memory as UTF-8-encoded text representing a single JSON byte value into a JsonDocument. + The JSON text to parse. + Options to control the reader behavior during parsing. + A JsonDocument representation of the JSON value. + + does not represent a valid single JSON value. + + contains unsupported options. + + + Parses text representing a single JSON character value into a JsonDocument. + The JSON text to parse. + Options to control the reader behavior during parsing. + A JsonDocument representation of the JSON value. + + does not represent a valid single JSON value. + + contains unsupported options. + + + Parses text representing a single JSON string value into a JsonDocument. + The JSON text to parse. + Options to control the reader behavior during parsing. + A JsonDocument representation of the JSON value. + + does not represent a valid single JSON value. + + contains unsupported options. + + + Parses a as UTF-8-encoded data representing a single JSON value into a JsonDocument. The stream is read to completion. + The JSON data to parse. + Options to control the reader behavior during parsing. + The token to monitor for cancellation requests. + A task to produce a JsonDocument representation of the JSON value. + + does not represent a valid single JSON value. + + contains unsupported options. + + + Parses one JSON value (including objects or arrays) from the provided reader. + The reader to read. + A JsonDocument representing the value (and nested values) read from the reader. + + contains unsupported options. +-or- +The current token does not start or represent a value. + A value could not be read from the reader. + + + Gets the root element of this JSON document. + A representing the value of the document. + + + Attempts to parse one JSON value (including objects or arrays) from the provided reader. + The reader to read. + When the method returns, contains the parsed document. + + if a value was read and parsed into a JsonDocument; if the reader ran out of data while parsing. All other situations result in an exception being thrown. + + contains unsupported options. +-or- +The current token does not start or represent a value. + A value could not be read from the reader. + + + Writes the document to the provided writer as a JSON value. + The writer to which to write the document. + The parameter is . + The of this would result in invalid JSON. + The parent has been disposed. + + + Provides the ability for the user to define custom behavior when parsing JSON to create a . + + + Gets or sets a value that indicates whether an extra comma at the end of a list of JSON values in an object or array is allowed (and ignored) within the JSON payload being read. + + if an extra comma at the end of a list of JSON values in an object or array is allowed; otherwise, . Default is + + + Gets or sets a value that determines how the handles comments when reading through the JSON data. + One of the enumeration values that indicates how comments are handled. + The comment handling enum is set to a value that is not supported (or not within the enum range). + + + Gets or sets the maximum depth allowed when parsing JSON data, with the default (that is, 0) indicating a maximum depth of 64. + The maximum depth allowed when parsing JSON data. + The max depth is set to a negative value. + + + Represents a specific JSON value within a . + + + Represents an enumerator for the contents of a JSON array. + + + Gets the element in the collection at the current position of the enumerator. + The element in the collection at the current position of the enumerator. + + + Releases the resources used by this instance. + + + Returns an enumerator that iterates through a collection. + An enumerator that can be used to iterate through the array. + + + Advances the enumerator to the next element of the collection. + + if the enumerator was successfully advanced to the next element; if the enumerator has passed the end of the collection. + + + Sets the enumerator to its initial position, which is before the first element in the collection. + + + Returns an enumerator that iterates through a collection. + An enumerator for an array of that can be used to iterate through the collection. + + + Returns an enumerator that iterates through a collection. + An enumerator that can be used to iterate through the collection. + + + Gets the element in the collection at the current position of the enumerator. + The element in the collection at the current position of the enumerator. + + + Gets a JsonElement that can be safely stored beyond the lifetime of the original . + A JsonElement that can be safely stored beyond the lifetime of the original . + + + Gets an enumerator to enumerate the values in the JSON array represented by this JsonElement. + An enumerator to enumerate the values in the JSON array represented by this JsonElement. + This value's is not . + The parent has been disposed. + + + Gets an enumerator to enumerate the properties in the JSON object represented by this JsonElement. + An enumerator to enumerate the properties in the JSON object represented by this JsonElement. + This value's is not . + The parent has been disposed. + + + Gets the number of values contained within the current array value. + The number of values contained within the current array value. + This value's is not . + The parent has been disposed. + + + Gets the value of the element as a . + The value of the element as a . + This value's is neither nor . + The parent has been disposed. + + + Gets the current JSON number as a . + The current JSON number as a . + This value's is not . + The value cannot be represented as a . + The parent has been disposed. + + + Gets the value of the element as a byte array. + The value decoded as a byte array. + This value's is not . + The value is not encoded as Base64 text and hence cannot be decoded to bytes. + The parent has been disposed. + + + Gets the value of the element as a . + The value of the element as a . + This value's is not . + The value cannot be read as a . + The parent has been disposed. + + + Gets the value of the element as a . + The value of the element as a . + This value's is not . + The value cannot be read as a . + The parent has been disposed. + + + Gets the current JSON number as a . + The current JSON number as a . + This value's is not . + The value cannot be represented as a . + The parent has been disposed. + + + Gets the current JSON number as a . + The current JSON number as a . + This value's is not . + The value cannot be represented as a . + The parent has been disposed. + + + Gets the value of the element as a . + The value of the element as a . + This value's is not . + The value cannot be represented as a . + The parent has been disposed. + + + Gets the current JSON number as an . + The current JSON number as an . + This value's is not . + The value cannot be represented as an . + The parent has been disposed. + + + Gets the current JSON number as an . + The current JSON number as an . + This value's is not . + The value cannot be represented as an . + The parent has been disposed. + + + Gets the current JSON number as an . + The current JSON number as an . + This value's is not . + The value cannot be represented as a . + The parent has been disposed. + + + Gets a representing the value of a required property identified by . + The UTF-8 representation (with no Byte-Order-Mark (BOM)) of the name of the property to return. + A representing the value of the requested property. + This value's is not . + No property was found with the requested name. + The parent has been disposed. + + + Gets a representing the value of a required property identified by . + The name of the property whose value is to be returned. + A representing the value of the requested property. + This value's is not . + No property was found with the requested name. + The parent has been disposed. + + + Gets a representing the value of a required property identified by . + The name of the property whose value is to be returned. + A representing the value of the requested property. + This value's is not . + No property was found with the requested name. + + is . + The parent has been disposed. + + + Gets a string that represents the original input data backing this value. + The original input data backing this value. + The parent has been disposed. + + + Gets the current JSON number as an . + The current JSON number as an . + This value's is not . + The value cannot be represented as an . + The parent has been disposed. + + + Gets the current JSON number as a . + The current JSON number as a . + This value's is not . + The value cannot be represented as a . + The parent has been disposed. + + + Gets the value of the element as a . + The value of the element as a . + This value's is neither nor . + The parent has been disposed. + + + Gets the current JSON number as a . + The current JSON number as a . + This value's is not . + The value cannot be represented as a . + The parent has been disposed. + + + Gets the current JSON number as a . + The current JSON number as a . + This value's is not . + The value cannot be represented as a . + The parent has been disposed. + + + Gets the current JSON number as a . + The current JSON number as a . + This value's is not . + The value cannot be represented as a . + The parent has been disposed. + + + Gets the value at the specified index if the current value is an . + The item index. + The value at the specified index. + This value's is not . + + is not in the range [0, ()). + The parent has been disposed. + + + Represents an enumerator for the properties of a JSON object. + + + Gets the element in the collection at the current position of the enumerator. + The element in the collection at the current position of the enumerator. + + + Releases the resources used by this instance. + + + Returns an enumerator that iterates the properties of an object. + An enumerator that can be used to iterate through the object. + + + Advances the enumerator to the next element of the collection. + + if the enumerator was successfully advanced to the next element; if the enumerator has passed the end of the collection. + + + Sets the enumerator to its initial position, which is before the first element in the collection. + + + Returns an enumerator that iterates through a collection. + An enumerator for objects that can be used to iterate through the collection. + + + Returns an enumerator that iterates through a collection. + An enumerator that can be used to iterate through the collection. + + + Gets the element in the collection at the current position of the enumerator. + The element in the collection at the current position of the enumerator. + + + Gets a string representation for the current value appropriate to the value type. + A string representation for the current value appropriate to the value type. + The parent has been disposed. + + + Attempts to represent the current JSON number as a . + When the method returns, contains the byte equivalent of the current JSON number if the conversion succeeded. + + if the number can be represented as a ; otherwise, . + This value's is not . + The parent has been disposed. + + + Attempts to represent the current JSON string as a byte array, assuming that it is Base64 encoded. + If the method succeeds, contains the decoded binary representation of the Base64 text. + + if the entire token value is encoded as valid Base64 text and can be successfully decoded to bytes; otherwise, . + This value's is not . + The parent has been disposed. + + + Attempts to represent the current JSON string as a . + When this method returns, contains the date and time value equivalent to the current JSON string. + + if the string can be represented as a ; otherwise, . + This value's is not . + The parent has been disposed. + + + Attempts to represent the current JSON string as a . + When this method returns, contains the date and time equivalent to the current JSON string. + + if the string can be represented as a ; otherwise, . + This value's is not . + The parent has been disposed. + + + Attempts to represent the current JSON number as a . + When this method returns, contains the decimal equivalent of the current JSON number. + + if the number can be represented as a ; otherwise, . + This value's is not . + The parent has been disposed. + + + Attempts to represent the current JSON number as a . + When this method returns, contains a double-precision floating point value equivalent to the current JSON number. + + if the number can be represented as a ; otherwise, . + This value's is not . + The parent has been disposed. + + + Attempts to represent the current JSON string as a . + When this method returns, contains the GUID equivalent to the current JSON string. + + if the string can be represented as a ; otherwise, . + This value's is not . + The parent has been disposed. + + + Attempts to represent the current JSON number as an . + When the method returns, contains the 16-bit integer equivalent of the current JSON number if the conversion succeeded. + + if the number can be represented as an ; otherwise, . + This value's is not . + The parent has been disposed. + + + Attempts to represent the current JSON number as an . + When this method returns, contains the 32-biut integer value equivalent to the current JSON number. + + if the number can be represented as an ; otherwise, . + This value's is not . + The parent has been disposed. + + + Attempts to represent the current JSON number as a . + When this method returns, contains the 64-bit integer value equivalent to the current JSON number. + + if the number can be represented as a ; otherwise, . + This value's is not . + The parent has been disposed. + + + Looks for a property named in the current object, returning a value that indicates whether or not such a property exists. When the property exists, the method assigns its value to the argument. + The UTF-8 (with no Byte-Order-Mark (BOM)) representation of the name of the property to return. + Receives the value of the located property. + + if the property was found; otherwise, . + This value's is not . + The parent has been disposed. + + + Looks for a property named in the current object, returning a value that indicates whether or not such a property exists. When the property exists, the method assigns its value to the argument. + The name of the property to find. + When this method returns, contains the value of the specified property. + + if the property was found; otherwise, . + This value's is not . + The parent has been disposed. + + + Looks for a property named in the current object, returning a value that indicates whether or not such a property exists. When the property exists, its value is assigned to the argument. + The name of the property to find. + When this method returns, contains the value of the specified property. + + if the property was found; otherwise, . + This value's is not . + + is . + The parent has been disposed. + + + Attempts to represent the current JSON number as an . + When the method returns, contains the signed byte equivalent of the current JSON number if the conversion succeeded. + + if the number can be represented as an ; otherwise, . + This value's is not . + The parent has been disposed. + + + Attempts to represent the current JSON number as a . + When this method returns, contains the single-precision floating point value equivalent to the current JSON number. + + if the number can be represented as a ; otherwise, . + This value's is not . + The parent has been disposed. + + + Attempts to represent the current JSON number as a . + When the method returns, contains the unsigned 16-bit integer equivalent of the current JSON number if the conversion succeeded. + + if the number can be represented as a ; otherwise, . + This value's is not . + The parent has been disposed. + + + Attempts to represent the current JSON number as a . + When this method returns, contains unsigned 32-bit integer value equivalent to the current JSON number. + + if the number can be represented as a ; otherwise, . + This value's is not . + The parent has been disposed. + + + Attempts to represent the current JSON number as a . + When this method returns, contains unsigned 64-bit integer value equivalent to the current JSON number. + + if the number can be represented as a ; otherwise, . + This value's is not . + The parent has been disposed. + + + Compares the text represented by a UTF8-encoded byte span to the string value of this element. + The UTF-8 encoded text to compare against. + + if the string value of this element has the same UTF-8 encoding as +; otherwise, . + This value's is not . + + + Compares a specified read-only character span to the string value of this element. + The text to compare against. + + if the string value of this element matches ; otherwise, . + This value's is not . + + + Compares a specified string to the string value of this element. + The text to compare against. + + if the string value of this element matches ; otherwise, . + This value's is not . + + + Gets the type of the current JSON value. + The type of the current JSON value. + The parent has been disposed. + + + Writes the element to the specified writer as a JSON value. + The writer to which to write the element. + The parameter is . + The of this value is . + The parent has been disposed. + + + Provides methods to transform UTF-8 or UTF-16 encoded text into a form that is suitable for JSON. + + + Encodes a UTF-8 text value as a JSON string. + The UTF-8 encoded text to convert to JSON encoded text. + The encoder to use when escaping the string, or to use the default encoder. + The encoded JSON text. + + is too large. +-or- + contains invalid UTF-8 bytes. + + + Encodes a specified text value as a JSON string. + The value to convert to JSON encoded text. + The encoder to use when escaping the string, or to use the default encoder. + The encoded JSON text. + + is too large. +-or- + contains invalid UTF-16 characters. + + + Encodes the string text value as a JSON string. + The value to convert to JSON encoded text. + The encoder to use when escaping the string, or to use the default encoder. + The encoded JSON text. + + is . + + is too large. +-or- + contains invalid UTF-16 characters. + + + Gets the UTF-8 encoded representation of the pre-encoded JSON text. + The UTF-8 encoded representation of the pre-encoded JSON text. + + + Determines whether this instance and a specified object, which must also be a instance, have the same value. + The object to compare to this instance. + + if the current instance and are equal; otherwise, . + + + Determines whether this instance and another specified instance have the same value. + The object to compare to this instance. + + if this instance and have the same value; otherwise, . + + + Returns the hash code for this . + The hash code for this instance. + + + Converts the value of this instance to a . + The underlying UTF-16 encoded string. + + + Defines a custom exception object that is thrown when invalid JSON text is encountered, when the defined maximum depth is passed, or the JSON text is not compatible with the type of a property on an object. + + + Initializes a new instance of the class. + + + Creates a new exception object with serialized data. + The serialized object data about the exception being thrown. + An object that contains contextual information about the source or destination. + + is . + + + Initializes a new instance of the class with a specified error message. + The context-specific error message. + + + Initializes a new instance of the class, with a specified error message and a reference to the inner exception that is the cause of this exception. + The context-specific error message. + The exception that caused the current exception. + + + Creates a new exception object to relay error information to the user. + The context-specific error message. + The path where the invalid JSON was encountered. + The line number (starting at 0) at which the invalid JSON was encountered when deserializing. + The byte count within the current line (starting at 0) where the invalid JSON was encountered. + + + Creates a new exception object to relay error information to the user that includes a specified inner exception. + The context-specific error message. + The path where the invalid JSON was encountered. + The line number (starting at 0) at which the invalid JSON was encountered when deserializing. + The byte count (starting at 0) within the current line where the invalid JSON was encountered. + The exception that caused the current exception. + + + Gets the zero-based number of bytes read within the current line before the exception. + The zero-based number of bytes read within the current line before the exception. + + + Sets the with information about the exception. + The serialized object data about the exception being thrown. + An object that contains contextual information about the source or destination. + + + Gets the zero-based number of lines read before the exception. + The zero-based number of lines read before the exception. + + + Gets a message that describes the current exception. + The error message that describes the current exception. + + + Gets The path within the JSON where the exception was encountered. + The path within the JSON where the exception was encountered. + + + Determines the naming policy used to convert a string-based name to another format, such as a camel-casing format. + + + Initializes a new instance of . + + + Gets the naming policy for camel-casing. + The naming policy for camel-casing. + + + When overridden in a derived class, converts the specified name according to the policy. + The name to convert. + The converted name. + + + Represents a single property for a JSON object. + + + Gets the name of this property. + The name of this property. + + + Compares the specified UTF-8 encoded text to the name of this property. + The UTF-8 encoded text to compare against. + + if the name of this property has the same UTF-8 encoding as ; otherwise, . + This value's is not . + + + Compares the specified text as a character span to the name of this property. + The text to compare against. + + if the name of this property matches ; otherwise, . + This value's is not . + + + Compares the specified string to the name of this property. + The text to compare against. + + if the name of this property matches ; otherwise . + This value's is not . + + + Provides a string representation of the property for debugging purposes. + A string containing the uninterpreted value of the property, beginning at the declaring open-quote and ending at the last character that is part of the value. + + + Gets the value of this property. + The value of this property. + + + Writes the property to the provided writer as a named JSON object property. + The writer to which to write the property. + + is . + + is too large to be a JSON object property. + The of this JSON property's would result in invalid JSON. + The parent has been disposed. + + + Provides the ability for the user to define custom behavior when reading JSON. + + + Gets or sets a value that defines whether an extra comma at the end of a list of JSON values in an object or array is allowed (and ignored) within the JSON payload being read. + + if an extra comma is allowed; otherwise, . + + + Gets or sets a value that determines how the handles comments when reading through the JSON data. + One of the enumeration values that indicates how comments are handled. + The property is being set to a value that is not a member of the enumeration. + + + Gets or sets the maximum depth allowed when reading JSON, with the default (that is, 0) indicating a maximum depth of 64. + The maximum depth allowed when reading JSON. + The maximum depth is being set to a negative value. + + + Defines an opaque type that holds and saves all the relevant state information, which must be provided to the to continue reading after processing incomplete data. + + + Constructs a new instance. + Defines the customized behavior of the that is different from the JSON RFC (for example how to handle comments, or the maximum depth allowed when reading). By default, the follows the JSON RFC strictly (comments within the JSON are invalid) and reads up to a maximum depth of 64. + The maximum depth is set to a non-positive value (< 0). + + + Gets the custom behavior to use when reading JSON data using the struct that may deviate from strict adherence to the JSON specification, which is the default behavior. + The custom behavior to use when reading JSON data. + + + Provides functionality to serialize objects or value types to JSON and to deserialize JSON into objects or value types. + + + Parses the UTF-8 encoded text representing a single JSON value into an instance of a specified type. + The JSON text to parse. + The type of the object to convert to and return. + Options to control the behavior during parsing. + A representation of the JSON value. + + is . + The JSON is invalid. +-or- + is not compatible with the JSON. +-or- +There is remaining data in the span beyond a single JSON value. + + + Parses the text representing a single JSON value into an instance of a specified type. + The JSON text to parse. + The type of the object to convert to and return. + Options to control the behavior during parsing. + A representation of the JSON value. + + or is . + The JSON is invalid. +-or- + is not compatible with the JSON. +-or- +There is remaining data in the string beyond a single JSON value. + + + Reads one JSON value (including objects or arrays) from the provided reader and converts it into an instance of a specified type. + The reader to read the JSON from. + The type of the object to convert to and return. + Options to control the serializer behavior during reading. + A representation of the JSON value. + + is . + The JSON is invalid. +-or- + is not compatible with the JSON. +-or- +A value could not be read from the reader. + + is using unsupported options. + + + Parses the UTF-8 encoded text representing a single JSON value into an instance of the type specified by a generic type parameter. + The JSON text to parse. + Options to control the behavior during parsing. + The target type of the UTF-8 encoded text. + A representation of the JSON value. + The JSON is invalid. +-or- + is not compatible with the JSON. +-or- +There is remaining data in the span beyond a single JSON value. + + + Parses the text representing a single JSON value into an instance of the type specified by a generic type parameter. + The JSON text to parse. + Options to control the behavior during parsing. + The target type of the JSON value. + A representation of the JSON value. + + is . + The JSON is invalid. +-or- + is not compatible with the JSON. +-or- +There is remaining data in the string beyond a single JSON value. + + + Reads one JSON value (including objects or arrays) from the provided reader into an instance of the type specified by a generic type parameter. + The reader to read the JSON from. + Options to control serializer behavior during reading. + The target type of the JSON value. + A representation of the JSON value. + The JSON is invalid. +-or- + is not compatible with the JSON. +-or- +A value could not be read from the reader. + + uses unsupported options. + + + Asynchronously reads the UTF-8 encoded text representing a single JSON value into an instance of a specified type. The stream will be read to completion. + The JSON data to parse. + The type of the object to convert to and return. + Options to control the behavior during reading. + A cancellation token that may be used to cancel the read operation. + A representation of the JSON value. + + or is . + The JSON is invalid. +-or- + is not compatible with the JSON. +-or- +There is remaining data in the stream. + + + Asynchronously reads the UTF-8 encoded text representing a single JSON value into an instance of a type specified by a generic type parameter. The stream will be read to completion. + The JSON data to parse. + Options to control the behavior during reading. + A token that may be used to cancel the read operation. + The target type of the JSON value. + A representation of the JSON value. + The JSON is invalid. +-or- + is not compatible with the JSON. +-or- +There is remaining data in the stream. + + + Converts the value of a specified type into a JSON string. + The value to convert. + The type of the to convert. + Options to control the conversion behavior. + The JSON string representation of the value. + + + Writes the JSON representation of the specified type to the provided writer. + The JSON writer to write to. + The value to convert and write. + The type of the to convert. + Options to control serialization behavior. + + + Converts the value of a type specified by a generic type parameter into a JSON string. + The value to convert. + Options to control serialization behavior. + The type of the value to serialize. + A JSON string representation of the value. + + + Writes the JSON representation of a type specified by a generic type parameter to the provided writer. + A JSON writer to write to. + The value to convert and write. + Options to control serialization behavior. + The type of the value to serialize. + + + Asynchronously converts the value of a specified type to UTF-8 encoded JSON text and writes it to the specified stream. + The UTF-8 stream to write to. + The value to convert. + The type of the to convert. + Options to control serialization behavior. + A token that may be used to cancel the write operation. + A task that represents the asynchronous write operation. + + + Asynchronously converts a value of a type specified by a generic type parameter to UTF-8 encoded JSON text and writes it to a stream. + The UTF-8 stream to write to. + The value to convert. + Options to control serialization behavior. + A token that may be used to cancel the write operation. + The type of the value to serialize. + A task that represents the asynchronous write operation. + + + Converts a value of the specified type into a JSON string, encoded as UTF-8 bytes. + The value to convert. + The type of the to convert. + Options to control the conversion behavior. + A JSON string representation of the value, encoded as UTF-8 bytes. + + + Converts the value of a type specified by a generic type parameter into a JSON string, encoded as UTF-8 bytes. + The value to convert. + Options to control the conversion behavior. + The type of the value. + A JSON string representation of the value, encoded as UTF-8 bytes. + + + Provides options to be used with . + + + Initializes a new instance of the class. + + + Get or sets a value that indicates whether an extra comma at the end of a list of JSON values in an object or array is allowed (and ignored) within the JSON payload being deserialized. + + if an extra comma at the end of a list of JSON values in an object or array is allowed (and ignored); otherwise. + This property was set after serialization or deserialization has occurred. + + + Gets the list of user-defined converters that were registered. + The list of custom converters. + + + Gets or sets the default buffer size, in bytes, to use when creating temporary buffers. + The default buffer size in bytes. + The buffer size is less than 1. + This property was set after serialization or deserialization has occurred. + + + Gets or sets the policy used to convert a key's name to another format, such as camel-casing. + The policy used to convert a key's name to another format. + + + Gets or sets the encoder to use when escaping strings, or to use the default encoder. + The JavaScript character encoding. + + + Returns the converter for the specified type. + The type to return a converter for. + The first converter that supports the given type, or if there is no converter. + + + Gets or sets a value that determines whether values are ignored during serialization and deserialization. The default value is . + + to ignore null values during serialization and deserialization; otherwise, see langword="false" />. + This property was set after serialization or deserialization has occurred. + + + Gets a value that determines whether read-only properties are ignored during serialization. The default value is . + + to ignore read-only properties during serialization; otherwise, . + This property was set after serialization or deserialization has occurred. + + + Gets or sets the maximum depth allowed when serializing or deserializing JSON, with the default value of 0 indicating a maximum depth of 64. + The maximum depth allowed when serializing or deserializing JSON. + This property was set after serialization or deserialization has occurred. + The max depth is set to a negative value. + + + Gets or sets a value that determines whether a property's name uses a case-insensitive comparison during deserialization. The default value is . + + to compare property names using case-insensitive comparison; otherwise, . + + + Gets or sets a value that specifies the policy used to convert a property's name on an object to another format, such as camel-casing, or to leave property names unchanged. + A property naming policy, or to leave property names unchanged. + + + Gets or sets a value that defines how comments are handled during deserialization. + A value that indicates whether comments are allowed, disallowed, or skipped. + This property was set after serialization or deserialization has occurred. + The comment handling enum is set to a value that is not supported (or not within the enum range). + + + Gets or sets a value that defines whether JSON should use pretty printing. By default, JSON is serialized without any extra white space. + + if JSON should pretty print on serialization; otherwise, . The default is . + This property was set after serialization or deserialization has occurred. + + + Defines the various JSON tokens that make up a JSON text. + + + The token type is a comment string. + + + The token type is the end of a JSON array. + + + The token type is the end of a JSON object. + + + The token type is the JSON literal false. + + + There is no value (as distinct from ). + + + The token type is the JSON literal null. + + + The token type is a JSON number. + + + The token type is a JSON property name. + + + The token type is the start of a JSON array. + + + The token type is the start of a JSON object. + + + The token type is a JSON string. + + + The token type is the JSON literal true. + + + Specifies the data type of a JSON value. + + + A JSON array. + + + The JSON value false. + + + The JSON value null. + + + A JSON number. + + + A JSON object. + + + A JSON string. + + + The JSON value true. + + + There is no value (as distinct from ). + + + Allows the user to define custom behavior when writing JSON using the . + + + Gets or sets the encoder to use when escaping strings, or to use the default encoder. + The JavaScript character encoder used to override the escaping behavior. + + + Gets or sets a value that indicates whether the should format the JSON output, which includes indenting nested JSON tokens, adding new lines, and adding white space between property names and values. + + to format the JSON output; to write without any extra white space. The default is . + + + Gets or sets a value that indicates whether the should skip structural validation and allow the user to write invalid JSON. + + to skip structural validation and allow invalid JSON; to throw an on any attempt to write invalid JSON. + + + Provides the base class for serialization attributes. + + + Creates a new instance of the . + + + Converts an object or value to or from JSON. + + + When overridden in a derived class, determines whether the converter instance can convert the specified object type. + The type of the object to check whether it can be converted by this converter instance. + + if the instance can convert the specified object type; otherwise, . + + + Converts an object or value to or from JSON. + The type of object or value handled by the converter. + + + Initializes a new instance. + + + Determines whether the specified type can be converted. + The type to compare against. + + if the type can be converted; otherwise, . + + + Reads and converts the JSON to type . + The reader. + The type to convert. + An object that specifies serialization options to use. + The converted value. + + + Writes a specified value as JSON. + The writer to write to. + The value to convert to JSON. + An object that specifies serialization options to use. + + + When placed on a property or type, specifies the converter type to use. + + + Initializes a new instance of . + + + Initializes a new instance of with the specified converter type. + The type of the converter. + + + Gets the type of the , or if it was created without a type. + The type of the , or if it was created without a type. + + + When overridden in a derived class and is , allows the derived class to create a in order to pass additional state. + The type of the converter. + The custom converter. + + + Supports converting several types by using a factory pattern. + + + When overidden in a derived class, initializes a new instance of the class. + + + Creates a converter for a specified type. + The type handled by the converter. + The serialization options to use. + A converter for which is compatible with . + + + When placed on a property of type , any properties that do not have a matching member are added to that dictionary during deserialization and written during serialization. + + + Instantiates a new instance of the class. + + + Prevents a property from being serialized or deserialized. + + + Initializes a new instance of . + + + Specifies the property name that is present in the JSON when serializing and deserializing. This overrides any naming policy specified by . + + + Initializes a new instance of with the specified property name. + The name of the property. + + + Gets the name of the property. + The name of the property. + + + Converts enumeration values to and from strings. + + + Initializes an instance of the class with the default naming policy that allows integer values. + + + Initializes an instance of the class with a specified naming policy and a value that indicates whether undefined enumeration values are allowed. + The optional naming policy for writing enum values. + + to allow undefined enum values; otherwise, . When , if an enum value isn't defined, it will output as a number rather than a string. + + + Determines whether the specified type can be converted to an enum. + The type to be checked. + + if the type can be converted; otherwise, . + + + Creates a converter for the specified type. + The type handled by the converter. + The serialization options to use. + A converter for which is compatible with . + + + Provides a high-performance API for forward-only, read-only access to UTF-8 encoded JSON text. + + + Initializes a new instance of the structure that processes a read-only sequence of UTF-8 encoded text and indicates whether the input contains all the text to process. + The UTF-8 encoded JSON text to process. + + to indicate that the input sequence contains the entire data to process; to indicate that the input span contains partial data with more data to follow. + An object that contains the reader state. If this is the first call to the constructor, pass the default state; otherwise, pass the value of the property from the previous instance of the . + + + Initializes a new instance of the structure that processes a read-only sequence of UTF-8 encoded text using the specified options. + The UTF-8 encoded JSON text to process. + Defines customized behavior of the that differs from the JSON RFC (for example how to handle comments or maximum depth allowed when reading). By default, the follows the JSON RFC strictly; comments within the JSON are invalid, and the maximum depth is 64. + + + Initializes a new instance of the structure that processes a read-only span of UTF-8 encoded text and indicates whether the input contains all the text to process. + The UTF-8 encoded JSON text to process. + + to indicate that the input sequence contains the entire data to process; to indicate that the input span contains partial data with more data to follow. + An object that contains the reader state. If this is the first call to the constructor, pass the default state; otherwise, pass the value of the property from the previous instance of the . + + + Initializes a new instance of the structure that processes a read-only span of UTF-8 encoded text using the specified options. + The UTF-8 encoded JSON text to process. + Defines customized behavior of the that differs from the JSON RFC (for example how to handle comments or maximum depth allowed when reading). By default, the follows the JSON RFC strictly; comments within the JSON are invalid, and the maximum depth is 64. + + + Gets the total number of bytes consumed so far by this instance of the . + The total number of bytes consumed so far. + + + Gets the depth of the current token. + The depth of the current token. + + + Gets the current state to pass to a constructor with more data. + The current reader state. + + + Reads the next JSON token value from the source as a . + + if the is ; if the is . + The value of the JSON token isn't a boolean value (that is, or ). + + + Parses the current JSON token value from the source as a . + The value of the UTF-8 encoded token. + The value of the JSON token is not a . + The numeric format of the JSON token value is incorrect (for example, it contains a fractional value or is written in scientific notation). +-or- +The JSON token value represents a number less than or greater than . + + + Parses the current JSON token value from the source and decodes the Base64 encoded JSON string as a byte array. + The byte array that represents the current JSON token value. + The type of the JSON token is not a . + The value is not encoded as Base64 text, so it can't be decoded to bytes. + + + Parses the current JSON token value from the source as a comment, transcoded it as a . + The comment that represents the current JSON token value. + The JSON token is not a comment. + + + Reads the next JSON token value from the source and parses it to a . + The date and time value, if the entire UTF-8 encoded token value can be successfully parsed. + The value of the JSON token isn't a . + The JSON token value cannot be read as a . +-or- +The entire UTF-8 encoded token value cannot be parsed to a value. + + + Reads the next JSON token value from the source and parses it to a . + The date and time offset, if the entire UTF-8 encoded token value can be successfully parsed. + The value of the JSON token isn't a . + The JSON token value cannot be read as a . +-or- +The entire UTF-8 encoded token value cannot be parsed to a value. + + + Reads the next JSON token value from the source and parses it to a . + The UTF-8 encoded token value parsed to a . + The JSON token value isn't a . + The JSON token value represents a number less than or greater than . + + + Reads the next JSON token value from the source and parses it to a . + The UTF-8 encoded token value parsed to a . + The JSON token value isn't a . + The JSON token value represents a number less than or greater than . + + + Reads the next JSON token value from the source and parses it to a . + The GUID value, if the entire UTF-8 encoded token value can be successfully parsed. + The value of the JSON token isn't a . + The JSON token value is in an unsupported format for a Guid. +-or- +The entire UTF-8 encoded token value cannot be parsed to a value. + + + Parses the current JSON token value from the source as a . + The UTF-8 encoded token value parsed to an . + The value of the JSON token is not a . + The numeric format of the JSON token value is incorrect (for example, it contains a fractional value or is written in scientific notation). +-or- +The JSON token value represents a number less than or greater than . + + + Reads the next JSON token value from the source and parses it to an . + The UTF-8 encoded token value parsed to an . + The JSON token value isn't a . + The JSON token value is of the incorrect numeric format. For example, it contains a decimal or is written in scientific notation. +-or- +The JSON token value represents a number less than or greater than . + + + Reads the next JSON token value from the source and parses it to an . + The UTF-8 encoded token value parsed to an . + The JSON token value isn't a . + The JSON token value is of the incorrect numeric format. For example, it contains a decimal or is written in scientific notation. +-or- +The JSON token value represents a number less than or greater than . + + + Parses the current JSON token value from the source as an . + The UTF-8 encoded token value parsed to an . + The value of the JSON token is not a . + The numeric format of the JSON token value is incorrect (for example, it contains a fractional value or is written in scientific notation). +-or- +The JSON token value represents a number less than or greater than . + + + Reads the next JSON token value from the source and parses it to a . + The UTF-8 encoded token value parsed to a . + The JSON token value isn't a . + The JSON token value represents a number less than or greater than . + + + Reads the next JSON token value from the source, unescaped, and transcoded as a string. + The token value parsed to a string, or if is . + The JSON token value isn't a string (that is, not a , , or ). +-or- +The JSON string contains invalid UTF-8 bytes or invalid UTF-16 surrogates. + + + Parses the current JSON token value from the source as a . + The UTF-8 encoded token value parsed to a . + The value of the JSON token is not a . + The numeric format of the JSON token value is incorrect (for example, it contains a fractional value or is written in scientific notation). +-or- +The JSON token value represents a number less than or greater than . + + + Reads the next JSON token value from the source and parses it to a . + The UTF-8 encoded token value parsed to a . + The JSON token value isn't a . + The JSON token value is of the incorrect numeric format. For example, it contains a decimal or is written in scientific notation. +-or- +The JSON token value represents a number less than or greater than . + + + Reads the next JSON token value from the source and parses it to a . + The UTF-8 encoded token value parsed to a . + The JSON token value isn't a . + The JSON token value is of the incorrect numeric format. For example, it contains a decimal or is written in scientific notation. +-or- +The JSON token value represents a number less than or greater than . + + + Gets a value that indicates which Value property to use to get the token value. + + if should be used to get the token value; if should be used instead. + + + Gets the mode of this instance of the which indicates whether all the JSON data was provided or there is more data to come. + + if the reader was constructed with the input span or sequence containing the entire JSON data to process; if the reader was constructed with an input span or sequence that may contain partial JSON data with more data to follow. + + + Gets the current within the provided UTF-8 encoded input ReadOnlySequence<byte> or a default if the struct was constructed with a ReadOnlySpan<byte>. + The current within the provided UTF-8 encoded input ReadOnlySequence<byte> or a default if the struct was constructed with a ReadOnlySpan<byte>. + + + Reads the next JSON token from the input source. + + if the token was read successfully; otherwise, . + An invalid JSON token according to the JSON RFC is encountered. +-or- +The current depth exceeds the recursive limit set by the maximum depth. + + + Skips the children of the current JSON token. + The reader was given partial data with more data to follow (that is, is ). + An invalid JSON token was encountered while skipping, according to the JSON RFC. +-or- +The current depth exceeds the recursive limit set by the maximum depth. + + + Gets the index that the last processed JSON token starts at (within the given UTF-8 encoded input text), skipping any white space. + The starting index of the last processed JSON token within the given UTF-8 encoded input text. + + + Gets the type of the last processed JSON token in the UTF-8 encoded JSON text. + The type of the last processed JSON token. + + + Tries to parse the current JSON token value from the source as a and returns a value that indicates whether the operation succeeded. + When this method returns, contains the parsed value. + + if the entire UTF-8 encoded token value can be successfully parsed to a value; otherwise, . + The JSON token value isn't a . + + + Tries to parse the current JSON token value from the source and decodes the Base64 encoded JSON string as a byte array and returns a value that indicates whether the operation succeeded. + When this method returns, contains the decoded binary representation of the Base64 text. + + if the entire token value is encoded as valid Base64 text and can be successfully decoded to bytes; otherwise, . + The JSON token is not a . + + + Tries to parse the current JSON token value from the source as a and returns a value that indicates whether the operation succeeded. + When this method returns, contains the parsed value. + + if the entire UTF-8 encoded token value can be successfully parsed to a value; otherwise, . + The value of the JSON token isn't a . + + + Tries to parse the current JSON token value from the source as a and returns a value that indicates whether the operation succeeded. + When this method returns, contains the parsed value. + + if the entire UTF-8 encoded token value can be successfully parsed to a value; otherwise, . + The value of the JSON token isn't a . + + + Tries to parse the current JSON token value from the source as a and returns a value that indicates whether the operation succeeded. + When this method returns, contains the parsed value. + + if the entire UTF-8 encoded token value can be successfully parsed to a value; otherwise, . + The JSON token value isn't a . + + + Tries to parse the current JSON token value from the source as a and returns a value that indicates whether the operation succeeded. + When this method returns, contains the parsed value. + + if the entire UTF-8 encoded token value can be successfully parsed to a value; otherwise, . + The JSON token value isn't a . + + + Tries to parse the current JSON token value from the source as a and returns a value that indicates whether the operation succeeded. + When this method returns, contains the parsed value. + + if the entire UTF-8 encoded token value can be successfully parsed to a value; otherwise, . + The value of the JSON token isn't a . + + + Tries to parse the current JSON token value from the source as an and returns a value that indicates whether the operation succeeded. + When this method returns, contains the parsed value. + + if the entire UTF-8 encoded token value can be successfully parsed to a value; otherwise, . + The JSON token value isn't a . + + + Tries to parse the current JSON token value from the source as an and returns a value that indicates whether the operation succeeded. + When this method returns, contains the parsed value. + + if the entire UTF-8 encoded token value can be successfully parsed to an value; otherwise, . + The JSON token value isn't a . + + + Tries to parse the current JSON token value from the source as an and returns a value that indicates whether the operation succeeded. + When this method returns, contains the parsed value. + + if the entire UTF-8 encoded token value can be successfully parsed to an value; otherwise, . + The JSON token value isn't a . + + + Tries to parse the current JSON token value from the source as an and returns a value that indicates whether the operation succeeded. + When this method returns, contains the parsed value. + + if the entire UTF-8 encoded token value can be successfully parsed to an value; otherwise, . + The JSON token value isn't a . + + + Tries to parse the current JSON token value from the source as a and returns a value that indicates whether the operation succeeded. + When this method returns, contains the parsed value. + + if the entire UTF-8 encoded token value can be successfully parsed to an value; otherwise, . + The JSON token value isn't a . + + + Tries to parse the current JSON token value from the source as a and returns a value that indicates whether the operation succeeded. + When this method returns, contains the parsed value. + + if the entire UTF-8 encoded token value can be successfully parsed to a value; otherwise, . + The JSON token value isn't a . + + + Tries to parse the current JSON token value from the source as a and returns a value that indicates whether the operation succeeded. + When this method returns, contains the parsed value. + + if the entire UTF-8 encoded token value can be successfully parsed to a value; otherwise, . + The JSON token value isn't a . + + + Tries to parse the current JSON token value from the source as a and returns a value that indicates whether the operation succeeded. + When this method returns, contains the parsed value. + + if the entire UTF-8 encoded token value can be successfully parsed to a value; otherwise, . + The JSON token value isn't a . + + + Tries to skip the children of the current JSON token. + + if there was enough data for the children to be skipped successfully; otherwise, . + An invalid JSON token was encountered while skipping, according to the JSON RFC. +-or - +The current depth exceeds the recursive limit set by the maximum depth. + + + Gets the raw value of the last processed token as a ReadOnlySequence<byte> slice of the input payload, only if the token is contained within multiple segments. + A byte read-only sequence. + + + Gets the raw value of the last processed token as a ReadOnlySpan<byte> slice of the input payload, if the token fits in a single segment or if the reader was constructed with a JSON payload contained in a ReadOnlySpan<byte>. + A read-only span of bytes. + + + Compares the UTF-8 encoded text in a read-only byte span to the unescaped JSON token value in the source and returns a value that indicates whether they match. + The UTF-8 encoded text to compare against. + + if the JSON token value in the source matches the UTF-8 encoded lookup text; otherwise, . + The JSON token is not a JSON string (that is, it is not or ). + + + Compares the text in a read-only character span to the unescaped JSON token value in the source and returns a value that indicates whether they match. + The text to compare against. + + if the JSON token value in the source matches the lookup text; otherwise, . + The JSON token is not a JSON string (that is, it is not or ). + + + Compares the string text to the unescaped JSON token value in the source and returns a value that indicates whether they match. + The text to compare against. + + if the JSON token value in the source matches the lookup text; otherwise, . + The JSON token is not a JSON string (that is, it is not or ). + + + Provides a high-performance API for forward-only, non-cached writing of UTF-8 encoded JSON text. + + + Initializes a new instance of the class using the specified to write the output to and customization options. + The destination for writing JSON text. + Defines the customized behavior of the . By default, it writes minimized JSON (with no extra white space) and validates that the JSON being written is structurally valid according to the JSON RFC. + + is . + + + Initializes a new instance of the class using the specified stream to write the output to and customization options. + The destination for writing JSON text. + Defines the customized behavior of the . By default, it writes minimized JSON (with no extra white space) and validates that the JSON being written is structurally valid according to the JSON RFC. + + is . + + + Gets the total number of bytes committed to the output by the current instance so far. + The total number of bytes committed to the output by the so far. + + + Gets the number of bytes written by the so far that have not yet been flushed to the output and committed. + The number of bytes written so far by the that have not yet been flushed to the output and committed. + + + Gets the depth of the current token. + The depth of the current token. + + + Commits any leftover JSON text that has not yet been flushed and releases all resources used by the current instance. + + + Asynchronously commits any leftover JSON text that has not yet been flushed and releases all resources used by the current instance. + A task representing the asynchronous dispose operation. + + + Commits the JSON text written so far, which makes it visible to the output destination. + This instance has been disposed. + + + Asynchronously commits the JSON text written so far, which makes it visible to the output destination. + The token to monitor for cancellation requests. The default value is . + A task representing the asynchronous flush operation. + This instance has been disposed. + + + Gets the custom behavior when writing JSON using this instance, which indicates whether to format the output while writing, whether to skip structural JSON validation, and which characters to escape. + The custom behavior of this instance of the writer for formatting, validating, and escaping. + + + Resets the internal state of this instance so that it can be reused. + This instance has been disposed. + + + Resets the internal state of this instance so that it can be reused with a new instance of . + The destination for writing JSON text. + + is . + This instance has been disposed. + + + Resets the internal state of this instance so that it can be reused with a new instance of . + The destination for writing JSON text. + + is . + This instance has been disposed. + + + Writes the property name and raw bytes value (as a Base64 encoded JSON string) as part of a name/value pair of a JSON object. + The UTF-8 encoded name of the property to write. + The binary data to write as Base64 encoded text. + The specified property name or value is too large. + Validation is enabled, and this method would result in writing invalid JSON. + + + Writes the property name and raw bytes value (as a Base64 encoded JSON string) as part of a name/value pair of a JSON object. + The property name of the JSON object to be transcoded and written as UTF-8. + The binary data to write as Base64 encoded text. + The specified property name or value is too large. + Validation is enabled, and this method would result in writing invalid JSON. + + + Writes the property name and raw bytes value (as a Base64 encoded JSON string) as part of a name/value pair of a JSON object. + The property name of the JSON object to be transcoded and written as UTF-8. + The binary data to write as Base64 encoded text. + The specified property name or value is too large. + Validation is enabled, and this method would result in writing invalid JSON. + The parameter is . + + + Writes the pre-encoded property name and raw bytes value (as a Base64 encoded JSON string) as part of a name/value pair of a JSON object. + The JSON-encoded name of the property to write. + The binary data to write as Base64 encoded text. + The specified value is too large. + Validation is enabled, and this method would result in writing invalid JSON. + + + Writes the raw bytes value as a Base64 encoded JSON string as an element of a JSON array. + The binary data to be written as a Base64 encoded JSON string element of a JSON array. + The specified value is too large. + Validation is enabled, and this method would result in writing invalid JSON. + + + Writes a property name specified as a read-only span of bytes and a value (as a JSON literal true or false) as part of a name/value pair of a JSON object. + The UTF-8 encoded property name of the JSON object to be written. + The value to be written as a JSON literal true or false as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the operation would result in writing invalid JSON. + + + Writes a property name specified as a read-only character span and a value (as a JSON literal true or false) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON literal true or false as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the operation would result in writing invalid JSON. + + + Writes a property name specified as a string and a value (as a JSON literal true or false) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON literal true or false as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the operation would result in writing invalid JSON. + The parameter is . + + + Writes the pre-encoded property name and value (as a JSON literal true or false) as part of a name/value pair of a JSON object. + The JSON encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON literal true or false as part of the name/value pair. + Validation is enabled, and this method would result in writing invalid JSON. + + + Writes a value (as a JSON literal true or false) as an element of a JSON array. + The value to be written as a JSON literal true or false as an element of a JSON array. + Validation is enabled, and the operation would result in writing invalid JSON. + + + Writes a UTF-8 text value as a JSON comment. + The UTF-8 encoded value to be written as a JSON comment within /*..*/. + The specified value is too large. +-or- + contains a comment delimiter (that is, */). + + + Writes a UTF-16 text value as a JSON comment. + The UTF-16 encoded value to be written as a UTF-8 transcoded JSON comment within /*..*/. + The specified value is too large. +-or- + contains a comment delimiter (that is, */). + + + Writes a string text value as a JSON comment. + The UTF-16 encoded value to be written as a UTF-8 transcoded JSON comment within /*..*/. + The specified value is too large. +-or- + contains a comment delimiter (that is, */). + The parameter is . + + + Writes the end of a JSON array. + Validation is enabled, and the operation would result in writing invalid JSON. + + + Writes the end of a JSON object. + Validation is enabled, and the operation would result in writing invalid JSON. + + + Writes a property name specified as a read-only span of bytes and the JSON literal null as part of a name/value pair of a JSON object. + The UTF-8 encoded property name of the JSON object to be written. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a property name specified as a read-only character span and the JSON literal null as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a property name specified as a string and the JSON literal null as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + The parameter is . + + + Writes the pre-encoded property name and the JSON literal null as part of a name/value pair of a JSON object. + The JSON encoded property name of the JSON object to be transcoded and written as UTF-8. + Validation is enabled, and this method would result in writing invalid JSON. + + + Writes the JSON literal null as an element of a JSON array. + Validation is enabled, and the operation would result in writing invalid JSON. + + + Writes a property name specified as a read-only span of bytes and a value (as a JSON number) as part of a name/value pair of a JSON object. + The UTF-8 encoded property name of the JSON object to be written. + The value to be written as a JSON number as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a property name specified as a read-only span of bytes and a value (as a JSON number) as part of a name/value pair of a JSON object. + The UTF-8 encoded property name of the JSON object to be written. + The value to be written as a JSON number as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a property name specified as a read-only span of bytes and an value (as a JSON number) as part of a name/value pair of a JSON object. + The UTF-8 encoded property name of the JSON object to be written. + The value to be written as a JSON number as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a property name specified as a read-only span of bytes and an value (as a JSON number) as part of a name/value pair of a JSON object. + The UTF-8 encoded property name of the JSON object to be written. + The value to be written as a JSON number as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a property name specified as a read-only span of bytes and a value (as a JSON number) as part of a name/value pair of a JSON object. + The UTF-8 encoded property name of the JSON object to be written. + The value to be written as a JSON number as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a property name specified as a read-only span of bytes and a value (as a JSON number) as part of a name/value pair of a JSON object. + The UTF-8 encoded property name of the JSON object to be written. + The value to be written as a JSON number as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a property name specified as a read-only span of bytes and a value (as a JSON number) as part of a name/value pair of a JSON object. + The UTF-8 encoded property name of the JSON object to be written. + The value to be written as a JSON number as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a property name specified as a read-only character span and a value (as a JSON number) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON number as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a property name specified as a read-only character span and a value (as a JSON number) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON number as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a property name specified as a read-only character span and an value (as a JSON number) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON number as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a property name specified as a read-only character span and an value (as a JSON number) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON number as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a property name specified as a read-only character span and a value (as a JSON number) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON number as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a property name specified as a read-only character span and a value (as a JSON number) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON number as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a property name specified as a read-only character span and a value (as a JSON number) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON number as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a property name specified as a string and a value (as a JSON number) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON number as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + The parameter is . + + + Writes a property name specified as a string and a value (as a JSON number) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON number as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + The parameter is . + + + Writes a property name specified as a string and an value (as a JSON number) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON number as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + The parameter is . + + + Writes a property name specified as a string and an value (as a JSON number) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON number as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + The parameter is . + + + Writes a property name specified as a string and a value (as a JSON number) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON number as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + The parameter is . + + + Writes a property name specified as a string and a value (as a JSON number) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON number as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + The parameter is . + + + Writes a property name specified as a string and a value (as a JSON number) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON number as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + The parameter is . + + + Writes the pre-encoded property name and value (as a JSON number) as part of a name/value pair of a JSON object. + The JSON encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON number as part of the name/value pair. + Validation is enabled, and this method would result in writing invalid JSON. + + + Writes the pre-encoded property name and value (as a JSON number) as part of a name/value pair of a JSON object. + The JSON encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON number as part of the name/value pair. + Validation is enabled, and this method would result in writing invalid JSON. + + + Writes the pre-encoded property name and value (as a JSON number) as part of a name/value pair of a JSON object. + The JSON encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON number as part of the name/value pair. + Validation is enabled, and this method would result in writing invalid JSON. + + + Writes the pre-encoded property name and value (as a JSON number) as part of a name/value pair of a JSON object. + The JSON encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON number as part of the name/value pair. + Validation is enabled, and this method would result in writing invalid JSON. + + + Writes the pre-encoded property name and value (as a JSON number) as part of a name/value pair of a JSON object. + The JSON encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON number as part of the name/value pair. + Validation is enabled, and this method would result in writing invalid JSON. + + + Writes the pre-encoded property name and value (as a JSON number) as part of a name/value pair of a JSON object. + The JSON encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON number as part of the name/value pair. + Validation is enabled, and this method would result in writing invalid JSON. + + + Writes the pre-encoded property name and value (as a JSON number) as part of a name/value pair of a JSON object. + The JSON encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON number as part of the name/value pair. + Validation is enabled, and this method would result in writing invalid JSON. + + + Writes a value (as a JSON number) as an element of a JSON array. + The value to be written as a JSON number as an element of a JSON array. + Validation is enabled, and the operation would result in writing invalid JSON. + + + Writes a value (as a JSON number) as an element of a JSON array. + The value to be written as a JSON number as an element of a JSON array. + Validation is enabled, and the operation would result in writing invalid JSON. + + + Writes an value (as a JSON number) as an element of a JSON array. + The value to be written as a JSON number as an element of a JSON array. + Validation is enabled, and the operation would result in writing invalid JSON. + + + Writes an value (as a JSON number) as an element of a JSON array. + The value to be written as a JSON number as an element of a JSON array. + Validation is enabled, and the operation would result in writing invalid JSON. + + + Writes a value (as a JSON number) as an element of a JSON array. + The value to be written as a JSON number as an element of a JSON array. + Validation is enabled, and the operation would result in writing invalid JSON. + + + Writes a value (as a JSON number) as an element of a JSON array. + The value to be written as a JSON number as an element of a JSON array. + Validation is enabled, and the operation would result in writing invalid JSON. + + + Writes a value (as a JSON number) as an element of a JSON array. + The value to be written as a JSON number as an element of a JSON array. + Validation is enabled, and the operation would result in writing invalid JSON. + + + Writes the UTF-8 property name (as a JSON string) as the first part of a name/value pair of a JSON object. + The UTF-8 encoded property name of the JSON object to be written. + The specified property name is too large. + Validation is enabled, and this write operation would produce invalid JSON. + + + Writes the property name (as a JSON string) as the first part of a name/value pair of a JSON object. + The property name of the JSON object to be transcoded and written as UTF-8. + The specified property name is too large. + Validation is enabled, and this write operation would produce invalid JSON. + + + Writes the property name (as a JSON string) as the first part of a name/value pair of a JSON object. + The property name of the JSON object to be transcoded and written as UTF-8. + The specified property name is too large. + Validation is enabled, and this write operation would produce invalid JSON. + + is . + + + Writes the pre-encoded property name (as a JSON string) as the first part of a name/value pair of a JSON object. + The JSON encoded property name of the JSON object to be transcoded and written as UTF-8. + Validation is enabled, and this write operation would produce invalid JSON. + + + Writes the beginning of a JSON array. + The depth of the JSON exceeds the maximum depth of 1,000. +-or- +Validation is enabled, and this write operation would produce invalid JSON. + + + Writes the beginning of a JSON array with a property name specified as a read-only span of bytes as the key. + The UTF-8 encoded property name of the JSON array to be written. + The specified property name is too large. + The depth of the JSON exceeds the maximum depth of 1,000. +-or- +Validation is enabled, and this write operation would produce invalid JSON. + + + Writes the beginning of a JSON array with a property name specified as a read-only character span as the key. + The UTF-16 encoded property name of the JSON array to be transcoded and written as UTF-8. + The specified property name is too large. + The depth of the JSON exceeds the maximum depth of 1,000. +-or- +Validation is enabled, and this write operation would produce invalid JSON. + + + Writes the beginning of a JSON array with a property name specified as a string as the key. + The UTF-16 encoded property name of the JSON array to be transcoded and written as UTF-8. + The specified property name is too large. + The depth of the JSON exceeds the maximum depth of 1,000. +-or- +Validation is enabled, and this write operation would produce invalid JSON. + The parameter is . + + + Writes the beginning of a JSON array with a pre-encoded property name as the key. + The JSON encoded property name of the JSON array to be transcoded and written as UTF-8. + The depth of the JSON has exceeded the maximum depth of 1,000. +-or- +Validation is enabled, and this method would result in writing invalid JSON. + + + Writes the beginning of a JSON object. + The depth of the JSON exceeds the maximum depth of 1,000. +-or- +Validation is enabled, and the operation would result in writing invalid JSON. + + + Writes the beginning of a JSON object with a property name specified as a read-only span of bytes as the key. + The UTF-8 encoded property name of the JSON object to be written. + The specified property name is too large. + The depth of the JSON exceeds the maximum depth of 1,000. +-or- +Validation is enabled, and this write operation would produce invalid JSON. + + + Writes the beginning of a JSON object with a property name specififed as a read-only character span as the key. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The specified property name is too large. + The depth of the JSON exceeds the maximum depth of 1,000. +-or- +Validation is enabled, and this write operation would produce invalid JSON. + + + Writes the beginning of a JSON object with a property name specified as a string as the key. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The specified property name is too large. + The depth of the JSON exceeds the maximum depth of 1,000. +-or- +Validation is enabled, and this write operation would produce invalid JSON. + The parameter is . + + + Writes the beginning of a JSON object with a pre-encoded property name as the key. + The JSON encoded property name of the JSON object to be transcoded and written as UTF-8. + The depth of the JSON has exceeded the maximum depth of 1,000. +-or- +Validation is enabled, and this method would result in writing invalid JSON. + + + Writes a UTF-8 property name and a value (as a JSON string) as part of a name/value pair of a JSON object. + The UTF-8 encoded property name of the JSON object to be written. + The value to be written as a JSON string as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a UTF-8 property name and a value (as a JSON string) as part of a name/value pair of a JSON object. + The UTF-8 encoded property name of the JSON object to be written. + The value to be written as a JSON string as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a UTF-8 property name and a value (as a JSON string) as part of a name/value pair of a JSON object. + The UTF-8 encoded property name of the JSON object to be written. + The value to be written as a JSON string as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a UTF-8 property name and UTF-8 text value (as a JSON string) as part of a name/value pair of a JSON object. + The UTF-8 encoded property name of the JSON object to be written. + The UTF-8 encoded value to be written as a JSON string as part of the name/value pair. + The specified property name or value is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a UTF-8 property name and UTF-16 text value (as a JSON string) as part of a name/value pair of a JSON object. + The UTF-8 encoded property name of the JSON object to be written. + The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair. + The specified property name or value is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a UTF-8 property name and string text value (as a JSON string) as part of a name/value pair of a JSON object. + The UTF-8 encoded property name of the JSON object to be written. + The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair. + The specified property name or value is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes the UTF-8 property name and pre-encoded value (as a JSON string) as part of a name/value pair of a JSON object. + The UTF-8 encoded property name of the JSON object to be written. + The JSON encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and this method would result in writing invalid JSON. + + + Writes a property name specified as a read-only character span and a value (as a JSON string) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON string as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a property name specified as a read-only character span and a value (as a JSON string) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON string as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a property name specified as a read-only character span and a value (as a JSON string) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON string as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a UTF-16 property name and UTF-8 text value (as a JSON string) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The UTF-8 encoded value to be written as a JSON string as part of the name/value pair. + The specified property name or value is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a UTF-16 property name and UTF-16 text value (as a JSON string) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair. + The specified property name or value is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a UTF-16 property name and string text value (as a JSON string) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair. + The specified property name or value is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes the property name and pre-encoded value (as a JSON string) as part of a name/value pair of a JSON object. + The property name of the JSON object to be transcoded and written as UTF-8. + The JSON encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a property name specified as a string and a value (as a JSON string) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON string as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + The parameter is . + + + Writes a property name specified as a string and a value (as a JSON string) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON string as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + The parameter is . + + + Writes a property name specified as a string and a value (as a JSON string) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON string as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + The parameter is . + + + Writes a property name specified as a string and a UTF-8 text value (as a JSON string) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The UTF-8 encoded value to be written as a JSON string as part of the name/value pair. + The specified property name or value is too large. + Validation is enabled, and the write operation would produce invalid JSON. + The parameter is . + + + Writes a property name specified as a string and a UTF-16 text value (as a JSON string) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair. + The specified property name or value is too large. + Validation is enabled, and the write operation would produce invalid JSON. + The parameter is . + + + Writes a property name specified as a string and a string text value (as a JSON string) as part of a name/value pair of a JSON object. + The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8. + The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair. + The specified property name or value is too large. + Validation is enabled, and the write operation would produce invalid JSON. + The parameter is . + + + Writes the property name and pre-encoded value (as a JSON string) as part of a name/value pair of a JSON object. + The property name of the JSON object to be transcoded and written as UTF-8. + The JSON encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair. + The specified property name is too large. + Validation is enabled, and the write operation would produce invalid JSON. + The parameter is . + + + Writes the pre-encoded property name and value (as a JSON string) as part of a name/value pair of a JSON object. + The JSON encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON string as part of the name/value pair. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes the pre-encoded property name and value (as a JSON string) as part of a name/value pair of a JSON object. + The JSON encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON string as part of the name/value pair. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes the pre-encoded property name and value (as a JSON string) as part of a name/value pair of a JSON object. + The JSON encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a JSON string as part of the name/value pair. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes the pre-encoded property name and UTF-8 text value (as a JSON string) as part of a name/value pair of a JSON object. + The JSON encoded property name of the JSON object to be transcoded and written as UTF-8. + The UTF-8 encoded value to be written as a JSON string as part of the name/value pair. + The specified value is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes the pre-encoded property name and text value (as a JSON string) as part of a name/value pair of a JSON object. + The JSON encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a UTF-8 transcoded JSON string as part of the name/value pair. + The specified value is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes the pre-encoded property name and string text value (as a JSON string) as part of a name/value pair of a JSON object. + The JSON encoded property name of the JSON object to be transcoded and written as UTF-8. + The value to be written as a UTF-8 transcoded JSON string as part of the name/value pair. + The specified value is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes the pre-encoded property name and pre-encoded value (as a JSON string) as part of a name/value pair of a JSON object. + The JSON encoded property name of the JSON object to be transcoded and written as UTF-8. + The JSON encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a value (as a JSON string) as an element of a JSON array. + The value to be written as a JSON string as an element of a JSON array. + Validation is enabled, and the operation would result in writing invalid JSON. + + + Writes a value (as a JSON string) as an element of a JSON array. + The value to be written as a JSON string as an element of a JSON array. + Validation is enabled, and the operation would result in writing invalid JSON. + + + Writes a value (as a JSON string) as an element of a JSON array. + The value to be written as a JSON string as an element of a JSON array. + Validation is enabled, and the operation would result in writing invalid JSON. + + + Writes a UTF-8 text value (as a JSON string) as an element of a JSON array. + The UTF-8 encoded value to be written as a JSON string element of a JSON array. + The specified value is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a UTF-16 text value (as a JSON string) as an element of a JSON array. + The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string element of a JSON array. + The specified value is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes a string text value (as a JSON string) as an element of a JSON array. + The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string element of a JSON array. + The specified value is too large. + Validation is enabled, and the write operation would produce invalid JSON. + + + Writes the pre-encoded text value (as a JSON string) as an element of a JSON array. + The JSON encoded value to be written as a UTF-8 transcoded JSON string element of a JSON array. + Validation is enabled, and the write operation would produce invalid JSON. + + + \ No newline at end of file diff --git a/bin/Release/System.Text.RegularExpressions.dll b/bin/Release/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..1a64a17 Binary files /dev/null and b/bin/Release/System.Text.RegularExpressions.dll differ diff --git a/bin/Release/System.Threading.Overlapped.dll b/bin/Release/System.Threading.Overlapped.dll new file mode 100644 index 0000000..5d7e7b7 Binary files /dev/null and b/bin/Release/System.Threading.Overlapped.dll differ diff --git a/bin/Release/System.Threading.Tasks.Extensions.dll b/bin/Release/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..eeec928 Binary files /dev/null and b/bin/Release/System.Threading.Tasks.Extensions.dll differ diff --git a/bin/Release/System.Threading.Tasks.Extensions.xml b/bin/Release/System.Threading.Tasks.Extensions.xml new file mode 100644 index 0000000..5e02a99 --- /dev/null +++ b/bin/Release/System.Threading.Tasks.Extensions.xml @@ -0,0 +1,166 @@ + + + System.Threading.Tasks.Extensions + + + + + + + + + + + + + + + + + + + Provides a value type that wraps a and a TResult, only one of which is used. + The result. + + + Initializes a new instance of the class using the supplied task that represents the operation. + The task. + The task argument is null. + + + Initializes a new instance of the class using the supplied result of a successful operation. + The result. + + + Retrieves a object that represents this . + The object that is wrapped in this if one exists, or a new object that represents the result. + + + Configures an awaiter for this value. + true to attempt to marshal the continuation back to the captured context; otherwise, false. + The configured awaiter. + + + Creates a method builder for use with an async method. + The created builder. + + + Determines whether the specified object is equal to the current object. + The object to compare with the current object. + true if the specified object is equal to the current object; otherwise, false. + + + Determines whether the specified object is equal to the current object. + The object to compare with the current object. + true if the specified object is equal to the current object; otherwise, false. + + + Creates an awaiter for this value. + The awaiter. + + + Returns the hash code for this instance. + The hash code for the current object. + + + Gets a value that indicates whether this object represents a canceled operation. + true if this object represents a canceled operation; otherwise, false. + + + Gets a value that indicates whether this object represents a completed operation. + true if this object represents a completed operation; otherwise, false. + + + Gets a value that indicates whether this object represents a successfully completed operation. + true if this object represents a successfully completed operation; otherwise, false. + + + Gets a value that indicates whether this object represents a failed operation. + true if this object represents a failed operation; otherwise, false. + + + Compares two values for equality. + The first value to compare. + The second value to compare. + true if the two values are equal; otherwise, false. + + + Determines whether two values are unequal. + The first value to compare. + The seconed value to compare. + true if the two values are not equal; otherwise, false. + + + Gets the result. + The result. + + + Returns a string that represents the current object. + A string that represents the current object. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/bin/Release/System.Threading.Tasks.Parallel.dll b/bin/Release/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..c4df330 Binary files /dev/null and b/bin/Release/System.Threading.Tasks.Parallel.dll differ diff --git a/bin/Release/System.Threading.Tasks.dll b/bin/Release/System.Threading.Tasks.dll new file mode 100644 index 0000000..25999be Binary files /dev/null and b/bin/Release/System.Threading.Tasks.dll differ diff --git a/bin/Release/System.Threading.Thread.dll b/bin/Release/System.Threading.Thread.dll new file mode 100644 index 0000000..9b7da65 Binary files /dev/null and b/bin/Release/System.Threading.Thread.dll differ diff --git a/bin/Release/System.Threading.ThreadPool.dll b/bin/Release/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..9405b8f Binary files /dev/null and b/bin/Release/System.Threading.ThreadPool.dll differ diff --git a/bin/Release/System.Threading.Timer.dll b/bin/Release/System.Threading.Timer.dll new file mode 100644 index 0000000..c9eae71 Binary files /dev/null and b/bin/Release/System.Threading.Timer.dll differ diff --git a/bin/Release/System.Threading.dll b/bin/Release/System.Threading.dll new file mode 100644 index 0000000..deae2be Binary files /dev/null and b/bin/Release/System.Threading.dll differ diff --git a/bin/Release/System.ValueTuple.dll b/bin/Release/System.ValueTuple.dll new file mode 100644 index 0000000..808f2c2 Binary files /dev/null and b/bin/Release/System.ValueTuple.dll differ diff --git a/bin/Release/System.Xml.ReaderWriter.dll b/bin/Release/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..24df9a0 Binary files /dev/null and b/bin/Release/System.Xml.ReaderWriter.dll differ diff --git a/bin/Release/System.Xml.XDocument.dll b/bin/Release/System.Xml.XDocument.dll new file mode 100644 index 0000000..cbbc4f0 Binary files /dev/null and b/bin/Release/System.Xml.XDocument.dll differ diff --git a/bin/Release/System.Xml.XPath.XDocument.dll b/bin/Release/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..0830ed1 Binary files /dev/null and b/bin/Release/System.Xml.XPath.XDocument.dll differ diff --git a/bin/Release/System.Xml.XPath.dll b/bin/Release/System.Xml.XPath.dll new file mode 100644 index 0000000..8327f2e Binary files /dev/null and b/bin/Release/System.Xml.XPath.dll differ diff --git a/bin/Release/System.Xml.XmlDocument.dll b/bin/Release/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..4f044b1 Binary files /dev/null and b/bin/Release/System.Xml.XmlDocument.dll differ diff --git a/bin/Release/System.Xml.XmlSerializer.dll b/bin/Release/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..7b47de8 Binary files /dev/null and b/bin/Release/System.Xml.XmlSerializer.dll differ diff --git a/bin/Release/YoutubeExplode.dll b/bin/Release/YoutubeExplode.dll new file mode 100644 index 0000000..f16621a Binary files /dev/null and b/bin/Release/YoutubeExplode.dll differ diff --git a/bin/Release/YoutubeExplode.xml b/bin/Release/YoutubeExplode.xml new file mode 100644 index 0000000..70938ca --- /dev/null +++ b/bin/Release/YoutubeExplode.xml @@ -0,0 +1,1702 @@ + + + + YoutubeExplode + + + + + Metadata associated with a YouTube channel. + + + + + + + + + + + + + + + + + Initializes an instance of . + + + + + + + + Operations related to YouTube channels. + + + + + Initializes an instance of . + + + + + Gets the metadata associated with the specified channel. + + + + + Gets the metadata associated with the channel of the specified user. + + + + + Enumerates videos uploaded by the specified channel. + + + + + Represents a syntactically valid YouTube channel ID. + + + + + Raw ID value. + + + + + + + + Attempts to parse the specified string as a YouTube channel ID or URL. + Returns null in case of failure. + + + + + Parses the specified string as a YouTube channel ID or URL. + + + + + Converts string to ID. + + + + + Converts ID to string. + + + + + + + + + + + + + + Equality check. + + + + + Equality check. + + + + + Properties shared by channel metadata resolved from different sources. + + + + + Channel ID. + + + + + Channel URL. + + + + + Channel title. + + + + + Channel thumbnails. + + + + + Represents a syntactically valid YouTube user name. + + + + + Raw user name value. + + + + + + + + Attempts to parse the specified string as a YouTube user name or URL. + Returns null in case of failure. + + + + + Parses the specified string as a YouTube user name. + + + + + Converts string to user name. + + + + + Converts user name to string. + + + + + + + + + + + + + + Equality check. + + + + + Equality check. + + + + + Reference to a channel that owns a specific YouTube video or playlist. + + + + + Channel ID. + + + + + Channel title. + + + + + Initializes an instance of . + + + + + + + + Generic collection of items returned by a single request. + + + + + Items included in the batch. + + + + + Initializes an instance of . + + + + + Represents an item that can be included in . + This interface is used as a marker to enable extension methods. + + + + + Extensions for . + + + + + Enumerates all items in the sequence and buffers them in memory. + + + + + Enumerates a subset of items in the sequence and buffers them in memory. + + + + + + + + Resolution of an image or a video. + + + + + Canvas width (in pixels). + + + + + Canvas height (in pixels). + + + + + Canvas area (width multiplied by height). + + + + + Initializes an instance of . + + + + + + + + + + + + + + + + + Equality check. + + + + + Equality check. + + + + + Thumbnail image. + + + + + Thumbnail URL. + + + + + Thumbnail resolution. + + + + + Initializes an instance of . + + + + + + + + Extensions for . + + + + + Gets the thumbnail with the highest resolution (by area). + Returns null if the sequence is empty. + + + + + Gets the thumbnail with the highest resolution (by area). + + + + + Exception thrown when the requested playlist is unavailable. + + + + + Initializes an instance of . + + + + + Exception thrown when YouTube denies a request because the client has exceeded rate limit. + + + + + Initializes an instance of . + + + + + Exception thrown when the requested video requires purchase. + + + + + ID of a free preview video which is used as promotion for the original video. + + + + + Initializes an instance of + + + + + Exception thrown when the requested video is unavailable. + + + + + Initializes an instance of . + + + + + Exception thrown when the requested video is unplayable. + + + + + Initializes an instance of . + + + + + Exception thrown within . + + + + + Initializes an instance of . + + + + + + Properties shared by playlist metadata resolved from different sources. + + + + + Playlist ID. + + + + + Playlist URL. + + + + + Playlist title. + + + + + Playlist author. + + + May be null in case of auto-generated playlists (e.g. mixes, topics, etc). + + + + + Playlist thumbnails. + + + + + Metadata associated with a YouTube playlist. + + + + + + + + + + + + + + + + + Playlist description. + + + + + + + + Initializes an instance of . + + + + + + + + Operations related to YouTube playlists. + + + + + Initializes an instance of . + + + + + Gets the metadata associated with the specified playlist. + + + + + Enumerates batches of videos included in the specified playlist. + + + + + Enumerates videos included in the specified playlist. + + + + + Represents a syntactically valid YouTube playlist ID. + + + + + Raw ID value. + + + + + + + + Attempts to parse the specified string as a YouTube playlist ID or URL. + Returns null in case of failure. + + + + + Parses the specified string as a YouTube playlist ID or URL. + + + + + Converts string to ID. + + + + + Converts ID to string. + + + + + + + + + + + + + + Equality check. + + + + + Equality check. + + + + + Metadata associated with a YouTube video included in a playlist. + + + + + + + + + + + + + + + + + + + + + + + Initializes an instance of . + + + + + + + + Metadata associated with a YouTube channel returned by a search query. + + + + + + + + + + + + + + + + + Initializes an instance of . + + + + + + + +

+ Abstract result returned by a search query. + Use pattern matching to handle specific instances of this type. +

+

+ Can be either one of the following: + + + + + +

+
+
+ + + Result URL. + + + + + Result title. + + + + + Metadata associated with a YouTube playlist returned by a search query. + + + + + + + + + + + + + + + + + + + + Initializes an instance of . + + + + + + + + Operations related to YouTube search. + + + + + Initializes an instance of . + + + + + Enumerates batches of search results returned by the specified query. + + + + + Enumerates search results returned by the specified query. + + + + + Enumerates video search results returned by the specified query. + + + + + Enumerates playlist search results returned by the specified query. + + + + + Enumerates channel search results returned by the specified query. + + + + + Metadata associated with a YouTube video returned by a search query. + + + + + + + + + + + + + + + + + + + + + + + Initializes an instance of . + + + + + + + + Individual closed caption contained within a track. + + + + + Text displayed by the caption. + + + + + Time at which the caption starts being displayed. + + + + + Duration of time for which the caption is displayed. + + + + + Caption parts (usually representing individual words). + + + May be empty because not all captions have parts. + + + + + Initializes an instance of . + + + + + Gets the caption part displayed at the specified point in time, relative to the caption's own offset. + Returns null if not found. + + + + + Gets the caption part displayed at the specified point in time, relative to the caption's own offset. + + + + + + + + Operations related to closed captions of YouTube videos. + + + + + Initializes an instance of . + + + + + Gets the manifest containing information about available closed caption tracks on the specified video. + + + + + Gets the closed caption track identified by the specified metadata. + + + + + Writes the closed caption track identified by the specified metadata to the specified writer. + + + Closed captions are written in the SRT file format. + + + + + Downloads the closed caption track identified by the specified metadata to the specified file. + + + Closed captions are written in the SRT file format. + + + + + Contains information about available closed caption tracks on a YouTube video. + + + + + Available closed caption tracks. + + + + + Initializes an instance of . + + + + + Gets the closed caption track in the specified language (identified by ISO-639-1 code or display name). + Returns null if not found. + + + + + Gets the closed caption track in the specified language (identified by ISO-639-1 code or display name). + + + + + Individual closed caption part contained within a track. + + + + + Text displayed by the caption part. + + + + + Time at which the caption part starts being displayed (relative to the caption's own offset). + + + + + Initializes an instance of . + + + + + + + + Contains closed captions in a specific language. + + + + + Closed captions included in the track. + + + + + Initializes an instance of . + + + + + Gets the caption displayed at the specified point in time. + Returns null if not found. + + + + + Gets the caption displayed at the specified point in time. + + + + + Metadata associated with a closed caption track of a YouTube video. + + + + + Track URL. + + + + + Track language. + + + + + Whether the track was automatically generated. + + + + + Initializes an instance of . + + + + + + + + Language information. + + + + + ISO 639-1 code of the language. + + + + + Full international name of the language. + + + + + Initializes an instance of . + + + + + + + + + + + + + + + + + Equality check. + + + + + Equality check. + + + + + Engagement statistics. + + + + + View count. + + + + + Like count. + + + + + Dislike count. + + + + + Average rating. + + + + + Initializes an instance of . + + + + + + + + Properties shared by video metadata resolved from different sources. + + + + + Video ID. + + + + + Video URL. + + + + + Video title. + + + + + Video author. + + + + + Video duration. + + + May be null if the video is a currently ongoing live stream. + + + + + Video thumbnails. + + + + + Metadata associated with an audio-only YouTube media stream. + + + + + + + + + + + + + + + + + + + + Initializes an instance of . + + + + + + + + Bitrate. + + + + + Bitrate in bits per second. + + + + + Bitrate in kilobits per second. + + + + + Bitrate in megabits per second. + + + + + Bitrate in gigabits per second + + + + + Initializes an instance of . + + + + + + + + + + + + + + + + + + + + Equality check. + + + + + Equality check. + + + + + Comparison. + + + + + Comparison. + + + + + Stream container. + + + + + Container name (e.g. mp4, webm, etc). + Can be used as file extension. + + + + + Initializes an instance of . + + + + + + + + MPEG-4 Part 14 (mp4). + + + + + Web Media (webm). + + + + + 3rd Generation Partnership Project (3gpp). + + + + + + + + + + + + + + Equality check. + + + + + Equality check. + + + + + File size. + + + + + Size in bytes. + + + + + Size in kilobytes. + + + + + Size in megabytes. + + + + + Size in gigabytes. + + + + + Initializes an instance of . + + + + + + + + + + + + + + + + + + + + Equality check. + + + + + Equality check. + + + + + Comparison. + + + + + Comparison. + + + + + Metadata associated with a media stream that contains audio. + + + + + Audio codec. + + + + + Metadata associated with a media stream of a YouTube video. + + + + + Stream URL. + + + + + Stream container. + + + + + Stream size. + + + + + Stream bitrate. + + + + + Extensions for . + + + + + Gets the stream with the highest bitrate. + Returns null if the sequence is empty. + + + + + Gets the stream with the highest bitrate. + + + + + Metadata associated with a media stream that contains video. + + + + + Video codec. + + + + + Video quality. + + + + + Video resolution. + + + + + Extensions for . + + + + + Gets the video stream with the highest video quality (including framerate). + Returns null if the sequence is empty. + + + + + Gets the video stream with the highest video quality (including framerate). + + + + + Metadata associated with a muxed (audio + video combined) media stream. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Initializes an instance of . + + + + + + + + Operations related to media streams of YouTube videos. + + + + + Initializes an instance of . + + + + + Gets the manifest containing information about available streams on the specified video. + + + + + Gets the HTTP Live Stream (HLS) manifest URL for the specified video (if it is a livestream). + + + + + Gets the stream identified by the specified metadata. + + + + + Copies the stream identified by the specified metadata to the specified stream. + + + + + Downloads the stream identified by the specified metadata to the specified file. + + + + + Contains information about available media streams on a YouTube video. + + + + + Available streams. + + + + + Initializes an instance of . + + + + + Gets streams that contain audio (i.e. muxed and audio-only streams). + + + + + Gets streams that contain video (i.e. muxed and video-only streams). + + + + + Gets muxed streams (i.e. streams containing both audio and video). + + + + + Gets audio-only streams. + + + + + Gets video-only streams. + + + + + Metadata associated with a video-only media stream. + + + + + + + + + + + + + + + + + + + + + + + + + + Initializes an instance of . + + + + + + + + Video stream quality. + + + + + Quality label as seen on YouTube (e.g. 1080p, 720p60, etc). + + + + + Maximum established height of the video stream. + Actual height can vary. + + + + + Video stream framerate (in frames per second). + + + + + Whether this is a high definition video quality (i.e. 1080p or above). + + + + + Initializes an instance of . + + + + + Initializes an instance of . + + + + + + + + + + + + + + + + + + + + Equality check. + + + + + Equality check. + + + + + Comparison. + + + + + Comparison. + + + + + Metadata associated with a YouTube video. + + + + + + + + + + + + + + + + + Video upload date. + + + + + Video description. + + + + + + + + + + + Available search keywords for the video. + + + + + Engagement statistics for the video. + + + + + Initializes an instance of . + + + + + + + + Operations related to YouTube videos. + + + + + Operations related to media streams of YouTube videos. + + + + + Operations related to closed captions of YouTube videos. + + + + + Initializes an instance of . + + + + + Gets the metadata associated with the specified video. + + + + + Represents a syntactically valid YouTube video ID. + + + + + Raw ID value. + + + + + + + + Attempts to parse the specified string as a video ID or URL. + Returns null in case of failure. + + + + + Parses the specified string as a YouTube video ID or URL. + Throws an exception in case of failure. + + + + + Converts string to ID. + + + + + Converts ID to string. + + + + + + + + + + + + + + Equality check. + + + + + Equality check. + + + + + Client for interacting with YouTube. + + + + + Operations related to YouTube videos. + + + + + Operations related to YouTube playlists. + + + + + Operations related to YouTube channels. + + + + + Operations related to YouTube search. + + + + + Initializes an instance of . + + + + + Initializes an instance of . + + +
+
diff --git a/bin/Release/netstandard.dll b/bin/Release/netstandard.dll new file mode 100644 index 0000000..1f1ab22 Binary files /dev/null and b/bin/Release/netstandard.dll differ diff --git a/bin/Release/youtube-downloader.exe b/bin/Release/youtube-downloader.exe new file mode 100644 index 0000000..e2d4a14 Binary files /dev/null and b/bin/Release/youtube-downloader.exe differ diff --git a/obj/x86/Release/.NETFramework,Version=v4.7.AssemblyAttributes.cs b/obj/x86/Release/.NETFramework,Version=v4.7.AssemblyAttributes.cs new file mode 100644 index 0000000..4c82453 --- /dev/null +++ b/obj/x86/Release/.NETFramework,Version=v4.7.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7", FrameworkDisplayName = ".NET Framework 4.7")] diff --git a/obj/x86/Release/youtube-downloader.csproj.CopyComplete b/obj/x86/Release/youtube-downloader.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/x86/Release/youtube-downloader.csproj.CoreCompileInputs.cache b/obj/x86/Release/youtube-downloader.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..f66a76f --- /dev/null +++ b/obj/x86/Release/youtube-downloader.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +e014680c7146ffd5391e681be8d2aaecc9460d86 diff --git a/obj/x86/Release/youtube-downloader.csproj.FileListAbsolute.txt b/obj/x86/Release/youtube-downloader.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..6d449d8 --- /dev/null +++ b/obj/x86/Release/youtube-downloader.csproj.FileListAbsolute.txt @@ -0,0 +1,129 @@ +/home/tom/site/bin/Release/youtube-downloader.exe +/home/tom/site/bin/Release/System.Runtime.InteropServices.RuntimeInformation.dll +/home/tom/site/bin/Release/System.Security.Cryptography.Algorithms.dll +/home/tom/site/bin/Release/System.ValueTuple.dll +/home/tom/site/bin/Release/Microsoft.Win32.Primitives.dll +/home/tom/site/bin/Release/netstandard.dll +/home/tom/site/bin/Release/System.AppContext.dll +/home/tom/site/bin/Release/System.Collections.Concurrent.dll +/home/tom/site/bin/Release/System.Collections.dll +/home/tom/site/bin/Release/System.Collections.NonGeneric.dll +/home/tom/site/bin/Release/System.Collections.Specialized.dll +/home/tom/site/bin/Release/System.ComponentModel.dll +/home/tom/site/bin/Release/System.ComponentModel.EventBasedAsync.dll +/home/tom/site/bin/Release/System.ComponentModel.Primitives.dll +/home/tom/site/bin/Release/System.ComponentModel.TypeConverter.dll +/home/tom/site/bin/Release/System.Console.dll +/home/tom/site/bin/Release/System.Data.Common.dll +/home/tom/site/bin/Release/System.Diagnostics.Contracts.dll +/home/tom/site/bin/Release/System.Diagnostics.Debug.dll +/home/tom/site/bin/Release/System.Diagnostics.FileVersionInfo.dll +/home/tom/site/bin/Release/System.Diagnostics.Process.dll +/home/tom/site/bin/Release/System.Diagnostics.StackTrace.dll +/home/tom/site/bin/Release/System.Diagnostics.TextWriterTraceListener.dll +/home/tom/site/bin/Release/System.Diagnostics.Tools.dll +/home/tom/site/bin/Release/System.Diagnostics.TraceSource.dll +/home/tom/site/bin/Release/System.Diagnostics.Tracing.dll +/home/tom/site/bin/Release/System.Drawing.Primitives.dll +/home/tom/site/bin/Release/System.Dynamic.Runtime.dll +/home/tom/site/bin/Release/System.Globalization.Calendars.dll +/home/tom/site/bin/Release/System.Globalization.dll +/home/tom/site/bin/Release/System.Globalization.Extensions.dll +/home/tom/site/bin/Release/System.IO.Compression.dll +/home/tom/site/bin/Release/System.IO.Compression.ZipFile.dll +/home/tom/site/bin/Release/System.IO.dll +/home/tom/site/bin/Release/System.IO.FileSystem.dll +/home/tom/site/bin/Release/System.IO.FileSystem.DriveInfo.dll +/home/tom/site/bin/Release/System.IO.FileSystem.Primitives.dll +/home/tom/site/bin/Release/System.IO.FileSystem.Watcher.dll +/home/tom/site/bin/Release/System.IO.IsolatedStorage.dll +/home/tom/site/bin/Release/System.IO.MemoryMappedFiles.dll +/home/tom/site/bin/Release/System.IO.Pipes.dll +/home/tom/site/bin/Release/System.IO.UnmanagedMemoryStream.dll +/home/tom/site/bin/Release/System.Linq.dll +/home/tom/site/bin/Release/System.Linq.Expressions.dll +/home/tom/site/bin/Release/System.Linq.Parallel.dll +/home/tom/site/bin/Release/System.Linq.Queryable.dll +/home/tom/site/bin/Release/System.Net.Http.dll +/home/tom/site/bin/Release/System.Net.NameResolution.dll +/home/tom/site/bin/Release/System.Net.NetworkInformation.dll +/home/tom/site/bin/Release/System.Net.Ping.dll +/home/tom/site/bin/Release/System.Net.Primitives.dll +/home/tom/site/bin/Release/System.Net.Requests.dll +/home/tom/site/bin/Release/System.Net.Security.dll +/home/tom/site/bin/Release/System.Net.Sockets.dll +/home/tom/site/bin/Release/System.Net.WebHeaderCollection.dll +/home/tom/site/bin/Release/System.Net.WebSockets.Client.dll +/home/tom/site/bin/Release/System.Net.WebSockets.dll +/home/tom/site/bin/Release/System.ObjectModel.dll +/home/tom/site/bin/Release/System.Reflection.dll +/home/tom/site/bin/Release/System.Reflection.Extensions.dll +/home/tom/site/bin/Release/System.Reflection.Primitives.dll +/home/tom/site/bin/Release/System.Resources.Reader.dll +/home/tom/site/bin/Release/System.Resources.ResourceManager.dll +/home/tom/site/bin/Release/System.Resources.Writer.dll +/home/tom/site/bin/Release/System.Runtime.CompilerServices.VisualC.dll +/home/tom/site/bin/Release/System.Runtime.dll +/home/tom/site/bin/Release/System.Runtime.Extensions.dll +/home/tom/site/bin/Release/System.Runtime.Handles.dll +/home/tom/site/bin/Release/System.Runtime.InteropServices.dll +/home/tom/site/bin/Release/System.Runtime.Numerics.dll +/home/tom/site/bin/Release/System.Runtime.Serialization.Formatters.dll +/home/tom/site/bin/Release/System.Runtime.Serialization.Json.dll +/home/tom/site/bin/Release/System.Runtime.Serialization.Primitives.dll +/home/tom/site/bin/Release/System.Runtime.Serialization.Xml.dll +/home/tom/site/bin/Release/System.Security.Claims.dll +/home/tom/site/bin/Release/System.Security.Cryptography.Csp.dll +/home/tom/site/bin/Release/System.Security.Cryptography.Encoding.dll +/home/tom/site/bin/Release/System.Security.Cryptography.Primitives.dll +/home/tom/site/bin/Release/System.Security.Cryptography.X509Certificates.dll +/home/tom/site/bin/Release/System.Security.Principal.dll +/home/tom/site/bin/Release/System.Security.SecureString.dll +/home/tom/site/bin/Release/System.Text.Encoding.dll +/home/tom/site/bin/Release/System.Text.Encoding.Extensions.dll +/home/tom/site/bin/Release/System.Text.RegularExpressions.dll +/home/tom/site/bin/Release/System.Threading.dll +/home/tom/site/bin/Release/System.Threading.Overlapped.dll +/home/tom/site/bin/Release/System.Threading.Tasks.dll +/home/tom/site/bin/Release/System.Threading.Tasks.Parallel.dll +/home/tom/site/bin/Release/System.Threading.Thread.dll +/home/tom/site/bin/Release/System.Threading.ThreadPool.dll +/home/tom/site/bin/Release/System.Threading.Timer.dll +/home/tom/site/bin/Release/System.Xml.ReaderWriter.dll +/home/tom/site/bin/Release/System.Xml.XDocument.dll +/home/tom/site/bin/Release/System.Xml.XmlDocument.dll +/home/tom/site/bin/Release/System.Xml.XmlSerializer.dll +/home/tom/site/bin/Release/System.Xml.XPath.dll +/home/tom/site/bin/Release/System.Xml.XPath.XDocument.dll +/home/tom/site/bin/Release/AngleSharp.dll +/home/tom/site/bin/Release/AsyncEnumerable.dll +/home/tom/site/bin/Release/Microsoft.Bcl.AsyncInterfaces.dll +/home/tom/site/bin/Release/MimeTypesMap.dll +/home/tom/site/bin/Release/Newtonsoft.Json.dll +/home/tom/site/bin/Release/SimpleHTTP.dll +/home/tom/site/bin/Release/System.Buffers.dll +/home/tom/site/bin/Release/System.Memory.dll +/home/tom/site/bin/Release/System.Numerics.Vectors.dll +/home/tom/site/bin/Release/System.Runtime.CompilerServices.Unsafe.dll +/home/tom/site/bin/Release/System.Text.Encoding.CodePages.dll +/home/tom/site/bin/Release/System.Text.Encodings.Web.dll +/home/tom/site/bin/Release/System.Text.Json.dll +/home/tom/site/bin/Release/System.Threading.Tasks.Extensions.dll +/home/tom/site/bin/Release/YoutubeExplode.dll +/home/tom/site/bin/Release/Newtonsoft.Json.xml +/home/tom/site/bin/Release/System.Buffers.xml +/home/tom/site/bin/Release/System.Numerics.Vectors.xml +/home/tom/site/bin/Release/System.Runtime.CompilerServices.Unsafe.xml +/home/tom/site/bin/Release/System.Memory.xml +/home/tom/site/bin/Release/AngleSharp.xml +/home/tom/site/bin/Release/System.Text.Encodings.Web.xml +/home/tom/site/bin/Release/System.Threading.Tasks.Extensions.xml +/home/tom/site/bin/Release/Microsoft.Bcl.AsyncInterfaces.xml +/home/tom/site/bin/Release/System.Text.Json.xml +/home/tom/site/bin/Release/YoutubeExplode.xml +/home/tom/site/bin/Release/SimpleHTTP.xml +/home/tom/site/bin/Release/AsyncEnumerable.xml +/home/tom/site/obj/x86/Release/youtube-downloader.csprojAssemblyReference.cache +/home/tom/site/obj/x86/Release/youtube-downloader.csproj.CoreCompileInputs.cache +/home/tom/site/obj/x86/Release/youtube-downloader.csproj.CopyComplete +/home/tom/site/obj/x86/Release/youtube-downloader.exe diff --git a/obj/x86/Release/youtube-downloader.csprojAssemblyReference.cache b/obj/x86/Release/youtube-downloader.csprojAssemblyReference.cache new file mode 100644 index 0000000..2827983 Binary files /dev/null and b/obj/x86/Release/youtube-downloader.csprojAssemblyReference.cache differ diff --git a/obj/x86/Release/youtube-downloader.exe b/obj/x86/Release/youtube-downloader.exe new file mode 100644 index 0000000..e2d4a14 Binary files /dev/null and b/obj/x86/Release/youtube-downloader.exe differ diff --git a/packages/AsyncEnumerator.4.0.2/AsyncEnumerator.4.0.2.nupkg b/packages/AsyncEnumerator.4.0.2/AsyncEnumerator.4.0.2.nupkg new file mode 100755 index 0000000..6c56140 Binary files /dev/null and b/packages/AsyncEnumerator.4.0.2/AsyncEnumerator.4.0.2.nupkg differ diff --git a/packages/Microsoft.Bcl.AsyncInterfaces.6.0.0-preview.7.21377.19/Microsoft.Bcl.AsyncInterfaces.6.0.0-preview.7.21377.19.nupkg b/packages/Microsoft.Bcl.AsyncInterfaces.6.0.0-preview.7.21377.19/Microsoft.Bcl.AsyncInterfaces.6.0.0-preview.7.21377.19.nupkg new file mode 100755 index 0000000..c9d5faf Binary files /dev/null and b/packages/Microsoft.Bcl.AsyncInterfaces.6.0.0-preview.7.21377.19/Microsoft.Bcl.AsyncInterfaces.6.0.0-preview.7.21377.19.nupkg differ