banking-bot/packages/Selenium.WebDriver.3.0.0/lib/net35/WebDriver.xml
2017-01-25 19:24:28 +00:00

18912 lines
No EOL
947 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?xml version="1.0"?>
<doc>
<assembly>
<name>WebDriver</name>
</assembly>
<members>
<member name="T:OpenQA.Selenium.By">
<summary>
Provides a mechanism by which to find elements within a document.
</summary>
<remarks>It is possible to create your own locating mechanisms for finding documents.
In order to do this,subclass this class and override the protected methods. However,
it is expected that that all subclasses rely on the basic finding mechanisms provided
through static methods of this class. An example of this can be found in OpenQA.Support.ByIdOrName
</remarks>
</member>
<member name="M:OpenQA.Selenium.By.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.By" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.By.#ctor(System.Func{OpenQA.Selenium.ISearchContext,OpenQA.Selenium.IWebElement},System.Func{OpenQA.Selenium.ISearchContext,System.Collections.ObjectModel.ReadOnlyCollection{OpenQA.Selenium.IWebElement}})">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.By" /> class using the given functions to find elements.
</summary>
<param name="findElementMethod">A function that takes an object implementing <see cref="T:OpenQA.Selenium.ISearchContext" />
and returns the found <see cref="T:OpenQA.Selenium.IWebElement" />.</param>
<param name="findElementsMethod">A function that takes an object implementing <see cref="T:OpenQA.Selenium.ISearchContext" />
and returns a <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> of the found<see cref="T:OpenQA.Selenium.IWebElement">IWebElements</see>.
<see cref="T:OpenQA.Selenium.IWebElement">IWebElements</see>/&gt;.</param>
</member>
<member name="M:OpenQA.Selenium.By.op_Equality(OpenQA.Selenium.By,OpenQA.Selenium.By)">
<summary>
Determines if two <see cref="T:OpenQA.Selenium.By" /> instances are equal.
</summary>
<param name="one">One instance to compare.</param>
<param name="two">The other instance to compare.</param>
<returns>
<see langword="true" /> if the two instances are equal; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:OpenQA.Selenium.By.op_Inequality(OpenQA.Selenium.By,OpenQA.Selenium.By)">
<summary>
Determines if two <see cref="T:OpenQA.Selenium.By" /> instances are unequal.
</summary>s
<param name="one">One instance to compare.</param><param name="two">The other instance to compare.</param><returns><see langword="true" /> if the two instances are not equal; otherwise, <see langword="false" />.</returns></member>
<member name="M:OpenQA.Selenium.By.Id(System.String)">
<summary>
Gets a mechanism to find elements by their ID.
</summary>
<param name="idToFind">The ID to find.</param>
<returns>A <see cref="T:OpenQA.Selenium.By" /> object the driver can use to find the elements.</returns>
</member>
<member name="M:OpenQA.Selenium.By.LinkText(System.String)">
<summary>
Gets a mechanism to find elements by their link text.
</summary>
<param name="linkTextToFind">The link text to find.</param>
<returns>A <see cref="T:OpenQA.Selenium.By" /> object the driver can use to find the elements.</returns>
</member>
<member name="M:OpenQA.Selenium.By.Name(System.String)">
<summary>
Gets a mechanism to find elements by their name.
</summary>
<param name="nameToFind">The name to find.</param>
<returns>A <see cref="T:OpenQA.Selenium.By" /> object the driver can use to find the elements.</returns>
</member>
<member name="M:OpenQA.Selenium.By.XPath(System.String)">
<summary>
Gets a mechanism to find elements by an XPath query.
When searching within a WebElement using xpath be aware that WebDriver follows standard conventions:
a search prefixed with "//" will search the entire document, not just the children of this current node.
Use ".//" to limit your search to the children of this WebElement.
</summary>
<param name="xpathToFind">The XPath query to use.</param>
<returns>A <see cref="T:OpenQA.Selenium.By" /> object the driver can use to find the elements.</returns>
</member>
<member name="M:OpenQA.Selenium.By.ClassName(System.String)">
<summary>
Gets a mechanism to find elements by their CSS class.
</summary>
<param name="classNameToFind">The CSS class to find.</param>
<returns>A <see cref="T:OpenQA.Selenium.By" /> object the driver can use to find the elements.</returns>
<remarks>If an element has many classes then this will match against each of them.
For example if the value is "one two onone", then the following values for the
className parameter will match: "one" and "two".</remarks>
</member>
<member name="M:OpenQA.Selenium.By.PartialLinkText(System.String)">
<summary>
Gets a mechanism to find elements by a partial match on their link text.
</summary>
<param name="partialLinkTextToFind">The partial link text to find.</param>
<returns>A <see cref="T:OpenQA.Selenium.By" /> object the driver can use to find the elements.</returns>
</member>
<member name="M:OpenQA.Selenium.By.TagName(System.String)">
<summary>
Gets a mechanism to find elements by their tag name.
</summary>
<param name="tagNameToFind">The tag name to find.</param>
<returns>A <see cref="T:OpenQA.Selenium.By" /> object the driver can use to find the elements.</returns>
</member>
<member name="M:OpenQA.Selenium.By.CssSelector(System.String)">
<summary>
Gets a mechanism to find elements by their cascading style sheet (CSS) selector.
</summary>
<param name="cssSelectorToFind">The CSS selector to find.</param>
<returns>A <see cref="T:OpenQA.Selenium.By" /> object the driver can use to find the elements.</returns>
</member>
<member name="M:OpenQA.Selenium.By.FindElement(OpenQA.Selenium.ISearchContext)">
<summary>
Finds the first element matching the criteria.
</summary>
<param name="context">An <see cref="T:OpenQA.Selenium.ISearchContext" /> object to use to search for the elements.</param>
<returns>The first matching <see cref="T:OpenQA.Selenium.IWebElement" /> on the current context.</returns>
</member>
<member name="M:OpenQA.Selenium.By.FindElements(OpenQA.Selenium.ISearchContext)">
<summary>
Finds all elements matching the criteria.
</summary>
<param name="context">An <see cref="T:OpenQA.Selenium.ISearchContext" /> object to use to search for the elements.</param>
<returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> of all <see cref="T:OpenQA.Selenium.IWebElement">WebElements</see>
matching the current criteria, or an empty list if nothing matches.</returns>
</member>
<member name="M:OpenQA.Selenium.By.ToString">
<summary>
Gets a string representation of the finder.
</summary>
<returns>The string displaying the finder content.</returns>
</member>
<member name="M:OpenQA.Selenium.By.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object">Object</see> is equal
to the current <see cref="T:System.Object">Object</see>.
</summary>
<param name="obj">The <see cref="T:System.Object">Object</see> to compare with the
current <see cref="T:System.Object">Object</see>.</param>
<returns>
<see langword="true" /> if the specified <see cref="T:System.Object">Object</see>
is equal to the current <see cref="T:System.Object">Object</see>; otherwise,
<see langword="false" />.</returns>
</member>
<member name="M:OpenQA.Selenium.By.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<returns>A hash code for the current <see cref="T:System.Object">Object</see>.</returns>
</member>
<member name="P:OpenQA.Selenium.By.Description">
<summary>
Gets or sets the value of the description for this <see cref="T:OpenQA.Selenium.By" /> class instance.
</summary>
</member>
<member name="P:OpenQA.Selenium.By.FindElementMethod">
<summary>
Gets or sets the method used to find a single element matching specified criteria.
</summary>
</member>
<member name="P:OpenQA.Selenium.By.FindElementsMethod">
<summary>
Gets or sets the method used to find all elements matching specified criteria.
</summary>
</member>
<member name="T:OpenQA.Selenium.Cookie">
<summary>
Represents a cookie in the browser.
</summary>
</member>
<member name="M:OpenQA.Selenium.Cookie.#ctor(System.String,System.String,System.String,System.String,System.Nullable{System.DateTime})">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Cookie" /> class with a specific name,
value, domain, path and expiration date.
</summary>
<param name="name">The name of the cookie.</param>
<param name="value">The value of the cookie.</param>
<param name="domain">The domain of the cookie.</param>
<param name="path">The path of the cookie.</param>
<param name="expiry">The expiration date of the cookie.</param>
<exception cref="T:System.ArgumentException">If the name is <see langword="null" /> or an empty string,
or if it contains a semi-colon.</exception>
<exception cref="T:System.ArgumentNullException">If the value is <see langword="null" />.</exception>
</member>
<member name="M:OpenQA.Selenium.Cookie.#ctor(System.String,System.String,System.String,System.Nullable{System.DateTime})">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Cookie" /> class with a specific name,
value, path and expiration date.
</summary>
<param name="name">The name of the cookie.</param>
<param name="value">The value of the cookie.</param>
<param name="path">The path of the cookie.</param>
<param name="expiry">The expiration date of the cookie.</param>
<exception cref="T:System.ArgumentException">If the name is <see langword="null" /> or an empty string,
or if it contains a semi-colon.</exception>
<exception cref="T:System.ArgumentNullException">If the value is <see langword="null" />.</exception>
</member>
<member name="M:OpenQA.Selenium.Cookie.#ctor(System.String,System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Cookie" /> class with a specific name,
value, and path.
</summary>
<param name="name">The name of the cookie.</param>
<param name="value">The value of the cookie.</param>
<param name="path">The path of the cookie.</param>
<exception cref="T:System.ArgumentException">If the name is <see langword="null" /> or an empty string,
or if it contains a semi-colon.</exception>
<exception cref="T:System.ArgumentNullException">If the value is <see langword="null" />.</exception>
</member>
<member name="M:OpenQA.Selenium.Cookie.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Cookie" /> class with a specific name and value.
</summary>
<param name="name">The name of the cookie.</param>
<param name="value">The value of the cookie.</param>
<exception cref="T:System.ArgumentException">If the name is <see langword="null" /> or an empty string,
or if it contains a semi-colon.</exception>
<exception cref="T:System.ArgumentNullException">If the value is <see langword="null" />.</exception>
</member>
<member name="M:OpenQA.Selenium.Cookie.FromDictionary(System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
Converts a Dictionary to a Cookie.
</summary>
<param name="rawCookie">The Dictionary object containing the cookie parameters.</param>
<returns>A <see cref="T:OpenQA.Selenium.Cookie" /> object with the proper parameters set.</returns>
</member>
<member name="M:OpenQA.Selenium.Cookie.ToString">
<summary>
Creates and returns a string representation of the cookie.
</summary>
<returns>A string representation of the cookie.</returns>
</member>
<member name="M:OpenQA.Selenium.Cookie.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object">Object</see> is equal
to the current <see cref="T:System.Object">Object</see>.
</summary>
<param name="obj">The <see cref="T:System.Object">Object</see> to compare with the
current <see cref="T:System.Object">Object</see>.</param>
<returns>
<see langword="true" /> if the specified <see cref="T:System.Object">Object</see>
is equal to the current <see cref="T:System.Object">Object</see>; otherwise,
<see langword="false" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Cookie.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<returns>A hash code for the current <see cref="T:System.Object">Object</see>.</returns>
</member>
<member name="P:OpenQA.Selenium.Cookie.Name">
<summary>
Gets the name of the cookie.
</summary>
</member>
<member name="P:OpenQA.Selenium.Cookie.Value">
<summary>
Gets the value of the cookie.
</summary>
</member>
<member name="P:OpenQA.Selenium.Cookie.Domain">
<summary>
Gets the domain of the cookie.
</summary>
</member>
<member name="P:OpenQA.Selenium.Cookie.Path">
<summary>
Gets the path of the cookie.
</summary>
</member>
<member name="P:OpenQA.Selenium.Cookie.Secure">
<summary>
Gets a value indicating whether the cookie is secure.
</summary>
</member>
<member name="P:OpenQA.Selenium.Cookie.IsHttpOnly">
<summary>
Gets a value indicating whether the cookie is an HTTP-only cookie.
</summary>
</member>
<member name="P:OpenQA.Selenium.Cookie.Expiry">
<summary>
Gets the expiration date of the cookie.
</summary>
</member>
<member name="P:OpenQA.Selenium.Cookie.ExpirySeconds">
<summary>
Gets the cookie expiration date in seconds from the defined zero date (01 January 1970 00:00:00 UTC).
</summary>
<remarks>This property only exists so that the JSON serializer can serialize a
cookie without resorting to a custom converter.</remarks>
</member>
<member name="T:OpenQA.Selenium.IFileDetector">
<summary>
Defines an object responsible for detecting sequences of keystrokes
representing file paths and names.
</summary>
</member>
<member name="M:OpenQA.Selenium.IFileDetector.IsFile(System.String)">
<summary>
Returns a value indicating whether a specified key sequence represents
a file name and path.
</summary>
<param name="keySequence">The sequence to test for file existence.</param>
<returns>
<see langword="true" /> if the key sequence represents a file; otherwise, <see langword="false" />.</returns>
</member>
<member name="T:OpenQA.Selenium.DefaultFileDetector">
<summary>
Represents the default file detector for determining whether a file
must be uploaded to a remote server.
</summary>
</member>
<member name="M:OpenQA.Selenium.DefaultFileDetector.IsFile(System.String)">
<summary>
Returns a value indicating whether a specified key sequence represents
a file name and path.
</summary>
<param name="keySequence">The sequence to test for file existence.</param>
<returns>This method always returns <see langword="false" /> in this implementation.</returns>
</member>
<member name="T:OpenQA.Selenium.DriverOptions">
<summary>
Base class for managing options specific to a browser driver.
</summary>
</member>
<member name="M:OpenQA.Selenium.DriverOptions.AddAdditionalCapability(System.String,System.Object)">
<summary>
Provides a means to add additional capabilities not yet added as type safe options
for the specific browser driver.
</summary>
<param name="capabilityName">The name of the capability to add.</param>
<param name="capabilityValue">The value of the capability to add.</param>
<exception cref="T:System.ArgumentException">
thrown when attempting to add a capability for which there is already a type safe option, or
when <paramref name="capabilityName" /> is <see langword="null" /> or the empty string.
</exception>
<remarks>Calling <see cref="M:OpenQA.Selenium.DriverOptions.AddAdditionalCapability(System.String,System.Object)" />
where <paramref name="capabilityName" /> has already been added will overwrite the
existing value with the new value in <paramref name="capabilityValue" />.
</remarks>
</member>
<member name="M:OpenQA.Selenium.DriverOptions.ToCapabilities">
<summary>
Returns DesiredCapabilities for the specific browser driver with these
options included ascapabilities. This does not copy the options. Further
changes will be reflected in the returned capabilities.
</summary>
<returns>The DesiredCapabilities for browser driver with these options.</returns>
</member>
<member name="M:OpenQA.Selenium.DriverOptions.SetLoggingPreference(System.String,OpenQA.Selenium.LogLevel)">
<summary>
Sets the logging preferences for this driver.
</summary>
<param name="logType">The type of log for which to set the preference.
Known log types can be found in the <see cref="T:OpenQA.Selenium.LogType" /> class.</param>
<param name="logLevel">The <see cref="T:OpenQA.Selenium.LogLevel" /> value to which to set the log level.</param>
</member>
<member name="M:OpenQA.Selenium.DriverOptions.GenerateLoggingPreferencesDictionary">
<summary>
Generates the logging preferences dictionary for transmission as a desired capability.
</summary>
<returns>The dictionary containing the logging preferences.</returns>
</member>
<member name="T:OpenQA.Selenium.Remote.ICommandServer">
<summary>
Provides a way to start a server that understands remote commands
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.ICommandServer.Start">
<summary>
Starts the server.
</summary>
</member>
<member name="T:OpenQA.Selenium.DriverService">
<summary>
Exposes the service provided by a native WebDriver server executable.
</summary>
</member>
<member name="M:OpenQA.Selenium.DriverService.#ctor(System.String,System.Int32,System.String,System.Uri)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.DriverService" /> class.
</summary>
<param name="servicePath">The full path to the directory containing the executable providing the service to drive the browser.</param>
<param name="port">The port on which the driver executable should listen.</param>
<param name="driverServiceExecutableName">The file name of the driver service executable.</param>
<param name="driverServiceDownloadUrl">A URL at which the driver service executable may be downloaded.</param>
<exception cref="T:System.ArgumentException">
If the path specified is <see langword="null" /> or an empty string.
</exception>
<exception cref="T:OpenQA.Selenium.DriverServiceNotFoundException">
If the specified driver service executable does not exist in the specified directory.
</exception>
</member>
<member name="M:OpenQA.Selenium.DriverService.Dispose">
<summary>
Releases all resources associated with this <see cref="T:OpenQA.Selenium.DriverService" />.
</summary>
</member>
<member name="M:OpenQA.Selenium.DriverService.Start">
<summary>
Starts the DriverService.
</summary>
</member>
<member name="M:OpenQA.Selenium.DriverService.FindDriverServiceExecutable(System.String,System.Uri)">
<summary>
Finds the specified driver service executable.
</summary>
<param name="executableName">The file name of the executable to find.</param>
<param name="downloadUrl">A URL at which the driver service executable may be downloaded.</param>
<returns>The directory containing the driver service executable.</returns>
<exception cref="T:OpenQA.Selenium.DriverServiceNotFoundException">
If the specified driver service executable does not exist in the current directory or in a directory on the system path.
</exception>
</member>
<member name="M:OpenQA.Selenium.DriverService.Dispose(System.Boolean)">
<summary>
Releases all resources associated with this <see cref="T:OpenQA.Selenium.DriverService" />.
</summary>
<param name="disposing">
<see langword="true" /> if the Dispose method was explicitly called; otherwise, <see langword="false" />.</param>
</member>
<member name="M:OpenQA.Selenium.DriverService.Stop">
<summary>
Stops the DriverService.
</summary>
</member>
<member name="M:OpenQA.Selenium.DriverService.WaitForServiceInitialization">
<summary>
Waits until a the service is initialized, or the timeout set
by the <see cref="P:OpenQA.Selenium.DriverService.InitializationTimeout" /> property is reached.
</summary>
<returns>
<see langword="true" /> if the service is properly started and receiving HTTP requests;
otherwise; <see langword="false" />.</returns>
</member>
<member name="P:OpenQA.Selenium.DriverService.ServiceUrl">
<summary>
Gets the Uri of the service.
</summary>
</member>
<member name="P:OpenQA.Selenium.DriverService.Port">
<summary>
Gets or sets the port of the service.
</summary>
</member>
<member name="P:OpenQA.Selenium.DriverService.SuppressInitialDiagnosticInformation">
<summary>
Gets or sets a value indicating whether the initial diagnostic information is suppressed
when starting the driver server executable. Defaults to <see langword="false" />, meaning
diagnostic information should be shown by the driver server executable.
</summary>
</member>
<member name="P:OpenQA.Selenium.DriverService.IsRunning">
<summary>
Gets a value indicating whether the service is running.
</summary>
</member>
<member name="P:OpenQA.Selenium.DriverService.HideCommandPromptWindow">
<summary>
Gets or sets a value indicating whether the command prompt window of the service should be hidden.
</summary>
</member>
<member name="P:OpenQA.Selenium.DriverService.ProcessId">
<summary>
Gets the process ID of the running driver service executable. Returns 0 if the process is not running.
</summary>
</member>
<member name="P:OpenQA.Selenium.DriverService.DriverServiceExecutableName">
<summary>
Gets the executable file name of the driver service.
</summary>
</member>
<member name="P:OpenQA.Selenium.DriverService.CommandLineArguments">
<summary>
Gets the command-line arguments for the driver service.
</summary>
</member>
<member name="P:OpenQA.Selenium.DriverService.InitializationTimeout">
<summary>
Gets a value indicating the time to wait for an initial connection before timing out.
</summary>
</member>
<member name="P:OpenQA.Selenium.DriverService.TerminationTimeout">
<summary>
Gets a value indicating the time to wait for the service to terminate before forcing it to terminate.
</summary>
</member>
<member name="P:OpenQA.Selenium.DriverService.IsInitialized">
<summary>
Gets a value indicating whether the service is responding to HTTP requests.
</summary>
</member>
<member name="T:OpenQA.Selenium.WebDriverException">
<summary>
Represents exceptions that are thrown when an error occurs during actions.
</summary>
</member>
<member name="M:OpenQA.Selenium.WebDriverException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.WebDriverException" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.WebDriverException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.WebDriverException" /> class with
a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:OpenQA.Selenium.WebDriverException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.WebDriverException" /> class with
a specified error message and a reference to the inner exception that is the
cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception,
or <see langword="null" /> if no inner exception is specified.</param>
</member>
<member name="M:OpenQA.Selenium.WebDriverException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.WebDriverException" /> class with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="T:OpenQA.Selenium.DriverServiceNotFoundException">
<summary>
The exception that is thrown when an element is not visible.
</summary>
</member>
<member name="M:OpenQA.Selenium.DriverServiceNotFoundException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.DriverServiceNotFoundException" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.DriverServiceNotFoundException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.DriverServiceNotFoundException" /> class with
a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:OpenQA.Selenium.DriverServiceNotFoundException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.DriverServiceNotFoundException" /> class with
a specified error message and a reference to the inner exception that is the
cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception,
or <see langword="null" /> if no inner exception is specified.</param>
</member>
<member name="M:OpenQA.Selenium.DriverServiceNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.DriverServiceNotFoundException" /> class with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="T:OpenQA.Selenium.ElementNotVisibleException">
<summary>
The exception that is thrown when an element is not visible.
</summary>
</member>
<member name="M:OpenQA.Selenium.ElementNotVisibleException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.ElementNotVisibleException" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.ElementNotVisibleException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.ElementNotVisibleException" /> class with
a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:OpenQA.Selenium.ElementNotVisibleException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.ElementNotVisibleException" /> class with
a specified error message and a reference to the inner exception that is the
cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception,
or <see langword="null" /> if no inner exception is specified.</param>
</member>
<member name="M:OpenQA.Selenium.ElementNotVisibleException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.ElementNotVisibleException" /> class with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="T:OpenQA.Selenium.IAlert">
<summary>
Defines the interface through which the user can manipulate JavaScript alerts.
</summary>
</member>
<member name="M:OpenQA.Selenium.IAlert.Dismiss">
<summary>
Dismisses the alert.
</summary>
</member>
<member name="M:OpenQA.Selenium.IAlert.Accept">
<summary>
Accepts the alert.
</summary>
</member>
<member name="M:OpenQA.Selenium.IAlert.SendKeys(System.String)">
<summary>
Sends keys to the alert.
</summary>
<param name="keysToSend">The keystrokes to send.</param>
</member>
<member name="M:OpenQA.Selenium.IAlert.SetAuthenticationCredentials(System.String,System.String)">
<summary>
Sets the user name and password in an alert prompting for credentials.
</summary>
<param name="userName">The user name to set.</param>
<param name="password">The password to set.</param>
</member>
<member name="P:OpenQA.Selenium.IAlert.Text">
<summary>
Gets the text of the alert.
</summary>
</member>
<member name="T:OpenQA.Selenium.IAllowsFileDetection">
<summary>
Interface determining whether the driver implementation allows detection of files
when sending keystrokes to a file upload element.
</summary>
</member>
<member name="P:OpenQA.Selenium.IAllowsFileDetection.FileDetector">
<summary>
Gets or sets the <see cref="T:OpenQA.Selenium.IFileDetector" /> responsible for detecting
sequences of keystrokes representing file paths and names.
</summary>
</member>
<member name="T:OpenQA.Selenium.ICapabilities">
<summary>
Capabilities of the browser that you are going to use
</summary>
</member>
<member name="M:OpenQA.Selenium.ICapabilities.HasCapability(System.String)">
<summary>
Gets a value indicating whether the browser has a given capability.
</summary>
<param name="capability">The capability to get.</param>
<returns>Returns <see langword="true" /> if the browser has the capability; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:OpenQA.Selenium.ICapabilities.GetCapability(System.String)">
<summary>
Gets a capability of the browser.
</summary>
<param name="capability">The capability to get.</param>
<returns>An object associated with the capability, or <see langword="null" />
if the capability is not set on the browser.</returns>
</member>
<member name="P:OpenQA.Selenium.ICapabilities.BrowserName">
<summary>
Gets the browser name
</summary>
</member>
<member name="P:OpenQA.Selenium.ICapabilities.Platform">
<summary>
Gets the platform
</summary>
</member>
<member name="P:OpenQA.Selenium.ICapabilities.Version">
<summary>
Gets the browser version
</summary>
</member>
<member name="P:OpenQA.Selenium.ICapabilities.IsJavaScriptEnabled">
<summary>
Gets a value indicating whether the browser is JavaScript enabled
</summary>
</member>
<member name="T:OpenQA.Selenium.ICookieJar">
<summary>
Defines an interface allowing the user to manipulate cookies on the current page.
</summary>
</member>
<member name="M:OpenQA.Selenium.ICookieJar.AddCookie(OpenQA.Selenium.Cookie)">
<summary>
Adds a cookie to the current page.
</summary>
<param name="cookie">The <see cref="T:OpenQA.Selenium.Cookie" /> object to be added.</param>
</member>
<member name="M:OpenQA.Selenium.ICookieJar.GetCookieNamed(System.String)">
<summary>
Gets a cookie with the specified name.
</summary>
<param name="name">The name of the cookie to retrieve.</param>
<returns>The <see cref="T:OpenQA.Selenium.Cookie" /> containing the name. Returns <see langword="null" />
if no cookie with the specified name is found.</returns>
</member>
<member name="M:OpenQA.Selenium.ICookieJar.DeleteCookie(OpenQA.Selenium.Cookie)">
<summary>
Deletes the specified cookie from the page.
</summary>
<param name="cookie">The <see cref="T:OpenQA.Selenium.Cookie" /> to be deleted.</param>
</member>
<member name="M:OpenQA.Selenium.ICookieJar.DeleteCookieNamed(System.String)">
<summary>
Deletes the cookie with the specified name from the page.
</summary>
<param name="name">The name of the cookie to be deleted.</param>
</member>
<member name="M:OpenQA.Selenium.ICookieJar.DeleteAllCookies">
<summary>
Deletes all cookies from the page.
</summary>
</member>
<member name="P:OpenQA.Selenium.ICookieJar.AllCookies">
<summary>
Gets all cookies defined for the current page.
</summary>
</member>
<member name="T:OpenQA.Selenium.IHasCapabilities">
<summary>
Defines the interface through which the user can determine the capabilities of a driver.
</summary>
</member>
<member name="P:OpenQA.Selenium.IHasCapabilities.Capabilities">
<summary>
Gets the <see cref="T:OpenQA.Selenium.ICapabilities" /> object describing the driver's capabilities.
</summary>
</member>
<member name="T:OpenQA.Selenium.IHasInputDevices">
<summary>
Provides access to input devices for advanced user interactions.
</summary>
</member>
<member name="P:OpenQA.Selenium.IHasInputDevices.Keyboard">
<summary>
Gets an <see cref="T:OpenQA.Selenium.IKeyboard" /> object for sending keystrokes to the browser.
</summary>
</member>
<member name="P:OpenQA.Selenium.IHasInputDevices.Mouse">
<summary>
Gets an <see cref="T:OpenQA.Selenium.IMouse" /> object for sending mouse commands to the browser.
</summary>
</member>
<member name="T:OpenQA.Selenium.IHasTouchScreen">
<summary>
Interface implemented by each driver that allows access to touch screen capabilities.
</summary>
</member>
<member name="P:OpenQA.Selenium.IHasTouchScreen.TouchScreen">
<summary>
Gets the device representing the touch screen.
</summary>
</member>
<member name="T:OpenQA.Selenium.IJavaScriptExecutor">
<summary>
Defines the interface through which the user can execute JavaScript.
</summary>
</member>
<member name="M:OpenQA.Selenium.IJavaScriptExecutor.ExecuteScript(System.String,System.Object[])">
<summary>
Executes JavaScript in the context of the currently selected frame or window.
</summary>
<param name="script">The JavaScript code to execute.</param>
<param name="args">The arguments to the script.</param>
<returns>The value returned by the script.</returns>
<remarks>
<para>
The <see cref="M:OpenQA.Selenium.IJavaScriptExecutor.ExecuteScript(System.String,System.Object[])" />method executes JavaScript in the context of
the currently selected frame or window. This means that "document" will refer
to the current document. If the script has a return value, then the following
steps will be taken:
</para>
<para>
<list type="bullet">
<item>
<description>For an HTML element, this method returns a <see cref="T:OpenQA.Selenium.IWebElement" /></description>
</item>
<item>
<description>For a number, a <see cref="T:System.Int64" /> is returned</description>
</item>
<item>
<description>For a boolean, a <see cref="T:System.Boolean" /> is returned</description>
</item>
<item>
<description>For all other cases a <see cref="T:System.String" /> is returned.</description>
</item>
<item>
<description>For an array,we check the first element, and attempt to return a
<see cref="T:System.Collections.Generic.List`1" /> of that type, following the rules above. Nested lists are not
supported.</description>
</item>
<item>
<description>If the value is null or there is no return value,
<see langword="null" /> is returned.</description>
</item>
</list>
</para>
<para>
Arguments must be a number (which will be converted to a <see cref="T:System.Int64" />),
a <see cref="T:System.Boolean" />, a <see cref="T:System.String" /> or a <see cref="T:OpenQA.Selenium.IWebElement" />.
An exception will be thrown if the arguments do not meet these criteria.
The arguments will be made available to the JavaScript via the "arguments" magic
variable, as if the function were called via "Function.apply"
</para>
</remarks>
</member>
<member name="M:OpenQA.Selenium.IJavaScriptExecutor.ExecuteAsyncScript(System.String,System.Object[])">
<summary>
Executes JavaScript asynchronously in the context of the currently selected frame or window.
</summary>
<param name="script">The JavaScript code to execute.</param>
<param name="args">The arguments to the script.</param>
<returns>The value returned by the script.</returns>
</member>
<member name="T:OpenQA.Selenium.IKeyboard">
<summary>
Provides methods representing basic keyboard actions.
</summary>
</member>
<member name="M:OpenQA.Selenium.IKeyboard.SendKeys(System.String)">
<summary>
Sends a sequence of keystrokes to the target.
</summary>
<param name="keySequence">A string representing the keystrokes to send.</param>
</member>
<member name="M:OpenQA.Selenium.IKeyboard.PressKey(System.String)">
<summary>
Presses a key.
</summary>
<param name="keyToPress">The key value representing the key to press.</param>
<remarks>The key value must be one of the values from the <see cref="T:OpenQA.Selenium.Keys" /> class.</remarks>
</member>
<member name="M:OpenQA.Selenium.IKeyboard.ReleaseKey(System.String)">
<summary>
Releases a key.
</summary>
<param name="keyToRelease">The key value representing the key to release.</param>
<remarks>The key value must be one of the values from the <see cref="T:OpenQA.Selenium.Keys" /> class.</remarks>
</member>
<member name="T:OpenQA.Selenium.ILocatable">
<summary>
Defines the interface through which the user can discover where an element is on the screen.
</summary>
</member>
<member name="P:OpenQA.Selenium.ILocatable.LocationOnScreenOnceScrolledIntoView">
<summary>
Gets the location of an element on the screen, scrolling it into view
if it is not currently on the screen.
</summary>
</member>
<member name="P:OpenQA.Selenium.ILocatable.Coordinates">
<summary>
Gets the coordinates identifying the location of this element using
various frames of reference.
</summary>
</member>
<member name="T:OpenQA.Selenium.ILogs">
<summary>
Interface allowing handling of driver logs.
</summary>
</member>
<member name="M:OpenQA.Selenium.ILogs.GetLog(System.String)">
<summary>
Gets the set of <see cref="T:OpenQA.Selenium.LogEntry" /> objects for a specified log.
</summary>
<param name="logKind">The log for which to retrieve the log entries.
Log types can be found in the <see cref="T:OpenQA.Selenium.LogType" /> class.</param>
<returns>The list of <see cref="T:OpenQA.Selenium.LogEntry" /> objects for the specified log.</returns>
</member>
<member name="P:OpenQA.Selenium.ILogs.AvailableLogTypes">
<summary>
Gets the list of available log types for this driver.
</summary>
</member>
<member name="T:OpenQA.Selenium.IMouse">
<summary>
Provides methods representing basic mouse actions.
</summary>
</member>
<member name="M:OpenQA.Selenium.IMouse.Click(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Clicks at a set of coordinates using the primary mouse button.
</summary>
<param name="where">An <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> describing where to click.</param>
</member>
<member name="M:OpenQA.Selenium.IMouse.DoubleClick(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Double-clicks at a set of coordinates.
</summary>
<param name="where">A <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> describing where to double-click.</param>
</member>
<member name="M:OpenQA.Selenium.IMouse.MouseDown(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Presses the primary mouse button at a set of coordinates.
</summary>
<param name="where">A <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> describing where to press the mouse button down.</param>
</member>
<member name="M:OpenQA.Selenium.IMouse.MouseUp(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Releases the primary mouse button at a set of coordinates.
</summary>
<param name="where">A <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> describing where to release the mouse button.</param>
</member>
<member name="M:OpenQA.Selenium.IMouse.MouseMove(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Moves the mouse to the specified set of coordinates.
</summary>
<param name="where">A <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> describing where to move the mouse to.</param>
</member>
<member name="M:OpenQA.Selenium.IMouse.MouseMove(OpenQA.Selenium.Interactions.Internal.ICoordinates,System.Int32,System.Int32)">
<summary>
Moves the mouse to the specified set of coordinates.
</summary>
<param name="where">A <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> describing where to click.</param>
<param name="offsetX">A horizontal offset from the coordinates specified in <paramref name="where" />.</param>
<param name="offsetY">A vertical offset from the coordinates specified in <paramref name="where" />.</param>
</member>
<member name="M:OpenQA.Selenium.IMouse.ContextClick(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Clicks at a set of coordinates using the secondary mouse button.
</summary>
<param name="where">A <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> describing where to click.</param>
</member>
<member name="T:OpenQA.Selenium.INavigation">
<summary>
Defines an interface allowing the user to access the browser's history and to
navigate to a given URL.
</summary>
</member>
<member name="M:OpenQA.Selenium.INavigation.Back">
<summary>
Move back a single entry in the browser's history.
</summary>
</member>
<member name="M:OpenQA.Selenium.INavigation.Forward">
<summary>
Move a single "item" forward in the browser's history.
</summary>
<remarks>Does nothing if we are on the latest page viewed.</remarks>
</member>
<member name="M:OpenQA.Selenium.INavigation.GoToUrl(System.String)">
<summary>
Load a new web page in the current browser window.
</summary>
<param name="url">The URL to load. It is best to use a fully qualified URL</param>
<remarks>
Calling the <see cref="M:OpenQA.Selenium.INavigation.GoToUrl(System.String)" /> method will load a new web page in the current browser window.
This is done using an HTTP GET operation, and the method will block until the
load is complete. This will follow redirects issued either by the server or
as a meta-redirect from within the returned HTML. Should a meta-redirect "rest"
for any duration of time, it is best to wait until this timeout is over, since
should the underlying page change while your test is executing the results of
future calls against this interface will be against the freshly loaded page.
</remarks>
</member>
<member name="M:OpenQA.Selenium.INavigation.GoToUrl(System.Uri)">
<summary>
Load a new web page in the current browser window.
</summary>
<param name="url">The URL to load.</param>
<remarks>
Calling the <see cref="M:OpenQA.Selenium.INavigation.GoToUrl(System.Uri)" /> method will load a new web page in the current browser window.
This is done using an HTTP GET operation, and the method will block until the
load is complete. This will follow redirects issued either by the server or
as a meta-redirect from within the returned HTML. Should a meta-redirect "rest"
for any duration of time, it is best to wait until this timeout is over, since
should the underlying page change while your test is executing the results of
future calls against this interface will be against the freshly loaded page.
</remarks>
</member>
<member name="M:OpenQA.Selenium.INavigation.Refresh">
<summary>
Refreshes the current page.
</summary>
</member>
<member name="T:OpenQA.Selenium.InvalidCookieDomainException">
<summary>
The exception that is thrown when the users attempts to set a cookie with an invalid domain.
</summary>
</member>
<member name="M:OpenQA.Selenium.InvalidCookieDomainException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.InvalidCookieDomainException" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.InvalidCookieDomainException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.InvalidCookieDomainException" /> class with
a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:OpenQA.Selenium.InvalidCookieDomainException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.InvalidCookieDomainException" /> class with
a specified error message and a reference to the inner exception that is the
cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception,
or <see langword="null" /> if no inner exception is specified.</param>
</member>
<member name="M:OpenQA.Selenium.InvalidCookieDomainException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.InvalidCookieDomainException" /> class with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="T:OpenQA.Selenium.InvalidElementStateException">
<summary>
The exception that is thrown when a reference to an element is no longer valid.
</summary>
</member>
<member name="M:OpenQA.Selenium.InvalidElementStateException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.InvalidElementStateException" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.InvalidElementStateException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.InvalidElementStateException" /> class with
a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:OpenQA.Selenium.InvalidElementStateException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.InvalidElementStateException" /> class with
a specified error message and a reference to the inner exception that is the
cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception,
or <see langword="null" /> if no inner exception is specified.</param>
</member>
<member name="M:OpenQA.Selenium.InvalidElementStateException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.InvalidElementStateException" /> class with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="T:OpenQA.Selenium.NotFoundException">
<summary>
The exception that is thrown when an item is not found.
</summary>
</member>
<member name="M:OpenQA.Selenium.NotFoundException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.NotFoundException" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.NotFoundException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.NotFoundException" /> class with
a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:OpenQA.Selenium.NotFoundException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.NotFoundException" /> class with
a specified error message and a reference to the inner exception that is the
cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception,
or <see langword="null" /> if no inner exception is specified.</param>
</member>
<member name="M:OpenQA.Selenium.NotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.NotFoundException" /> class with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="T:OpenQA.Selenium.NoSuchElementException">
<summary>
The exception that is thrown when an element is not found.
</summary>
</member>
<member name="M:OpenQA.Selenium.NoSuchElementException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.NoSuchElementException" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.NoSuchElementException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.NoSuchElementException" /> class with
a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:OpenQA.Selenium.NoSuchElementException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.NoSuchElementException" /> class with
a specified error message and a reference to the inner exception that is the
cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception,
or <see langword="null" /> if no inner exception is specified.</param>
</member>
<member name="M:OpenQA.Selenium.NoSuchElementException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.NoSuchElementException" /> class with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="T:OpenQA.Selenium.InvalidSelectorException">
<summary>
The exception that is thrown when an element is not visible.
</summary>
</member>
<member name="M:OpenQA.Selenium.InvalidSelectorException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.InvalidSelectorException" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.InvalidSelectorException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.InvalidSelectorException" /> class with
a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:OpenQA.Selenium.InvalidSelectorException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.InvalidSelectorException" /> class with
a specified error message and a reference to the inner exception that is the
cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception,
or <see langword="null" /> if no inner exception is specified.</param>
</member>
<member name="M:OpenQA.Selenium.InvalidSelectorException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.InvalidSelectorException" /> class with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="T:OpenQA.Selenium.IOptions">
<summary>
Defines an interface allowing the user to set options on the browser.
</summary>
</member>
<member name="M:OpenQA.Selenium.IOptions.Timeouts">
<summary>
Provides access to the timeouts defined for this driver.
</summary>
<returns>An object implementing the <see cref="T:OpenQA.Selenium.ITimeouts" /> interface.</returns>
</member>
<member name="P:OpenQA.Selenium.IOptions.Cookies">
<summary>
Gets an object allowing the user to manipulate cookies on the page.
</summary>
</member>
<member name="P:OpenQA.Selenium.IOptions.Window">
<summary>
Gets an object allowing the user to manipulate the currently-focused browser window.
</summary>
<remarks>"Currently-focused" is defined as the browser window having the window handle
returned when IWebDriver.CurrentWindowHandle is called.</remarks>
</member>
<member name="P:OpenQA.Selenium.IOptions.Logs">
<summary>
Gets an object allowing the user to examing the logs for this driver instance.
</summary>
</member>
<member name="T:OpenQA.Selenium.IRotatable">
<summary>
Represents rotation of the browser view for orientation-sensitive devices.
When using this with a real device, the device should not be moved so that
the built-in sensors do not interfere.
</summary>
</member>
<member name="P:OpenQA.Selenium.IRotatable.Orientation">
<summary>
Gets or sets the screen orientation of the browser on the device.
</summary>
</member>
<member name="T:OpenQA.Selenium.ISearchContext">
<summary>
Defines the interface used to search for elements.
</summary>
</member>
<member name="M:OpenQA.Selenium.ISearchContext.FindElement(OpenQA.Selenium.By)">
<summary>
Finds the first <see cref="T:OpenQA.Selenium.IWebElement" /> using the given method.
</summary>
<param name="by">The locating mechanism to use.</param>
<returns>The first matching <see cref="T:OpenQA.Selenium.IWebElement" /> on the current context.</returns>
<exception cref="T:OpenQA.Selenium.NoSuchElementException">If no element matches the criteria.</exception>
</member>
<member name="M:OpenQA.Selenium.ISearchContext.FindElements(OpenQA.Selenium.By)">
<summary>
Finds all <see cref="T:OpenQA.Selenium.IWebElement">IWebElements</see> within the current context
using the given mechanism.
</summary>
<param name="by">The locating mechanism to use.</param>
<returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> of all <see cref="T:OpenQA.Selenium.IWebElement">WebElements</see>
matching the current criteria, or an empty list if nothing matches.</returns>
</member>
<member name="T:OpenQA.Selenium.ITakesScreenshot">
<summary>
Defines the interface used to take screen shot images of the screen.
</summary>
</member>
<member name="M:OpenQA.Selenium.ITakesScreenshot.GetScreenshot">
<summary>
Gets a <see cref="T:OpenQA.Selenium.Screenshot" /> object representing the image of the page on the screen.
</summary>
<returns>A <see cref="T:OpenQA.Selenium.Screenshot" /> object containing the image.</returns>
</member>
<member name="T:OpenQA.Selenium.ITargetLocator">
<summary>
Defines the interface through which the user can locate a given frame or window.
</summary>
</member>
<member name="M:OpenQA.Selenium.ITargetLocator.Frame(System.Int32)">
<summary>
Select a frame by its (zero-based) index.
</summary>
<param name="frameIndex">The zero-based index of the frame to select.</param>
<returns>An <see cref="T:OpenQA.Selenium.IWebDriver" /> instance focused on the specified frame.</returns>
<exception cref="T:OpenQA.Selenium.NoSuchFrameException">If the frame cannot be found.</exception>
</member>
<member name="M:OpenQA.Selenium.ITargetLocator.Frame(System.String)">
<summary>
Select a frame by its name or ID.
</summary>
<param name="frameName">The name of the frame to select.</param>
<returns>An <see cref="T:OpenQA.Selenium.IWebDriver" /> instance focused on the specified frame.</returns>
<exception cref="T:OpenQA.Selenium.NoSuchFrameException">If the frame cannot be found.</exception>
</member>
<member name="M:OpenQA.Selenium.ITargetLocator.Frame(OpenQA.Selenium.IWebElement)">
<summary>
Select a frame using its previously located <see cref="T:OpenQA.Selenium.IWebElement" /></summary>
<param name="frameElement">The frame element to switch to.</param>
<returns>An <see cref="T:OpenQA.Selenium.IWebDriver" /> instance focused on the specified frame.</returns>
<exception cref="T:OpenQA.Selenium.NoSuchFrameException">If the element is neither a FRAME nor an IFRAME element.</exception>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">If the element is no longer valid.</exception>
</member>
<member name="M:OpenQA.Selenium.ITargetLocator.ParentFrame">
<summary>
Select the parent frame of the currently selected frame.
</summary>
<returns>An <see cref="T:OpenQA.Selenium.IWebDriver" /> instance focused on the specified frame.</returns>
</member>
<member name="M:OpenQA.Selenium.ITargetLocator.Window(System.String)">
<summary>
Switches the focus of future commands for this driver to the window with the given name.
</summary>
<param name="windowName">The name of the window to select.</param>
<returns>An <see cref="T:OpenQA.Selenium.IWebDriver" /> instance focused on the given window.</returns>
<exception cref="T:OpenQA.Selenium.NoSuchWindowException">If the window cannot be found.</exception>
</member>
<member name="M:OpenQA.Selenium.ITargetLocator.DefaultContent">
<summary>
Selects either the first frame on the page or the main document when a page contains iFrames.
</summary>
<returns>An <see cref="T:OpenQA.Selenium.IWebDriver" /> instance focused on the default frame.</returns>
</member>
<member name="M:OpenQA.Selenium.ITargetLocator.ActiveElement">
<summary>
Switches to the element that currently has the focus, or the body element
if no element with focus can be detected.
</summary>
<returns>An <see cref="T:OpenQA.Selenium.IWebElement" /> instance representing the element
with the focus, or the body element if no element with focus can be detected.</returns>
</member>
<member name="M:OpenQA.Selenium.ITargetLocator.Alert">
<summary>
Switches to the currently active modal dialog for this particular driver instance.
</summary>
<returns>A handle to the dialog.</returns>
</member>
<member name="T:OpenQA.Selenium.ITimeouts">
<summary>
Defines the interface through which the user can define timeouts.
</summary>
</member>
<member name="M:OpenQA.Selenium.ITimeouts.ImplicitlyWait(System.TimeSpan)">
<summary>
Specifies the amount of time the driver should wait when searching for an
element if it is not immediately present.
</summary>
<param name="timeToWait">A <see cref="T:System.TimeSpan" /> structure defining the amount of time to wait.</param>
<returns>A self reference</returns>
<remarks>
When searching for a single element, the driver should poll the page
until the element has been found, or this timeout expires before throwing
a <see cref="T:OpenQA.Selenium.NoSuchElementException" />. When searching for multiple elements,
the driver should poll the page until at least one element has been found
or this timeout has expired.
<para>
Increasing the implicit wait timeout should be used judiciously as it
will have an adverse effect on test run time, especially when used with
slower location strategies like XPath.
</para></remarks>
</member>
<member name="M:OpenQA.Selenium.ITimeouts.SetScriptTimeout(System.TimeSpan)">
<summary>
Specifies the amount of time the driver should wait when executing JavaScript asynchronously.
</summary>
<param name="timeToWait">A <see cref="T:System.TimeSpan" /> structure defining the amount of time to wait.
Setting this parameter to <see cref="F:System.TimeSpan.MinValue" /> will allow the script to run indefinitely.</param>
<returns>A self reference</returns>
</member>
<member name="M:OpenQA.Selenium.ITimeouts.SetPageLoadTimeout(System.TimeSpan)">
<summary>
Specifies the amount of time the driver should wait for a page to load when setting the <see cref="P:OpenQA.Selenium.IWebDriver.Url" /> property.
</summary>
<param name="timeToWait">A <see cref="T:System.TimeSpan" /> structure defining the amount of time to wait.
Setting this parameter to <see cref="F:System.TimeSpan.MinValue" /> will allow the page to load indefinitely.</param>
<returns>A self reference</returns>
</member>
<member name="T:OpenQA.Selenium.ITouchScreen">
<summary>
Interface representing basic touch screen operations.
</summary>
</member>
<member name="M:OpenQA.Selenium.ITouchScreen.SingleTap(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Allows the execution of single tap on the screen, analogous to click using a Mouse.
</summary>
<param name="where">The <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> object representing the location on the screen,
usually an <see cref="T:OpenQA.Selenium.IWebElement" />.</param>
</member>
<member name="M:OpenQA.Selenium.ITouchScreen.Down(System.Int32,System.Int32)">
<summary>
Allows the execution of the gesture 'down' on the screen. It is typically the first of a
sequence of touch gestures.
</summary>
<param name="locationX">The x coordinate relative to the view port.</param>
<param name="locationY">The y coordinate relative to the view port.</param>
</member>
<member name="M:OpenQA.Selenium.ITouchScreen.Up(System.Int32,System.Int32)">
<summary>
Allows the execution of the gesture 'up' on the screen. It is typically the last of a
sequence of touch gestures.
</summary>
<param name="locationX">The x coordinate relative to the view port.</param>
<param name="locationY">The y coordinate relative to the view port.</param>
</member>
<member name="M:OpenQA.Selenium.ITouchScreen.Move(System.Int32,System.Int32)">
<summary>
Allows the execution of the gesture 'move' on the screen.
</summary>
<param name="locationX">The x coordinate relative to the view port.</param>
<param name="locationY">The y coordinate relative to the view port.</param>
</member>
<member name="M:OpenQA.Selenium.ITouchScreen.Scroll(OpenQA.Selenium.Interactions.Internal.ICoordinates,System.Int32,System.Int32)">
<summary>
Creates a scroll gesture that starts on a particular screen location.
</summary>
<param name="where">The <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> object representing the location on the screen
where the scroll starts, usually an <see cref="T:OpenQA.Selenium.IWebElement" />.</param>
<param name="offsetX">The x coordinate relative to the view port.</param>
<param name="offsetY">The y coordinate relative to the view port.</param>
</member>
<member name="M:OpenQA.Selenium.ITouchScreen.Scroll(System.Int32,System.Int32)">
<summary>
Creates a scroll gesture for a particular x and y offset.
</summary>
<param name="offsetX">The horizontal offset relative to the view port.</param>
<param name="offsetY">The vertical offset relative to the view port.</param>
</member>
<member name="M:OpenQA.Selenium.ITouchScreen.DoubleTap(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Allows the execution of double tap on the screen, analogous to click using a Mouse.
</summary>
<param name="where">The <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> object representing the location on the screen,
usually an <see cref="T:OpenQA.Selenium.IWebElement" />.</param>
</member>
<member name="M:OpenQA.Selenium.ITouchScreen.LongPress(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Allows the execution of a long press gesture on the screen.
</summary>
<param name="where">The <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> object representing the location on the screen,
usually an <see cref="T:OpenQA.Selenium.IWebElement" />.</param>
</member>
<member name="M:OpenQA.Selenium.ITouchScreen.Flick(System.Int32,System.Int32)">
<summary>
Creates a flick gesture for the current view.
</summary>
<param name="speedX">The horizontal speed in pixels per second.</param>
<param name="speedY">The vertical speed in pixels per second.</param>
</member>
<member name="M:OpenQA.Selenium.ITouchScreen.Flick(OpenQA.Selenium.Interactions.Internal.ICoordinates,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a flick gesture for the current view starting at a specific location.
</summary>
<param name="where">The <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> object representing the location on the screen
where the scroll starts, usually an <see cref="T:OpenQA.Selenium.IWebElement" />.</param>
<param name="offsetX">The x offset relative to the viewport.</param>
<param name="offsetY">The y offset relative to the viewport.</param>
<param name="speed">The speed in pixels per second.</param>
</member>
<member name="T:OpenQA.Selenium.IWebDriver">
<summary>
Defines the interface through which the user controls the browser.
</summary>
<remarks>
The <see cref="T:OpenQA.Selenium.IWebDriver" /> interface is the main interface to use for testing, which
represents an idealized web browser. The methods in this class fall into three categories:
<list type="bullet"><item><description>Control of the browser itself</description></item><item><description>Selection of <see cref="T:OpenQA.Selenium.IWebElement">IWebElements</see></description></item><item><description>Debugging aids</description></item></list><para>
Key properties and methods are <see cref="P:OpenQA.Selenium.IWebDriver.Url" />, which is used to
load a new web page by setting the property, and the various methods similar
to <see cref="M:OpenQA.Selenium.ISearchContext.FindElement(OpenQA.Selenium.By)" />, which is used to find <see cref="T:OpenQA.Selenium.IWebElement">IWebElements</see>.
</para><para>
You use the interface by instantiate drivers that implement of this interface.
You should write your tests against this interface so that you may "swap in" a
more fully featured browser when there is a requirement for one.
</para></remarks>
</member>
<member name="M:OpenQA.Selenium.IWebDriver.Close">
<summary>
Close the current window, quitting the browser if it is the last window currently open.
</summary>
</member>
<member name="M:OpenQA.Selenium.IWebDriver.Quit">
<summary>
Quits this driver, closing every associated window.
</summary>
</member>
<member name="M:OpenQA.Selenium.IWebDriver.Manage">
<summary>
Instructs the driver to change its settings.
</summary>
<returns>An <see cref="T:OpenQA.Selenium.IOptions" /> object allowing the user to change
the settings of the driver.</returns>
</member>
<member name="M:OpenQA.Selenium.IWebDriver.Navigate">
<summary>
Instructs the driver to navigate the browser to another location.
</summary>
<returns>An <see cref="T:OpenQA.Selenium.INavigation" /> object allowing the user to access
the browser's history and to navigate to a given URL.</returns>
</member>
<member name="M:OpenQA.Selenium.IWebDriver.SwitchTo">
<summary>
Instructs the driver to send future commands to a different frame or window.
</summary>
<returns>An <see cref="T:OpenQA.Selenium.ITargetLocator" /> object which can be used to select
a frame or window.</returns>
</member>
<member name="P:OpenQA.Selenium.IWebDriver.Url">
<summary>
Gets or sets the URL the browser is currently displaying.
</summary>
<remarks>
Setting the <see cref="P:OpenQA.Selenium.IWebDriver.Url" /> property will load a new web page in the current browser window.
This is done using an HTTP GET operation, and the method will block until the
load is complete. This will follow redirects issued either by the server or
as a meta-redirect from within the returned HTML. Should a meta-redirect "rest"
for any duration of time, it is best to wait until this timeout is over, since
should the underlying page change while your test is executing the results of
future calls against this interface will be against the freshly loaded page.
</remarks>
<seealso cref="M:OpenQA.Selenium.INavigation.GoToUrl(System.String)" />
<seealso cref="M:OpenQA.Selenium.INavigation.GoToUrl(System.Uri)" />
</member>
<member name="P:OpenQA.Selenium.IWebDriver.Title">
<summary>
Gets the title of the current browser window.
</summary>
</member>
<member name="P:OpenQA.Selenium.IWebDriver.PageSource">
<summary>
Gets the source of the page last loaded by the browser.
</summary>
<remarks>
If the page has been modified after loading (for example, by JavaScript)
there is no guarantee that the returned text is that of the modified page.
Please consult the documentation of the particular driver being used to
determine whether the returned text reflects the current state of the page
or the text last sent by the web server. The page source returned is a
representation of the underlying DOM: do not expect it to be formatted
or escaped in the same way as the response sent from the web server.
</remarks>
</member>
<member name="P:OpenQA.Selenium.IWebDriver.CurrentWindowHandle">
<summary>
Gets the current window handle, which is an opaque handle to this
window that uniquely identifies it within this driver instance.
</summary>
</member>
<member name="P:OpenQA.Selenium.IWebDriver.WindowHandles">
<summary>
Gets the window handles of open browser windows.
</summary>
</member>
<member name="T:OpenQA.Selenium.IWebElement">
<summary>
Defines the interface through which the user controls elements on the page.
</summary>
<remarks>The <see cref="T:OpenQA.Selenium.IWebElement" /> interface represents an HTML element.
Generally, all interesting operations to do with interacting with a page will
be performed through this interface.
</remarks>
</member>
<member name="M:OpenQA.Selenium.IWebElement.Clear">
<summary>
Clears the content of this element.
</summary>
<remarks>If this element is a text entry element, the <see cref="M:OpenQA.Selenium.IWebElement.Clear" />
method will clear the value. It has no effect on other elements. Text entry elements
are defined as elements with INPUT or TEXTAREA tags.</remarks>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="M:OpenQA.Selenium.IWebElement.SendKeys(System.String)">
<summary>
Simulates typing text into the element.
</summary>
<param name="text">The text to type into the element.</param>
<remarks>The text to be typed may include special characters like arrow keys,
backspaces, function keys, and so on. Valid special keys are defined in
<see cref="T:OpenQA.Selenium.Keys" />.</remarks>
<seealso cref="T:OpenQA.Selenium.Keys" />
<exception cref="T:OpenQA.Selenium.InvalidElementStateException">Thrown when the target element is not enabled.</exception>
<exception cref="T:OpenQA.Selenium.ElementNotVisibleException">Thrown when the target element is not visible.</exception>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="M:OpenQA.Selenium.IWebElement.Submit">
<summary>
Submits this element to the web server.
</summary>
<remarks>If this current element is a form, or an element within a form,
then this will be submitted to the web server. If this causes the current
page to change, then this method will block until the new page is loaded.</remarks>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="M:OpenQA.Selenium.IWebElement.Click">
<summary>
Clicks this element.
</summary>
<remarks>
<para>
Click this element. If the click causes a new page to load, the <see cref="M:OpenQA.Selenium.IWebElement.Click" />
method will attempt to block until the page has loaded. After calling the
<see cref="M:OpenQA.Selenium.IWebElement.Click" /> method, you should discard all references to this
element unless you know that the element and the page will still be present.
Otherwise, any further operations performed on this element will have an undefined.
behavior.
</para>
<para>
If this element is not clickable, then this operation is ignored. This allows you to
simulate a users to accidentally missing the target when clicking.
</para>
</remarks>
<exception cref="T:OpenQA.Selenium.ElementNotVisibleException">Thrown when the target element is not visible.</exception>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="M:OpenQA.Selenium.IWebElement.GetAttribute(System.String)">
<summary>
Gets the value of the specified attribute for this element.
</summary>
<param name="attributeName">The name of the attribute.</param>
<returns>The attribute's current value. Returns a <see langword="null" /> if the
value is not set.</returns>
<remarks>The <see cref="M:OpenQA.Selenium.IWebElement.GetAttribute(System.String)" /> method will return the current value
of the attribute, even if the value has been modified after the page has been
loaded. Note that the value of the following attributes will be returned even if
there is no explicit attribute on the element:
<list type="table"><listheader><term>Attribute name</term><term>Value returned if not explicitly specified</term><term>Valid element types</term></listheader><item><description>checked</description><description>checked</description><description>Check Box</description></item><item><description>selected</description><description>selected</description><description>Options in Select elements</description></item><item><description>disabled</description><description>disabled</description><description>Input and other UI elements</description></item></list></remarks>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="M:OpenQA.Selenium.IWebElement.GetCssValue(System.String)">
<summary>
Gets the value of a CSS property of this element.
</summary>
<param name="propertyName">The name of the CSS property to get the value of.</param>
<returns>The value of the specified CSS property.</returns>
<remarks>The value returned by the <see cref="M:OpenQA.Selenium.IWebElement.GetCssValue(System.String)" />
method is likely to be unpredictable in a cross-browser environment.
Color values should be returned as hex strings. For example, a
"background-color" property set as "green" in the HTML source, will
return "#008000" for its value.</remarks>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="P:OpenQA.Selenium.IWebElement.TagName">
<summary>
Gets the tag name of this element.
</summary>
<remarks>
The <see cref="P:OpenQA.Selenium.IWebElement.TagName" /> property returns the tag name of the
element, not the value of the name attribute. For example, it will return
"input" for an element specified by the HTML markup &lt;input name="foo" /&gt;.
</remarks>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="P:OpenQA.Selenium.IWebElement.Text">
<summary>
Gets the innerText of this element, without any leading or trailing whitespace,
and with other whitespace collapsed.
</summary>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="P:OpenQA.Selenium.IWebElement.Enabled">
<summary>
Gets a value indicating whether or not this element is enabled.
</summary>
<remarks>The <see cref="P:OpenQA.Selenium.IWebElement.Enabled" /> property will generally
return <see langword="true" /> for everything except explicitly disabled input elements.</remarks>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="P:OpenQA.Selenium.IWebElement.Selected">
<summary>
Gets a value indicating whether or not this element is selected.
</summary>
<remarks>This operation only applies to input elements such as checkboxes,
options in a select element and radio buttons.</remarks>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="P:OpenQA.Selenium.IWebElement.Location">
<summary>
Gets a <see cref="T:System.Drawing.Point" /> object containing the coordinates of the upper-left corner
of this element relative to the upper-left corner of the page.
</summary>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="P:OpenQA.Selenium.IWebElement.Size">
<summary>
Gets a <see cref="P:OpenQA.Selenium.IWebElement.Size" /> object containing the height and width of this element.
</summary>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="P:OpenQA.Selenium.IWebElement.Displayed">
<summary>
Gets a value indicating whether or not this element is displayed.
</summary>
<remarks>The <see cref="P:OpenQA.Selenium.IWebElement.Displayed" /> property avoids the problem
of having to parse an element's "style" attribute to determine
visibility of an element.</remarks>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="T:OpenQA.Selenium.IWindow">
<summary>
Provides methods for getting and setting the size and position of the browser window.
</summary>
</member>
<member name="M:OpenQA.Selenium.IWindow.Maximize">
<summary>
Maximizes the current window if it is not already maximized.
</summary>
</member>
<member name="P:OpenQA.Selenium.IWindow.Position">
<summary>
Gets or sets the position of the browser window relative to the upper-left corner of the screen.
</summary>
<remarks>When setting this property, it should act as the JavaScript window.moveTo() method.</remarks>
</member>
<member name="P:OpenQA.Selenium.IWindow.Size">
<summary>
Gets or sets the size of the outer browser window, including title bars and window borders.
</summary>
<remarks>When setting this property, it should act as the JavaScript window.resizeTo() method.</remarks>
</member>
<member name="T:OpenQA.Selenium.Keys">
<summary>
Representations of keys able to be pressed that are not text keys for sending to the browser.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Null">
<summary>
Represents the NUL keystroke.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Cancel">
<summary>
Represents the Cancel keystroke.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Help">
<summary>
Represents the Help keystroke.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Backspace">
<summary>
Represents the Backspace key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Tab">
<summary>
Represents the Tab key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Clear">
<summary>
Represents the Clear keystroke.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Return">
<summary>
Represents the Return key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Enter">
<summary>
Represents the Enter key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Shift">
<summary>
Represents the Shift key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.LeftShift">
<summary>
Represents the Shift key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Control">
<summary>
Represents the Control key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.LeftControl">
<summary>
Represents the Control key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Alt">
<summary>
Represents the Alt key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.LeftAlt">
<summary>
Represents the Alt key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Pause">
<summary>
Represents the Pause key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Escape">
<summary>
Represents the Escape key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Space">
<summary>
Represents the Spacebar key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.PageUp">
<summary>
Represents the Page Up key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.PageDown">
<summary>
Represents the Page Down key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.End">
<summary>
Represents the End key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Home">
<summary>
Represents the Home key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Left">
<summary>
Represents the left arrow key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.ArrowLeft">
<summary>
Represents the left arrow key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Up">
<summary>
Represents the up arrow key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.ArrowUp">
<summary>
Represents the up arrow key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Right">
<summary>
Represents the right arrow key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.ArrowRight">
<summary>
Represents the right arrow key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Down">
<summary>
Represents the Left arrow key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.ArrowDown">
<summary>
Represents the Left arrow key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Insert">
<summary>
Represents the Insert key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Delete">
<summary>
Represents the Delete key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Semicolon">
<summary>
Represents the semi-colon key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Equal">
<summary>
Represents the equal sign key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.NumberPad0">
<summary>
Represents the number pad 0 key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.NumberPad1">
<summary>
Represents the number pad 1 key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.NumberPad2">
<summary>
Represents the number pad 2 key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.NumberPad3">
<summary>
Represents the number pad 3 key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.NumberPad4">
<summary>
Represents the number pad 4 key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.NumberPad5">
<summary>
Represents the number pad 5 key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.NumberPad6">
<summary>
Represents the number pad 6 key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.NumberPad7">
<summary>
Represents the number pad 7 key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.NumberPad8">
<summary>
Represents the number pad 8 key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.NumberPad9">
<summary>
Represents the number pad 9 key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Multiply">
<summary>
Represents the number pad multiplication key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Add">
<summary>
Represents the number pad addition key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Separator">
<summary>
Represents the number pad thousands separator key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Subtract">
<summary>
Represents the number pad subtraction key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Decimal">
<summary>
Represents the number pad decimal separator key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Divide">
<summary>
Represents the number pad division key.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.F1">
<summary>
Represents the function key F1.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.F2">
<summary>
Represents the function key F2.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.F3">
<summary>
Represents the function key F3.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.F4">
<summary>
Represents the function key F4.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.F5">
<summary>
Represents the function key F5.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.F6">
<summary>
Represents the function key F6.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.F7">
<summary>
Represents the function key F7.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.F8">
<summary>
Represents the function key F8.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.F9">
<summary>
Represents the function key F9.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.F10">
<summary>
Represents the function key F10.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.F11">
<summary>
Represents the function key F11.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.F12">
<summary>
Represents the function key F12.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Meta">
<summary>
Represents the function key META.
</summary>
</member>
<member name="F:OpenQA.Selenium.Keys.Command">
<summary>
Represents the function key COMMAND.
</summary>
</member>
<member name="T:OpenQA.Selenium.LogEntry">
<summary>
Represents an entry in a log from a driver instance.
</summary>
</member>
<member name="M:OpenQA.Selenium.LogEntry.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.LogEntry" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.LogEntry.ToString">
<summary>
Returns a string that represents the current <see cref="T:OpenQA.Selenium.LogEntry" />.
</summary>
<returns>A string that represents the current <see cref="T:OpenQA.Selenium.LogEntry" />.</returns>
</member>
<member name="M:OpenQA.Selenium.LogEntry.FromDictionary(System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
Creates a <see cref="T:OpenQA.Selenium.LogEntry" /> from a dictionary as deserialized from JSON.
</summary>
<param name="entryDictionary">The <see cref="T:System.Collections.Generic.Dictionary`2" /> from
which to create the <see cref="T:OpenQA.Selenium.LogEntry" />.</param>
<returns>A <see cref="T:OpenQA.Selenium.LogEntry" /> with the values in the dictionary.</returns>
</member>
<member name="P:OpenQA.Selenium.LogEntry.Timestamp">
<summary>
Gets the timestamp value of the log entry.
</summary>
</member>
<member name="P:OpenQA.Selenium.LogEntry.Level">
<summary>
Gets the logging level of the log entry.
</summary>
</member>
<member name="P:OpenQA.Selenium.LogEntry.Message">
<summary>
Gets the message of the log entry.
</summary>
</member>
<member name="T:OpenQA.Selenium.LogLevel">
<summary>
Represents the levels of logging available to driver instances.
</summary>
</member>
<member name="F:OpenQA.Selenium.LogLevel.All">
<summary>
Show all log messages.
</summary>
</member>
<member name="F:OpenQA.Selenium.LogLevel.Debug">
<summary>
Show messages with information useful for debugging.
</summary>
</member>
<member name="F:OpenQA.Selenium.LogLevel.Info">
<summary>
Show informational messages.
</summary>
</member>
<member name="F:OpenQA.Selenium.LogLevel.Warning">
<summary>
Show messages corresponding to non-critical issues.
</summary>
</member>
<member name="F:OpenQA.Selenium.LogLevel.Severe">
<summary>
Show messages corresponding to critical issues.
</summary>
</member>
<member name="F:OpenQA.Selenium.LogLevel.Off">
<summary>
Show no log messages.
</summary>
</member>
<member name="T:OpenQA.Selenium.LogType">
<summary>
Class containing names of common log types.
</summary>
</member>
<member name="F:OpenQA.Selenium.LogType.Client">
<summary>
Log messages from the client language bindings.
</summary>
</member>
<member name="F:OpenQA.Selenium.LogType.Driver">
<summary>
Logs from the current WebDriver instance.
</summary>
</member>
<member name="F:OpenQA.Selenium.LogType.Browser">
<summary>
Logs from the browser.
</summary>
</member>
<member name="F:OpenQA.Selenium.LogType.Server">
<summary>
Logs from the server.
</summary>
</member>
<member name="F:OpenQA.Selenium.LogType.Profiler">
<summary>
Profiling logs.
</summary>
</member>
<member name="T:OpenQA.Selenium.NoAlertPresentException">
<summary>
The exception that is thrown when an alert is not found.
</summary>
</member>
<member name="M:OpenQA.Selenium.NoAlertPresentException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.NoAlertPresentException" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.NoAlertPresentException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.NoAlertPresentException" /> class with
a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:OpenQA.Selenium.NoAlertPresentException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.NoAlertPresentException" /> class with
a specified error message and a reference to the inner exception that is the
cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception,
or <see langword="null" /> if no inner exception is specified.</param>
</member>
<member name="M:OpenQA.Selenium.NoAlertPresentException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.NoAlertPresentException" /> class with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="T:OpenQA.Selenium.NoSuchFrameException">
<summary>
The exception that is thrown when a frame is not found.
</summary>
</member>
<member name="M:OpenQA.Selenium.NoSuchFrameException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.NoSuchFrameException" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.NoSuchFrameException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.NoSuchFrameException" /> class with
a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:OpenQA.Selenium.NoSuchFrameException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.NoSuchFrameException" /> class with
a specified error message and a reference to the inner exception that is the
cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception,
or <see langword="null" /> if no inner exception is specified.</param>
</member>
<member name="M:OpenQA.Selenium.NoSuchFrameException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.NoSuchFrameException" /> class with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="T:OpenQA.Selenium.NoSuchWindowException">
<summary>
The exception that is thrown when a window is not found.
</summary>
</member>
<member name="M:OpenQA.Selenium.NoSuchWindowException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.NoSuchWindowException" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.NoSuchWindowException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.NoSuchWindowException" /> class with
a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:OpenQA.Selenium.NoSuchWindowException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.NoSuchWindowException" /> class with
a specified error message and a reference to the inner exception that is the
cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception,
or <see langword="null" /> if no inner exception is specified.</param>
</member>
<member name="M:OpenQA.Selenium.NoSuchWindowException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.NoSuchWindowException" /> class with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="T:OpenQA.Selenium.PlatformType">
<summary>
Represents the known and supported Platforms that WebDriver runs on.
</summary>
<remarks>The <see cref="T:OpenQA.Selenium.Platform" /> class maps closely to the Operating System,
but differs slightly, because this class is used to extract information such as
program locations and line endings. </remarks>
</member>
<member name="F:OpenQA.Selenium.PlatformType.Any">
<summary>
Any platform. This value is never returned by a driver, but can be used to find
drivers with certain capabilities.
</summary>
</member>
<member name="F:OpenQA.Selenium.PlatformType.Windows">
<summary>
Any version of Microsoft Windows. This value is never returned by a driver,
but can be used to find drivers with certain capabilities.
</summary>
</member>
<member name="F:OpenQA.Selenium.PlatformType.WinNT">
<summary>
Any Windows NT-based version of Microsoft Windows. This value is never returned
by a driver, but can be used to find drivers with certain capabilities. This value
is equivalent to PlatformType.Windows.
</summary>
</member>
<member name="F:OpenQA.Selenium.PlatformType.XP">
<summary>
Versions of Microsoft Windows that are compatible with Windows XP.
</summary>
</member>
<member name="F:OpenQA.Selenium.PlatformType.Vista">
<summary>
Versions of Microsoft Windows that are compatible with Windows Vista.
</summary>
</member>
<member name="F:OpenQA.Selenium.PlatformType.Mac">
<summary>
Any version of the Macintosh OS
</summary>
</member>
<member name="F:OpenQA.Selenium.PlatformType.Unix">
<summary>
Any version of the Unix operating system.
</summary>
</member>
<member name="F:OpenQA.Selenium.PlatformType.Linux">
<summary>
Any version of the Linux operating system.
</summary>
</member>
<member name="F:OpenQA.Selenium.PlatformType.Android">
<summary>
A version of the Android mobile operating system.
</summary>
</member>
<member name="T:OpenQA.Selenium.Platform">
<summary>
Represents the platform on which tests are to be run.
</summary>
</member>
<member name="M:OpenQA.Selenium.Platform.#ctor(OpenQA.Selenium.PlatformType)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Platform" /> class for a specific platform type.
</summary>
<param name="typeValue">The platform type.</param>
</member>
<member name="M:OpenQA.Selenium.Platform.IsPlatformType(OpenQA.Selenium.PlatformType)">
<summary>
Compares the platform to the specified type.
</summary>
<param name="compareTo">A <see cref="P:OpenQA.Selenium.Platform.PlatformType" /> value to compare to.</param>
<returns>
<see langword="true" /> if the platforms match; otherwise <see langword="false" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Platform.ToString">
<summary>
Returns the string value for this platform type.
</summary>
<returns>The string value for this platform type.</returns>
</member>
<member name="M:OpenQA.Selenium.Platform.FromString(System.String)">
<summary>
Creates a <see cref="T:OpenQA.Selenium.Platform" /> object from a string name of the platform.
</summary>
<param name="platformName">The name of the platform to create.</param>
<returns>The Platform object represented by the string name.</returns>
</member>
<member name="P:OpenQA.Selenium.Platform.CurrentPlatform">
<summary>
Gets the current platform.
</summary>
</member>
<member name="P:OpenQA.Selenium.Platform.MajorVersion">
<summary>
Gets the major version of the platform operating system.
</summary>
</member>
<member name="P:OpenQA.Selenium.Platform.MinorVersion">
<summary>
Gets the major version of the platform operating system.
</summary>
</member>
<member name="P:OpenQA.Selenium.Platform.PlatformType">
<summary>
Gets the type of the platform.
</summary>
</member>
<member name="P:OpenQA.Selenium.Platform.ProtocolPlatformType">
<summary>
Gets the value of the platform type for transmission using the JSON Wire Protocol.
</summary>
</member>
<member name="T:OpenQA.Selenium.ProxyKind">
<summary>
Describes the kind of proxy.
</summary>
<remarks>
Keep these in sync with the Firefox preferences numbers:
http://kb.mozillazine.org/Network.proxy.type
</remarks>
</member>
<member name="F:OpenQA.Selenium.ProxyKind.Direct">
<summary>
Direct connection, no proxy (default on Windows).
</summary>
</member>
<member name="F:OpenQA.Selenium.ProxyKind.Manual">
<summary>
Manual proxy settings (e.g., for httpProxy).
</summary>
</member>
<member name="F:OpenQA.Selenium.ProxyKind.ProxyAutoConfigure">
<summary>
Proxy automatic configuration from URL.
</summary>
</member>
<member name="F:OpenQA.Selenium.ProxyKind.AutoDetect">
<summary>
Use proxy automatic detection.
</summary>
</member>
<member name="F:OpenQA.Selenium.ProxyKind.System">
<summary>
Use the system values for proxy settings (default on Linux).
</summary>
</member>
<member name="F:OpenQA.Selenium.ProxyKind.Unspecified">
<summary>
No proxy type is specified.
</summary>
</member>
<member name="T:OpenQA.Selenium.Proxy">
<summary>
Describes proxy settings to be used with a driver instance.
</summary>
</member>
<member name="M:OpenQA.Selenium.Proxy.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Proxy" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.Proxy.#ctor(System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Proxy" /> class with the given proxy settings.
</summary>
<param name="settings">A dictionary of settings to use with the proxy.</param>
</member>
<member name="P:OpenQA.Selenium.Proxy.Kind">
<summary>
Gets or sets the type of proxy.
</summary>
</member>
<member name="P:OpenQA.Selenium.Proxy.SerializableProxyKind">
<summary>
Gets the type of proxy as a string for JSON serialization.
</summary>
</member>
<member name="P:OpenQA.Selenium.Proxy.IsAutoDetect">
<summary>
Gets or sets a value indicating whether the proxy uses automatic detection.
</summary>
</member>
<member name="P:OpenQA.Selenium.Proxy.FtpProxy">
<summary>
Gets or sets the value of the proxy for the FTP protocol.
</summary>
</member>
<member name="P:OpenQA.Selenium.Proxy.HttpProxy">
<summary>
Gets or sets the value of the proxy for the HTTP protocol.
</summary>
</member>
<member name="P:OpenQA.Selenium.Proxy.NoProxy">
<summary>
Gets or sets the value for bypass proxy addresses.
</summary>
</member>
<member name="P:OpenQA.Selenium.Proxy.ProxyAutoConfigUrl">
<summary>
Gets or sets the URL used for proxy automatic configuration.
</summary>
</member>
<member name="P:OpenQA.Selenium.Proxy.SslProxy">
<summary>
Gets or sets the value of the proxy for the SSL protocol.
</summary>
</member>
<member name="P:OpenQA.Selenium.Proxy.SocksProxy">
<summary>
Gets or sets the value of the proxy for the SOCKS protocol.
</summary>
</member>
<member name="P:OpenQA.Selenium.Proxy.SocksUserName">
<summary>
Gets or sets the value of username for the SOCKS proxy.
</summary>
</member>
<member name="P:OpenQA.Selenium.Proxy.SocksPassword">
<summary>
Gets or sets the value of password for the SOCKS proxy.
</summary>
</member>
<member name="T:OpenQA.Selenium.ScreenOrientation">
<summary>
Represents possible screen orientations.
</summary>
</member>
<member name="F:OpenQA.Selenium.ScreenOrientation.Portrait">
<summary>
Represents a portrait mode, where the screen is vertical.
</summary>
</member>
<member name="F:OpenQA.Selenium.ScreenOrientation.Landscape">
<summary>
Represents Landscape mode, where the screen is horizontal.
</summary>
</member>
<member name="T:OpenQA.Selenium.Screenshot">
<summary>
Represents an image of the page currently loaded in the browser.
</summary>
</member>
<member name="M:OpenQA.Selenium.Screenshot.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Screenshot" /> class.
</summary>
<param name="base64EncodedScreenshot">The image of the page as a Base64-encoded string.</param>
</member>
<member name="M:OpenQA.Selenium.Screenshot.SaveAsFile(System.String,System.Drawing.Imaging.ImageFormat)">
<summary>
Saves the screenshot to a file, overwriting the file if it already exists.
</summary>
<param name="fileName">The full path and file name to save the screenshot to.</param>
<param name="format">A <see cref="T:System.Drawing.Imaging.ImageFormat" /> object indicating the format
to save the image to.</param>
</member>
<member name="M:OpenQA.Selenium.Screenshot.ToString">
<summary>
Returns a <see cref="T:System.String">String</see> that represents the current <see cref="T:System.Object">Object</see>.
</summary>
<returns>A <see cref="T:System.String">String</see> that represents the current <see cref="T:System.Object">Object</see>.</returns>
</member>
<member name="P:OpenQA.Selenium.Screenshot.AsBase64EncodedString">
<summary>
Gets the value of the screenshot image as a Base64-encoded string.
</summary>
</member>
<member name="P:OpenQA.Selenium.Screenshot.AsByteArray">
<summary>
Gets the value of the screenshot image as an array of bytes.
</summary>
</member>
<member name="T:OpenQA.Selenium.StaleElementReferenceException">
<summary>
The exception that is thrown when a reference to an element is no longer valid.
</summary>
</member>
<member name="M:OpenQA.Selenium.StaleElementReferenceException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.StaleElementReferenceException" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.StaleElementReferenceException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.StaleElementReferenceException" /> class with
a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:OpenQA.Selenium.StaleElementReferenceException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.StaleElementReferenceException" /> class with
a specified error message and a reference to the inner exception that is the
cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception,
or <see langword="null" /> if no inner exception is specified.</param>
</member>
<member name="M:OpenQA.Selenium.StaleElementReferenceException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.StaleElementReferenceException" /> class with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="T:OpenQA.Selenium.UnableToSetCookieException">
<summary>
The exception that is thrown when the user is unable to set a cookie.
</summary>
</member>
<member name="M:OpenQA.Selenium.UnableToSetCookieException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.UnableToSetCookieException" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.UnableToSetCookieException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.UnableToSetCookieException" /> class with
a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:OpenQA.Selenium.UnableToSetCookieException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.UnableToSetCookieException" /> class with
a specified error message and a reference to the inner exception that is the
cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception,
or <see langword="null" /> if no inner exception is specified.</param>
</member>
<member name="M:OpenQA.Selenium.UnableToSetCookieException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.UnableToSetCookieException" /> class with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="T:OpenQA.Selenium.UnhandledAlertException">
<summary>
The exception that is thrown when an unhandled alert is present.
</summary>
</member>
<member name="M:OpenQA.Selenium.UnhandledAlertException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.UnhandledAlertException" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.UnhandledAlertException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.UnhandledAlertException" /> class with
a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:OpenQA.Selenium.UnhandledAlertException.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.UnhandledAlertException" /> class with
a specified error message and alert text.
</summary>
<param name="message">The message that describes the error.</param>
<param name="alertText">The text of the unhandled alert.</param>
</member>
<member name="M:OpenQA.Selenium.UnhandledAlertException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.UnhandledAlertException" /> class with
a specified error message and a reference to the inner exception that is the
cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception,
or <see langword="null" /> if no inner exception is specified.</param>
</member>
<member name="M:OpenQA.Selenium.UnhandledAlertException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.UnhandledAlertException" /> class with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="M:OpenQA.Selenium.UnhandledAlertException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a SerializationInfo with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="P:OpenQA.Selenium.UnhandledAlertException.Alert">
<summary>
Gets the <see cref="T:OpenQA.Selenium.IAlert" /> that has not been handled.
</summary>
</member>
<member name="P:OpenQA.Selenium.UnhandledAlertException.AlertText">
<summary>
Gets the text of the unhandled alert.
</summary>
</member>
<member name="T:OpenQA.Selenium.WebDriverResult">
<summary>
Specifies return values for actions in the driver.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.Success">
<summary>
The action was successful.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.IndexOutOfBounds">
<summary>
The index specified for the action was out of the acceptable range.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.NoCollection">
<summary>
No collection was specified.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.NoString">
<summary>
No string was specified.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.NoStringLength">
<summary>
No string length was specified.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.NoStringWrapper">
<summary>
No string wrapper was specified.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.NoSuchDriver">
<summary>
No driver matching the criteria exists.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.NoSuchElement">
<summary>
No element matching the criteria exists.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.NoSuchFrame">
<summary>
No frame matching the criteria exists.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.UnknownCommand">
<summary>
The functionality is not supported.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.ObsoleteElement">
<summary>
The specified element is no longer valid.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.ElementNotDisplayed">
<summary>
The specified element is not displayed.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.InvalidElementState">
<summary>
The specified element is not enabled.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.UnhandledError">
<summary>
An unhandled error occurred.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.ExpectedError">
<summary>
An error occurred, but it was expected.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.ElementNotSelectable">
<summary>
The specified element is not selected.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.NoSuchDocument">
<summary>
No document matching the criteria exists.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.UnexpectedJavaScriptError">
<summary>
An unexpected JavaScript error occurred.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.NoScriptResult">
<summary>
No result is available from the JavaScript execution.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.XPathLookupError">
<summary>
The result from the JavaScript execution is not recognized.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.NoSuchCollection">
<summary>
No collection matching the criteria exists.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.Timeout">
<summary>
A timeout occurred.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.NullPointer">
<summary>
A null pointer was received.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.NoSuchWindow">
<summary>
No window matching the criteria exists.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.InvalidCookieDomain">
<summary>
An illegal attempt was made to set a cookie under a different domain than the current page.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.UnableToSetCookie">
<summary>
A request to set a cookie's value could not be satisfied.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.UnexpectedAlertOpen">
<summary>
An alert was found open unexpectedly.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.NoAlertPresent">
<summary>
A request was made to switch to an alert, but no alert is currently open.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.AsyncScriptTimeout">
<summary>
An asynchronous JavaScript execution timed out.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.InvalidElementCoordinates">
<summary>
The coordinates of the element are invalid.
</summary>
</member>
<member name="F:OpenQA.Selenium.WebDriverResult.InvalidSelector">
<summary>
The selector used (CSS/XPath) was invalid.
</summary>
</member>
<member name="T:OpenQA.Selenium.WebDriverTimeoutException">
<summary>
Represents exceptions that are thrown when an error occurs during actions.
</summary>
</member>
<member name="M:OpenQA.Selenium.WebDriverTimeoutException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.WebDriverTimeoutException" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.WebDriverTimeoutException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.WebDriverTimeoutException" /> class with
a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:OpenQA.Selenium.WebDriverTimeoutException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.WebDriverTimeoutException" /> class with
a specified error message and a reference to the inner exception that is the
cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception,
or <see langword="null" /> if no inner exception is specified.</param>
</member>
<member name="M:OpenQA.Selenium.WebDriverTimeoutException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.WebDriverTimeoutException" /> class with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="T:OpenQA.Selenium.XPathLookupException">
<summary>
The exception that is thrown when an error occurs during an XPath lookup.
</summary>
</member>
<member name="M:OpenQA.Selenium.XPathLookupException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.XPathLookupException" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.XPathLookupException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.XPathLookupException" /> class with
a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:OpenQA.Selenium.XPathLookupException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.XPathLookupException" /> class with
a specified error message and a reference to the inner exception that is the
cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception,
or <see langword="null" /> if no inner exception is specified.</param>
</member>
<member name="M:OpenQA.Selenium.XPathLookupException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.XPathLookupException" /> class with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="T:OpenQA.Selenium.Internal.IFindsById">
<summary>
Defines the interface through which the user finds elements by their ID.
</summary>
</member>
<member name="M:OpenQA.Selenium.Internal.IFindsById.FindElementById(System.String)">
<summary>
Finds the first element matching the specified id.
</summary>
<param name="id">The id to match.</param>
<returns>The first <see cref="T:OpenQA.Selenium.IWebElement" /> matching the criteria.</returns>
</member>
<member name="M:OpenQA.Selenium.Internal.IFindsById.FindElementsById(System.String)">
<summary>
Finds all elements matching the specified id.
</summary>
<param name="id">The id to match.</param>
<returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> containing all
<see cref="T:OpenQA.Selenium.IWebElement">IWebElements</see> matching the criteria.</returns>
</member>
<member name="T:OpenQA.Selenium.Internal.IFindsByClassName">
<summary>
Defines the interface through which the user finds elements by their CSS class.
</summary>
</member>
<member name="M:OpenQA.Selenium.Internal.IFindsByClassName.FindElementByClassName(System.String)">
<summary>
Finds the first element matching the specified CSS class.
</summary>
<param name="className">The CSS class to match.</param>
<returns>The first <see cref="T:OpenQA.Selenium.IWebElement" /> matching the criteria.</returns>
</member>
<member name="M:OpenQA.Selenium.Internal.IFindsByClassName.FindElementsByClassName(System.String)">
<summary>
Finds all elements matching the specified CSS class.
</summary>
<param name="className">The CSS class to match.</param>
<returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> containing all
<see cref="T:OpenQA.Selenium.IWebElement">IWebElements</see> matching the criteria.</returns>
</member>
<member name="T:OpenQA.Selenium.Internal.IFindsByLinkText">
<summary>
Defines the interface through which the user finds elements by their link text.
</summary>
</member>
<member name="M:OpenQA.Selenium.Internal.IFindsByLinkText.FindElementByLinkText(System.String)">
<summary>
Finds the first element matching the specified link text.
</summary>
<param name="linkText">The link text to match.</param>
<returns>The first <see cref="T:OpenQA.Selenium.IWebElement" /> matching the criteria.</returns>
</member>
<member name="M:OpenQA.Selenium.Internal.IFindsByLinkText.FindElementsByLinkText(System.String)">
<summary>
Finds all elements matching the specified link text.
</summary>
<param name="linkText">The link text to match.</param>
<returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> containing all
<see cref="T:OpenQA.Selenium.IWebElement">IWebElements</see> matching the criteria.</returns>
</member>
<member name="T:OpenQA.Selenium.Internal.IFindsByName">
<summary>
Defines the interface through which the user finds elements by their name.
</summary>
</member>
<member name="M:OpenQA.Selenium.Internal.IFindsByName.FindElementByName(System.String)">
<summary>
Finds the first element matching the specified name.
</summary>
<param name="name">The name to match.</param>
<returns>The first <see cref="T:OpenQA.Selenium.IWebElement" /> matching the criteria.</returns>
</member>
<member name="M:OpenQA.Selenium.Internal.IFindsByName.FindElementsByName(System.String)">
<summary>
Finds all elements matching the specified name.
</summary>
<param name="name">The name to match.</param>
<returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> containing all
<see cref="T:OpenQA.Selenium.IWebElement">IWebElements</see> matching the criteria.</returns>
</member>
<member name="T:OpenQA.Selenium.Internal.IFindsByTagName">
<summary>
Defines the interface through which the user finds elements by their tag name.
</summary>
</member>
<member name="M:OpenQA.Selenium.Internal.IFindsByTagName.FindElementByTagName(System.String)">
<summary>
Finds the first element matching the specified tag name.
</summary>
<param name="tagName">The tag name to match.</param>
<returns>The first <see cref="T:OpenQA.Selenium.IWebElement" /> matching the criteria.</returns>
</member>
<member name="M:OpenQA.Selenium.Internal.IFindsByTagName.FindElementsByTagName(System.String)">
<summary>
Finds all elements matching the specified tag name.
</summary>
<param name="tagName">The tag name to match.</param>
<returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> containing all
<see cref="T:OpenQA.Selenium.IWebElement">IWebElements</see> matching the criteria.</returns>
</member>
<member name="T:OpenQA.Selenium.Internal.IFindsByXPath">
<summary>
Defines the interface through which the user finds elements by XPath.
</summary>
</member>
<member name="M:OpenQA.Selenium.Internal.IFindsByXPath.FindElementByXPath(System.String)">
<summary>
Finds the first element matching the specified XPath query.
</summary>
<param name="xpath">The XPath query to match.</param>
<returns>The first <see cref="T:OpenQA.Selenium.IWebElement" /> matching the criteria.</returns>
</member>
<member name="M:OpenQA.Selenium.Internal.IFindsByXPath.FindElementsByXPath(System.String)">
<summary>
Finds all elements matching the specified XPath query.
</summary>
<param name="xpath">The XPath query to match.</param>
<returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> containing all
<see cref="T:OpenQA.Selenium.IWebElement">IWebElements</see> matching the criteria.</returns>
</member>
<member name="T:OpenQA.Selenium.Internal.IFindsByPartialLinkText">
<summary>
Defines the interface through which the user finds elements by a partial match on their link text.
</summary>
</member>
<member name="M:OpenQA.Selenium.Internal.IFindsByPartialLinkText.FindElementByPartialLinkText(System.String)">
<summary>
Finds the first element matching the specified partial link text.
</summary>
<param name="partialLinkText">The partial link text to match.</param>
<returns>The first <see cref="T:OpenQA.Selenium.IWebElement" /> matching the criteria.</returns>
</member>
<member name="M:OpenQA.Selenium.Internal.IFindsByPartialLinkText.FindElementsByPartialLinkText(System.String)">
<summary>
Finds all elements matching the specified partial link text.
</summary>
<param name="partialLinkText">The partial link text to match.</param>
<returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> containing all
<see cref="T:OpenQA.Selenium.IWebElement">IWebElements</see> matching the criteria.</returns>
</member>
<member name="T:OpenQA.Selenium.Internal.IFindsByCssSelector">
<summary>
Defines the interface through which the user finds elements by their cascading style sheet (CSS) selector.
</summary>
</member>
<member name="M:OpenQA.Selenium.Internal.IFindsByCssSelector.FindElementByCssSelector(System.String)">
<summary>
Finds the first element matching the specified CSS selector.
</summary>
<param name="cssSelector">The id to match.</param>
<returns>The first <see cref="T:OpenQA.Selenium.IWebElement" /> matching the criteria.</returns>
</member>
<member name="M:OpenQA.Selenium.Internal.IFindsByCssSelector.FindElementsByCssSelector(System.String)">
<summary>
Finds all elements matching the specified CSS selector.
</summary>
<param name="cssSelector">The CSS selector to match.</param>
<returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> containing all
<see cref="T:OpenQA.Selenium.IWebElement">IWebElements</see> matching the criteria.</returns>
</member>
<member name="T:OpenQA.Selenium.Html5.IHasWebStorage">
<summary>
Interface allowing the user to determine if the driver instance supports web storage.
</summary>
</member>
<member name="P:OpenQA.Selenium.Html5.IHasWebStorage.HasWebStorage">
<summary>
Gets a value indicating whether web storage is supported for this driver.
</summary>
</member>
<member name="P:OpenQA.Selenium.Html5.IHasWebStorage.WebStorage">
<summary>
Gets an <see cref="T:OpenQA.Selenium.Html5.IWebStorage" /> object for managing web storage.
</summary>
</member>
<member name="T:OpenQA.Selenium.Html5.IHasLocationContext">
<summary>
Interface allowing the user to determine if the driver instance supports geolocation.
</summary>
</member>
<member name="P:OpenQA.Selenium.Html5.IHasLocationContext.HasLocationContext">
<summary>
Gets a value indicating whether manipulating geolocation is supported for this driver.
</summary>
</member>
<member name="P:OpenQA.Selenium.Html5.IHasLocationContext.LocationContext">
<summary>
Gets an <see cref="T:OpenQA.Selenium.Html5.ILocationContext" /> object for managing browser location.
</summary>
</member>
<member name="T:OpenQA.Selenium.Html5.IHasApplicationCache">
<summary>
Interface allowing the user to determine if the driver instance supports application cache.
</summary>
</member>
<member name="P:OpenQA.Selenium.Html5.IHasApplicationCache.HasApplicationCache">
<summary>
Gets a value indicating whether manipulating the application cache is supported for this driver.
</summary>
</member>
<member name="P:OpenQA.Selenium.Html5.IHasApplicationCache.ApplicationCache">
<summary>
Gets an <see cref="T:OpenQA.Selenium.Html5.IApplicationCache" /> object for managing application cache.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.IHasSessionId">
<summary>
Interface indicating the driver has a Session ID.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.IHasSessionId.SessionId">
<summary>
Gets the session ID of the current session.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.RemoteWebDriver">
<summary>
Provides a way to use the driver through
</summary>
/// <example><code>
[TestFixture]
public class Testing
{
private IWebDriver driver;
<para></para>
[SetUp]
public void SetUp()
{
driver = new RemoteWebDriver(new Uri("http://127.0.0.1:4444/wd/hub"),DesiredCapabilities.InternetExplorer());
}
<para></para>
[Test]
public void TestGoogle()
{
driver.Navigate().GoToUrl("http://www.google.co.uk");
/*
* Rest of the test
*/
}
<para></para>
[TearDown]
public void TearDown()
{
driver.Quit();
}
}
</code></example></member>
<member name="F:OpenQA.Selenium.Remote.RemoteWebDriver.DefaultCommandTimeout">
<summary>
The default command timeout for HTTP requests in a RemoteWebDriver instance.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.#ctor(OpenQA.Selenium.ICapabilities)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteWebDriver" /> class. This constructor defaults proxy to http://127.0.0.1:4444/wd/hub
</summary>
<param name="desiredCapabilities">An <see cref="T:OpenQA.Selenium.ICapabilities" /> object containing the desired capabilities of the browser.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.#ctor(System.Uri,OpenQA.Selenium.ICapabilities)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteWebDriver" /> class
</summary>
<param name="remoteAddress">URI containing the address of the WebDriver remote server (e.g. http://127.0.0.1:4444/wd/hub).</param>
<param name="desiredCapabilities">An <see cref="T:OpenQA.Selenium.ICapabilities" /> object containing the desired capabilities of the browser.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.#ctor(System.Uri,OpenQA.Selenium.ICapabilities,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteWebDriver" /> class using the specified remote address, desired capabilities, and command timeout.
</summary>
<param name="remoteAddress">URI containing the address of the WebDriver remote server (e.g. http://127.0.0.1:4444/wd/hub).</param>
<param name="desiredCapabilities">An <see cref="T:OpenQA.Selenium.ICapabilities" /> object containing the desired capabilities of the browser.</param>
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.#ctor(OpenQA.Selenium.Remote.ICommandExecutor,OpenQA.Selenium.ICapabilities)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteWebDriver" /> class
</summary>
<param name="commandExecutor">An <see cref="T:OpenQA.Selenium.Remote.ICommandExecutor" /> object which executes commands for the driver.</param>
<param name="desiredCapabilities">An <see cref="T:OpenQA.Selenium.ICapabilities" /> object containing the desired capabilities of the browser.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(OpenQA.Selenium.By)">
<summary>
Finds the first element in the page that matches the <see cref="T:OpenQA.Selenium.By" /> object
</summary>
<param name="by">By mechanism to find the object</param>
<returns>IWebElement object so that you can interact with that object</returns>
<example>
<code>
IWebDriver driver = new InternetExplorerDriver();
IWebElement elem = driver.FindElement(By.Name("q"));
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.FindElements(OpenQA.Selenium.By)">
<summary>
Finds the elements on the page by using the <see cref="T:OpenQA.Selenium.By" /> object and returns a ReadOnlyCollection of the Elements on the page
</summary>
<param name="by">By mechanism to find the element</param>
<returns>ReadOnlyCollection of IWebElement</returns>
<example>
<code>
IWebDriver driver = new InternetExplorerDriver();
ReadOnlyCollection<![CDATA[<IWebElement>]]> classList = driver.FindElements(By.ClassName("class"));
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.Close">
<summary>
Closes the Browser
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.Quit">
<summary>
Close the Browser and Dispose of WebDriver
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.Manage">
<summary>
Method For getting an object to set the Speed
</summary>
<returns>Returns an IOptions object that allows the driver to set the speed and cookies and getting cookies</returns>
<seealso cref="T:OpenQA.Selenium.IOptions" />
<example>
<code>
IWebDriver driver = new InternetExplorerDriver();
driver.Manage().GetCookies();
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.Navigate">
<summary>
Method to allow you to Navigate with WebDriver
</summary>
<returns>Returns an INavigation Object that allows the driver to navigate in the browser</returns>
<example>
<code>
IWebDriver driver = new InternetExplorerDriver();
driver.Navigate().GoToUrl("http://www.google.co.uk");
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.SwitchTo">
<summary>
Method to give you access to switch frames and windows
</summary>
<returns>Returns an Object that allows you to Switch Frames and Windows</returns>
<example>
<code>
IWebDriver driver = new InternetExplorerDriver();
driver.SwitchTo().Frame("FrameName");
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.ExecuteScript(System.String,System.Object[])">
<summary>
Executes JavaScript in the context of the currently selected frame or window
</summary>
<param name="script">The JavaScript code to execute.</param>
<param name="args">The arguments to the script.</param>
<returns>The value returned by the script.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.ExecuteAsyncScript(System.String,System.Object[])">
<summary>
Executes JavaScript asynchronously in the context of the currently selected frame or window.
</summary>
<param name="script">The JavaScript code to execute.</param>
<param name="args">The arguments to the script.</param>
<returns>The value returned by the script.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.FindElementById(System.String)">
<summary>
Finds the first element in the page that matches the ID supplied
</summary>
<param name="id">ID of the element</param>
<returns>IWebElement object so that you can interact with that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
IWebElement elem = driver.FindElementById("id")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.FindElementsById(System.String)">
<summary>
Finds the first element in the page that matches the ID supplied
</summary>
<param name="id">ID of the Element</param>
<returns>ReadOnlyCollection of Elements that match the object so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
ReadOnlyCollection<![CDATA[<IWebElement>]]> elem = driver.FindElementsById("id")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.FindElementByClassName(System.String)">
<summary>
Finds the first element in the page that matches the CSS Class supplied
</summary>
<param name="className">className of the</param>
<returns>IWebElement object so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
IWebElement elem = driver.FindElementByClassName("classname")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.FindElementsByClassName(System.String)">
<summary>
Finds a list of elements that match the class name supplied
</summary>
<param name="className">CSS class Name on the element</param>
<returns>ReadOnlyCollection of IWebElement object so that you can interact with those objects</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
ReadOnlyCollection<![CDATA[<IWebElement>]]> elem = driver.FindElementsByClassName("classname")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.FindElementByLinkText(System.String)">
<summary>
Finds the first of elements that match the link text supplied
</summary>
<param name="linkText">Link text of element </param>
<returns>IWebElement object so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
IWebElement elem = driver.FindElementsByLinkText("linktext")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.FindElementsByLinkText(System.String)">
<summary>
Finds a list of elements that match the link text supplied
</summary>
<param name="linkText">Link text of element</param>
<returns>ReadOnlyCollection<![CDATA[<IWebElement>]]> object so that you can interact with those objects</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
ReadOnlyCollection<![CDATA[<IWebElement>]]> elem = driver.FindElementsByClassName("classname")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.FindElementByPartialLinkText(System.String)">
<summary>
Finds the first of elements that match the part of the link text supplied
</summary>
<param name="partialLinkText">part of the link text</param>
<returns>IWebElement object so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
IWebElement elem = driver.FindElementsByPartialLinkText("partOfLink")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.FindElementsByPartialLinkText(System.String)">
<summary>
Finds a list of elements that match the class name supplied
</summary>
<param name="partialLinkText">part of the link text</param>
<returns>ReadOnlyCollection<![CDATA[<IWebElement>]]> objects so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
ReadOnlyCollection<![CDATA[<IWebElement>]]> elem = driver.FindElementsByPartialLinkText("partOfTheLink")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.FindElementByName(System.String)">
<summary>
Finds the first of elements that match the name supplied
</summary>
<param name="name">Name of the element on the page</param>
<returns>IWebElement object so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
elem = driver.FindElementsByName("name")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.FindElementsByName(System.String)">
<summary>
Finds a list of elements that match the name supplied
</summary>
<param name="name">Name of element</param>
<returns>ReadOnlyCollect of IWebElement objects so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
ReadOnlyCollection<![CDATA[<IWebElement>]]> elem = driver.FindElementsByName("name")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.FindElementByTagName(System.String)">
<summary>
Finds the first of elements that match the DOM Tag supplied
</summary>
<param name="tagName">DOM tag Name of the element being searched</param>
<returns>IWebElement object so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
IWebElement elem = driver.FindElementsByTagName("tag")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.FindElementsByTagName(System.String)">
<summary>
Finds a list of elements that match the DOM Tag supplied
</summary>
<param name="tagName">DOM tag Name of element being searched</param>
<returns>IWebElement object so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
ReadOnlyCollection<![CDATA[<IWebElement>]]> elem = driver.FindElementsByTagName("tag")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.FindElementByXPath(System.String)">
<summary>
Finds the first of elements that match the XPath supplied
</summary>
<param name="xpath">xpath to the element</param>
<returns>IWebElement object so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
IWebElement elem = driver.FindElementsByXPath("//table/tbody/tr/td/a");
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.FindElementsByXPath(System.String)">
<summary>
Finds a list of elements that match the XPath supplied
</summary>
<param name="xpath">xpath to the element</param>
<returns>ReadOnlyCollection of IWebElement objects so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
ReadOnlyCollection<![CDATA[<IWebElement>]]> elem = driver.FindElementsByXpath("//tr/td/a")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.FindElementByCssSelector(System.String)">
<summary>
Finds the first element matching the specified CSS selector.
</summary>
<param name="cssSelector">The CSS selector to match.</param>
<returns>The first <see cref="T:OpenQA.Selenium.IWebElement" /> matching the criteria.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.FindElementsByCssSelector(System.String)">
<summary>
Finds all elements matching the specified CSS selector.
</summary>
<param name="cssSelector">The CSS selector to match.</param>
<returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> containing all
<see cref="T:OpenQA.Selenium.IWebElement">IWebElements</see> matching the criteria.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.GetScreenshot">
<summary>
Gets a <see cref="T:OpenQA.Selenium.Screenshot" /> object representing the image of the page on the screen.
</summary>
<returns>A <see cref="T:OpenQA.Selenium.Screenshot" /> object containing the image.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.Dispose">
<summary>
Dispose the RemoteWebDriver Instance
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.EscapeCssSelector(System.String)">
<summary>
Escapes invalid characters in a CSS selector.
</summary>
<param name="selector">The selector to escape.</param>
<returns>The selector with invalid characters escaped.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.InternalExecute(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
Executes commands with the driver
</summary>
<param name="driverCommandToExecute">Command that needs executing</param>
<param name="parameters">Parameters needed for the command</param>
<returns>WebDriver Response</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.GetElementFromResponse(OpenQA.Selenium.Remote.Response)">
<summary>
Find the element in the response
</summary>
<param name="response">Response from the browser</param>
<returns>Element from the page</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.GetElementsFromResponse(OpenQA.Selenium.Remote.Response)">
<summary>
Finds the elements that are in the response
</summary>
<param name="response">Response from the browser</param>
<returns>Collection of elements</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.Dispose(System.Boolean)">
<summary>
Stops the client from running
</summary>
<param name="disposing">if its in the process of disposing</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.StartSession(OpenQA.Selenium.ICapabilities)">
<summary>
Starts a session with the driver
</summary>
<param name="desiredCapabilities">Capabilities of the browser</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.Execute(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
Executes a command with this driver .
</summary>
<param name="driverCommandToExecute">A <see cref="T:OpenQA.Selenium.Remote.DriverCommand" /> value representing the command to execute.</param>
<param name="parameters">A <see cref="T:System.Collections.Generic.Dictionary`2" /> containing the names and values of the parameters of the command.</param>
<returns>A <see cref="T:OpenQA.Selenium.Remote.Response" /> containing information about the success or failure of the command and any data returned by the command.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.StartClient">
<summary>
Starts the command executor, enabling communication with the browser.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.StopClient">
<summary>
Stops the command executor, ending further communication with the browser.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(System.String,System.String)">
<summary>
Finds an element matching the given mechanism and value.
</summary>
<param name="mechanism">The mechanism by which to find the element.</param>
<param name="value">The value to use to search for the element.</param>
<returns>The first <see cref="T:OpenQA.Selenium.IWebElement" /> matching the given criteria.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.FindElements(System.String,System.String)">
<summary>
Finds all elements matching the given mechanism and value.
</summary>
<param name="mechanism">The mechanism by which to find the elements.</param>
<param name="value">The value to use to search for the elements.</param>
<returns>A collection of all of the <see cref="T:OpenQA.Selenium.IWebElement">IWebElements</see> matching the given criteria.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.CreateElement(System.String)">
<summary>
Creates a <see cref="T:OpenQA.Selenium.Remote.RemoteWebElement" /> with the specified ID.
</summary>
<param name="elementId">The ID of this element.</param>
<returns>A <see cref="T:OpenQA.Selenium.Remote.RemoteWebElement" /> with the specified ID.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.ExecuteScriptCommand(System.String,System.String,System.Object[])">
<summary>
Executes JavaScript in the context of the currently selected frame or window using a specific command.
</summary>
<param name="script">The JavaScript code to execute.</param>
<param name="commandName">The name of the command to execute.</param>
<param name="args">The arguments to the script.</param>
<returns>The value returned by the script.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebDriver.ConvertArgumentsToJavaScriptObjects(System.Object[])">
<summary>
Converts the arguments to JavaScript objects.
</summary>
<param name="args">The arguments.</param>
<returns>The list of the arguments converted to JavaScript objects.</returns>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebDriver.Url">
<summary>
Gets or sets the URL the browser is currently displaying.
</summary>
<seealso cref="P:OpenQA.Selenium.IWebDriver.Url" />
<seealso cref="M:OpenQA.Selenium.INavigation.GoToUrl(System.String)" />
<seealso cref="M:OpenQA.Selenium.INavigation.GoToUrl(System.Uri)" />
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebDriver.Title">
<summary>
Gets the title of the current browser window.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebDriver.PageSource">
<summary>
Gets the source of the page last loaded by the browser.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebDriver.CurrentWindowHandle">
<summary>
Gets the current window handle, which is an opaque handle to this
window that uniquely identifies it within this driver instance.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebDriver.WindowHandles">
<summary>
Gets the window handles of open browser windows.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebDriver.Keyboard">
<summary>
Gets an <see cref="T:OpenQA.Selenium.IKeyboard" /> object for sending keystrokes to the browser.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebDriver.Mouse">
<summary>
Gets an <see cref="T:OpenQA.Selenium.IMouse" /> object for sending mouse commands to the browser.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebDriver.HasWebStorage">
<summary>
Gets a value indicating whether web storage is supported for this driver.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebDriver.WebStorage">
<summary>
Gets an <see cref="T:OpenQA.Selenium.Html5.IWebStorage" /> object for managing web storage.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebDriver.HasApplicationCache">
<summary>
Gets a value indicating whether manipulating the application cache is supported for this driver.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebDriver.ApplicationCache">
<summary>
Gets an <see cref="T:OpenQA.Selenium.Html5.IApplicationCache" /> object for managing application cache.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebDriver.HasLocationContext">
<summary>
Gets a value indicating whether manipulating geolocation is supported for this driver.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebDriver.LocationContext">
<summary>
Gets an <see cref="T:OpenQA.Selenium.Html5.ILocationContext" /> object for managing browser location.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebDriver.Capabilities">
<summary>
Gets the capabilities that the RemoteWebDriver instance is currently using
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebDriver.FileDetector">
<summary>
Gets or sets the <see cref="T:OpenQA.Selenium.IFileDetector" /> responsible for detecting
sequences of keystrokes representing file paths and names.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebDriver.SessionId">
<summary>
Gets the <see cref="P:OpenQA.Selenium.Remote.RemoteWebDriver.SessionId" /> for the current session of this driver.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebDriver.IsSpecificationCompliant">
<summary>
Gets a value indicating whether or not the driver is compliant with the W3C WebDriver specification.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebDriver.CommandExecutor">
<summary>
Gets the <see cref="T:OpenQA.Selenium.Remote.ICommandExecutor" /> which executes commands for this driver.
</summary>
</member>
<member name="T:OpenQA.Selenium.Chrome.ChromeDriver">
<summary>
Provides a mechanism to write tests against Chrome
</summary>
<example>
<code>
[TestFixture]
public class Testing
{
private IWebDriver driver;
<para></para>
[SetUp]
public void SetUp()
{
driver = new ChromeDriver();
}
<para></para>
[Test]
public void TestGoogle()
{
driver.Navigate().GoToUrl("http://www.google.co.uk");
/*
* Rest of the test
*/
}
<para></para>
[TearDown]
public void TearDown()
{
driver.Quit();
}
}
</code>
</example>
</member>
<member name="F:OpenQA.Selenium.Chrome.ChromeDriver.AcceptUntrustedCertificates">
<summary>
Accept untrusted SSL Certificates
</summary>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeDriver" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor(OpenQA.Selenium.Chrome.ChromeOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeDriver" /> class using the specified options.
</summary>
<param name="options">The <see cref="T:OpenQA.Selenium.Chrome.ChromeOptions" /> to be used with the Chrome driver.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor(OpenQA.Selenium.Chrome.ChromeDriverService)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeDriver" /> class using the specified driver service.
</summary>
<param name="service">The <see cref="T:OpenQA.Selenium.Chrome.ChromeDriverService" /> used to initialize the driver.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeDriver" /> class using the specified path
to the directory containing ChromeDriver.exe.
</summary>
<param name="chromeDriverDirectory">The full path to the directory containing ChromeDriver.exe.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor(System.String,OpenQA.Selenium.Chrome.ChromeOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeDriver" /> class using the specified path
to the directory containing ChromeDriver.exe and options.
</summary>
<param name="chromeDriverDirectory">The full path to the directory containing ChromeDriver.exe.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.Chrome.ChromeOptions" /> to be used with the Chrome driver.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor(System.String,OpenQA.Selenium.Chrome.ChromeOptions,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeDriver" /> class using the specified path
to the directory containing ChromeDriver.exe, options, and command timeout.
</summary>
<param name="chromeDriverDirectory">The full path to the directory containing ChromeDriver.exe.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.Chrome.ChromeOptions" /> to be used with the Chrome driver.</param>
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor(OpenQA.Selenium.Chrome.ChromeDriverService,OpenQA.Selenium.Chrome.ChromeOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeDriver" /> class using the specified
<see cref="T:OpenQA.Selenium.Chrome.ChromeDriverService" /> and options.
</summary>
<param name="service">The <see cref="T:OpenQA.Selenium.Chrome.ChromeDriverService" /> to use.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.Chrome.ChromeOptions" /> used to initialize the driver.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor(OpenQA.Selenium.Chrome.ChromeDriverService,OpenQA.Selenium.Chrome.ChromeOptions,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeDriver" /> class using the specified <see cref="T:OpenQA.Selenium.Chrome.ChromeDriverService" />.
</summary>
<param name="service">The <see cref="T:OpenQA.Selenium.Chrome.ChromeDriverService" /> to use.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.Chrome.ChromeOptions" /> to be used with the Chrome driver.</param>
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeDriver.FileDetector">
<summary>
Gets or sets the <see cref="T:OpenQA.Selenium.IFileDetector" /> responsible for detecting
sequences of keystrokes representing file paths and names.
</summary>
<remarks>The Chrome driver does not allow a file detector to be set,
as the server component of the Chrome driver (ChromeDriver.exe) only
allows uploads from the local computer environment. Attempting to set
this property has no effect, but does not throw an exception. If you
are attempting to run the Chrome driver remotely, use <see cref="T:OpenQA.Selenium.Remote.RemoteWebDriver" />
in conjunction with a standalone WebDriver server.</remarks>
</member>
<member name="T:OpenQA.Selenium.Chrome.ChromeDriverService">
<summary>
Exposes the service provided by the native ChromeDriver executable.
</summary>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriverService.#ctor(System.String,System.String,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeDriverService" /> class.
</summary>
<param name="executablePath">The full path to the ChromeDriver executable.</param>
<param name="executableFileName">The file name of the ChromeDriver executable.</param>
<param name="port">The port on which the ChromeDriver executable should listen.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriverService.CreateDefaultService">
<summary>
Creates a default instance of the ChromeDriverService.
</summary>
<returns>A ChromeDriverService that implements default settings.</returns>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriverService.CreateDefaultService(System.String)">
<summary>
Creates a default instance of the ChromeDriverService using a specified path to the ChromeDriver executable.
</summary>
<param name="driverPath">The directory containing the ChromeDriver executable.</param>
<returns>A ChromeDriverService using a random port.</returns>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriverService.CreateDefaultService(System.String,System.String)">
<summary>
Creates a default instance of the ChromeDriverService using a specified path to the ChromeDriver executable with the given name.
</summary>
<param name="driverPath">The directory containing the ChromeDriver executable.</param>
<param name="driverExecutableFileName">The name of the ChromeDriver executable file.</param>
<returns>A ChromeDriverService using a random port.</returns>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriverService.ChromeDriverServiceFileName">
<summary>
Returns the Chrome driver filename for the currently running platform
</summary>
<returns>The file name of the Chrome driver service executable.</returns>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeDriverService.LogPath">
<summary>
Gets or sets the location of the log file written to by the ChromeDriver executable.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeDriverService.UrlPathPrefix">
<summary>
Gets or sets the base URL path prefix for commands (e.g., "wd/url").
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeDriverService.PortServerAddress">
<summary>
Gets or sets the address of a server to contact for reserving a port.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeDriverService.AndroidDebugBridgePort">
<summary>
Gets or sets the port on which the Android Debug Bridge is listening for commands.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeDriverService.EnableVerboseLogging">
<summary>
Gets or sets a value indicating whether to enable verbose logging for the ChromeDriver executable.
Defaults to <see langword="false" />.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeDriverService.WhitelistedIPAddresses">
<summary>
Gets or sets the comma-delimited list of IP addresses that are approved to
connect to this instance of the Chrome driver. Defaults to an empty string,
which means only the local loopback address can connect.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeDriverService.CommandLineArguments">
<summary>
Gets the command-line arguments for the driver service.
</summary>
</member>
<member name="T:OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings">
<summary>
Represents the type-safe options for setting settings for emulating a
mobile device in the Chrome browser.
</summary>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings" /> class.
</summary>
<param name="userAgent">The user agent string to be used by the browser when emulating
a mobile device.</param>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings.UserAgent">
<summary>
Gets or sets the user agent string to be used by the browser when emulating
a mobile device.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings.Width">
<summary>
Gets or sets the width in pixels to be used by the browser when emulating
a mobile device.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings.Height">
<summary>
Gets or sets the height in pixels to be used by the browser when emulating
a mobile device.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings.PixelRatio">
<summary>
Gets or sets the pixel ratio to be used by the browser when emulating
a mobile device.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings.EnableTouchEvents">
<summary>
Gets or sets a value indicating whether touch events should be enabled by
the browser when emulating a mobile device. Defaults to <see langword="true" />.
</summary>
</member>
<member name="T:OpenQA.Selenium.Chrome.ChromeOptions">
<summary>
Class to manage options specific to <see cref="T:OpenQA.Selenium.Chrome.ChromeDriver" /></summary>
<remarks>
Used with ChromeDriver.exe v17.0.963.0 and higher.
</remarks>
<example>
<code>
ChromeOptions options = new ChromeOptions();
options.AddExtensions("\path\to\extension.crx");
options.BinaryLocation = "\path\to\chrome";
</code>
<para>
</para>
<para>For use with ChromeDriver:</para>
<para>
</para>
<code>
ChromeDriver driver = new ChromeDriver(options);
</code>
<para>
</para>
<para>For use with RemoteWebDriver:</para>
<para>
</para>
<code>
RemoteWebDriver driver = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), options.ToCapabilities());
</code>
</example>
</member>
<member name="F:OpenQA.Selenium.Chrome.ChromeOptions.Capability">
<summary>
Gets the name of the capability used to store Chrome options in
a <see cref="T:OpenQA.Selenium.Remote.DesiredCapabilities" /> object.
</summary>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddArgument(System.String)">
<summary>
Adds a single argument to the list of arguments to be appended to the Chrome.exe command line.
</summary>
<param name="argument">The argument to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddArguments(System.String[])">
<summary>
Adds arguments to be appended to the Chrome.exe command line.
</summary>
<param name="argumentsToAdd">An array of arguments to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddArguments(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Adds arguments to be appended to the Chrome.exe command line.
</summary>
<param name="argumentsToAdd">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> object of arguments to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddExcludedArgument(System.String)">
<summary>
Adds a single argument to be excluded from the list of arguments passed by default
to the Chrome.exe command line by chromedriver.exe.
</summary>
<param name="argument">The argument to exclude.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddExcludedArguments(System.String[])">
<summary>
Adds arguments to be excluded from the list of arguments passed by default
to the Chrome.exe command line by chromedriver.exe.
</summary>
<param name="argumentsToExclude">An array of arguments to exclude.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddExcludedArguments(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Adds arguments to be excluded from the list of arguments passed by default
to the Chrome.exe command line by chromedriver.exe.
</summary>
<param name="argumentsToExclude">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> object of arguments to exclude.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddExtension(System.String)">
<summary>
Adds a path to a packed Chrome extension (.crx file) to the list of extensions
to be installed in the instance of Chrome.
</summary>
<param name="pathToExtension">The full path to the extension to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddExtensions(System.String[])">
<summary>
Adds a list of paths to packed Chrome extensions (.crx files) to be installed
in the instance of Chrome.
</summary>
<param name="extensions">An array of full paths to the extensions to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddExtensions(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Adds a list of paths to packed Chrome extensions (.crx files) to be installed
in the instance of Chrome.
</summary>
<param name="extensions">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of full paths to the extensions to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddEncodedExtension(System.String)">
<summary>
Adds a base64-encoded string representing a Chrome extension to the list of extensions
to be installed in the instance of Chrome.
</summary>
<param name="extension">A base64-encoded string representing the extension to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddEncodedExtensions(System.String[])">
<summary>
Adds a list of base64-encoded strings representing Chrome extensions to the list of extensions
to be installed in the instance of Chrome.
</summary>
<param name="extensions">An array of base64-encoded strings representing the extensions to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddEncodedExtensions(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Adds a list of base64-encoded strings representing Chrome extensions to be installed
in the instance of Chrome.
</summary>
<param name="extensions">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of base64-encoded strings
representing the extensions to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddUserProfilePreference(System.String,System.Object)">
<summary>
Adds a preference for the user-specific profile or "user data directory."
If the specified preference already exists, it will be overwritten.
</summary>
<param name="preferenceName">The name of the preference to set.</param>
<param name="preferenceValue">The value of the preference to set.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddLocalStatePreference(System.String,System.Object)">
<summary>
Adds a preference for the local state file in the user's data directory for Chrome.
If the specified preference already exists, it will be overwritten.
</summary>
<param name="preferenceName">The name of the preference to set.</param>
<param name="preferenceValue">The value of the preference to set.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.EnableMobileEmulation(System.String)">
<summary>
Allows the Chrome browser to emulate a mobile device.
</summary>
<param name="deviceName">The name of the device to emulate. The device name must be a
valid device name from the Chrome DevTools Emulation panel.</param>
<remarks>Specifying an invalid device name will not throw an exeption, but
will generate an error in Chrome when the driver starts. To unset mobile
emulation, call this method with <see langword="null" /> as the argument.</remarks>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.EnableMobileEmulation(OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings)">
<summary>
Allows the Chrome browser to emulate a mobile device.
</summary>
<param name="deviceSettings">The <see cref="T:OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings" />
object containing the settings of the device to emulate.</param>
<exception cref="T:System.ArgumentException">Thrown if the device settings option does
not have a user agent string set.</exception>
<remarks>Specifying an invalid device name will not throw an exeption, but
will generate an error in Chrome when the driver starts. To unset mobile
emulation, call this method with <see langword="null" /> as the argument.</remarks>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddWindowType(System.String)">
<summary>
Adds a type of window that will be listed in the list of window handles
returned by the Chrome driver.
</summary>
<param name="windowType">The name of the window type to add.</param>
<remarks>This method can be used to allow the driver to access {webview}
elements by adding "webview" as a window type.</remarks>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddWindowTypes(System.String[])">
<summary>
Adds a list of window types that will be listed in the list of window handles
returned by the Chrome driver.
</summary>
<param name="windowTypesToAdd">An array of window types to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddWindowTypes(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Adds a list of window types that will be listed in the list of window handles
returned by the Chrome driver.
</summary>
<param name="windowTypesToAdd">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of window types to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddAdditionalCapability(System.String,System.Object)">
<summary>
Provides a means to add additional capabilities not yet added as type safe options
for the Chrome driver.
</summary>
<param name="capabilityName">The name of the capability to add.</param>
<param name="capabilityValue">The value of the capability to add.</param>
<exception cref="T:System.ArgumentException">
thrown when attempting to add a capability for which there is already a type safe option, or
when <paramref name="capabilityName" /> is <see langword="null" /> or the empty string.
</exception>
<remarks>Calling <see cref="M:OpenQA.Selenium.Chrome.ChromeOptions.AddAdditionalCapability(System.String,System.Object)" />
where <paramref name="capabilityName" /> has already been added will overwrite the
existing value with the new value in <paramref name="capabilityValue" />.
Also, by default, calling this method adds capabilities to the options object passed to
chromedriver.exe.</remarks>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddAdditionalCapability(System.String,System.Object,System.Boolean)">
<summary>
Provides a means to add additional capabilities not yet added as type safe options
for the Chrome driver.
</summary>
<param name="capabilityName">The name of the capability to add.</param>
<param name="capabilityValue">The value of the capability to add.</param>
<param name="isGlobalCapability">Indicates whether the capability is to be set as a global
capability for the driver instead of a Chrome-specific option.</param>
<exception cref="T:System.ArgumentException">
thrown when attempting to add a capability for which there is already a type safe option, or
when <paramref name="capabilityName" /> is <see langword="null" /> or the empty string.
</exception>
<remarks>Calling <see cref="M:OpenQA.Selenium.Chrome.ChromeOptions.AddAdditionalCapability(System.String,System.Object,System.Boolean)" />
where <paramref name="capabilityName" /> has already been added will overwrite the
existing value with the new value in <paramref name="capabilityValue" /></remarks>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.ToCapabilities">
<summary>
Returns DesiredCapabilities for Chrome with these options included as
capabilities. This does not copy the options. Further changes will be
reflected in the returned capabilities.
</summary>
<returns>The DesiredCapabilities for Chrome with these options.</returns>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeOptions.BinaryLocation">
<summary>
Gets or sets the location of the Chrome browser's binary executable file.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeOptions.LeaveBrowserRunning">
<summary>
Gets or sets a value indicating whether Chrome should be left running after the
ChromeDriver instance is exited. Defaults to <see langword="false" />.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeOptions.Proxy">
<summary>
Gets or sets the proxy to use with this instance of Chrome.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeOptions.Arguments">
<summary>
Gets the list of arguments appended to the Chrome command line as a string array.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeOptions.Extensions">
<summary>
Gets the list of extensions to be installed as an array of base64-encoded strings.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeOptions.DebuggerAddress">
<summary>
Gets or sets the address of a Chrome debugger server to connect to.
Should be of the form "{hostname|IP address}:port".
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeOptions.MinidumpPath">
<summary>
Gets or sets the directory in which to store minidump files.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeOptions.PerformanceLoggingPreferences">
<summary>
Gets or sets the performance logging preferences for the driver.
</summary>
</member>
<member name="T:OpenQA.Selenium.Chrome.ChromePerformanceLoggingPreferences">
<summary>
Represents the type-safe options for setting preferences for performance
logging in the Chrome browser.
</summary>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromePerformanceLoggingPreferences.AddTracingCategory(System.String)">
<summary>
Adds a single category to the list of Chrome tracing categories for which events should be collected.
</summary>
<param name="category">The category to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromePerformanceLoggingPreferences.AddTracingCategories(System.String[])">
<summary>
Adds categories to the list of Chrome tracing categories for which events should be collected.
</summary>
<param name="categoriesToAdd">An array of categories to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromePerformanceLoggingPreferences.AddTracingCategories(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Adds categories to the list of Chrome tracing categories for which events should be collected.
</summary>
<param name="categoriesToAdd">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> object of categories to add.</param>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromePerformanceLoggingPreferences.IsCollectingNetworkEvents">
<summary>
Gets or sets a value indicating whether Chrome will collect events from the Network domain.
Defaults to <see langword="true" />.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromePerformanceLoggingPreferences.IsCollectingPageEvents">
<summary>
Gets or sets a value indicating whether Chrome will collect events from the Page domain.
Defaults to <see langword="true" />.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromePerformanceLoggingPreferences.IsCollectingTimelineEvents">
<summary>
Gets or sets a value indicating whether Chrome will collect events from the Timeline domain.
Defaults to <see langword="true" />, but is set to <see langword="false" /> when tracing
is enabled by adding one or more tracing categories.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromePerformanceLoggingPreferences.BufferUsageReportingInterval">
<summary>
Gets or sets the interval between Chrome DevTools trace buffer usage events.
Defaults to 1000 milliseconds.
</summary>
<exception cref="T:System.ArgumentException">Thrown when an attempt is made to set
the value to a time span of less tnan or equal to zero milliseconds.</exception>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromePerformanceLoggingPreferences.TracingCategories">
<summary>
Gets a comma-separated list of the categories for which tracing is enabled.
</summary>
</member>
<member name="T:OpenQA.Selenium.Internal.IWrapsDriver">
<summary>
Defines the interface through which the user can access the driver used to find an element.
</summary>
</member>
<member name="P:OpenQA.Selenium.Internal.IWrapsDriver.WrappedDriver">
<summary>
Gets the <see cref="T:OpenQA.Selenium.IWebDriver" /> used to find this element.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.RemoteWebElement">
<summary>
RemoteWebElement allows you to have access to specific items that are found on the page
</summary>
<seealso cref="T:OpenQA.Selenium.IWebElement" />
<seealso cref="T:OpenQA.Selenium.ILocatable" />
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.#ctor(OpenQA.Selenium.Remote.RemoteWebDriver,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteWebElement" /> class.
</summary>
<param name="parentDriver">The <see cref="T:OpenQA.Selenium.Remote.RemoteWebDriver" /> instance hosting this element.</param>
<param name="id">The ID assigned to the element.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.Clear">
<summary>
Clears the content of this element.
</summary>
<remarks>If this element is a text entry element, the <see cref="M:OpenQA.Selenium.Remote.RemoteWebElement.Clear" />
method will clear the value. It has no effect on other elements. Text entry elements
are defined as elements with INPUT or TEXTAREA tags.</remarks>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.SendKeys(System.String)">
<summary>
Simulates typing text into the element.
</summary>
<param name="text">The text to type into the element.</param>
<remarks>The text to be typed may include special characters like arrow keys,
backspaces, function keys, and so on. Valid special keys are defined in
<see cref="T:OpenQA.Selenium.Keys" />.</remarks>
<seealso cref="T:OpenQA.Selenium.Keys" />
<exception cref="T:OpenQA.Selenium.InvalidElementStateException">Thrown when the target element is not enabled.</exception>
<exception cref="T:OpenQA.Selenium.ElementNotVisibleException">Thrown when the target element is not visible.</exception>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.Submit">
<summary>
Submits this element to the web server.
</summary>
<remarks>If this current element is a form, or an element within a form,
then this will be submitted to the web server. If this causes the current
page to change, then this method will attempt to block until the new page
is loaded.</remarks>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.Click">
<summary>
Clicks this element.
</summary>
<remarks>
Click this element. If the click causes a new page to load, the <see cref="M:OpenQA.Selenium.Remote.RemoteWebElement.Click" />
method will attempt to block until the page has loaded. After calling the
<see cref="M:OpenQA.Selenium.Remote.RemoteWebElement.Click" /> method, you should discard all references to this
element unless you know that the element and the page will still be present.
Otherwise, any further operations performed on this element will have an undefined
behavior.
</remarks>
<exception cref="T:OpenQA.Selenium.InvalidElementStateException">Thrown when the target element is not enabled.</exception>
<exception cref="T:OpenQA.Selenium.ElementNotVisibleException">Thrown when the target element is not visible.</exception>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.GetAttribute(System.String)">
<summary>
Gets the value of the specified attribute for this element.
</summary>
<param name="attributeName">The name of the attribute.</param>
<returns>The attribute's current value. Returns a <see langword="null" /> if the
value is not set.</returns>
<remarks>The <see cref="M:OpenQA.Selenium.Remote.RemoteWebElement.GetAttribute(System.String)" /> method will return the current value
of the attribute, even if the value has been modified after the page has been
loaded. Note that the value of the following attributes will be returned even if
there is no explicit attribute on the element:
<list type="table"><listheader><term>Attribute name</term><term>Value returned if not explicitly specified</term><term>Valid element types</term></listheader><item><description>checked</description><description>checked</description><description>Check Box</description></item><item><description>selected</description><description>selected</description><description>Options in Select elements</description></item><item><description>disabled</description><description>disabled</description><description>Input and other UI elements</description></item></list></remarks>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.GetCssValue(System.String)">
<summary>
Gets the value of a CSS property of this element.
</summary>
<param name="propertyName">The name of the CSS property to get the value of.</param>
<returns>The value of the specified CSS property.</returns>
<remarks>The value returned by the <see cref="M:OpenQA.Selenium.Remote.RemoteWebElement.GetCssValue(System.String)" />
method is likely to be unpredictable in a cross-browser environment.
Color values should be returned as hex strings. For example, a
"background-color" property set as "green" in the HTML source, will
return "#008000" for its value.</remarks>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.FindElements(OpenQA.Selenium.By)">
<summary>
Finds all <see cref="T:OpenQA.Selenium.IWebElement">IWebElements</see> within the current context
using the given mechanism.
</summary>
<param name="by">The locating mechanism to use.</param>
<returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> of all <see cref="T:OpenQA.Selenium.IWebElement">WebElements</see>
matching the current criteria, or an empty list if nothing matches.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.FindElement(OpenQA.Selenium.By)">
<summary>
Finds the first <see cref="T:OpenQA.Selenium.IWebElement" /> using the given method.
</summary>
<param name="by">The locating mechanism to use.</param>
<returns>The first matching <see cref="T:OpenQA.Selenium.IWebElement" /> on the current context.</returns>
<exception cref="T:OpenQA.Selenium.NoSuchElementException">If no element matches the criteria.</exception>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.FindElementByLinkText(System.String)">
<summary>
Finds the first of elements that match the link text supplied
</summary>
<param name="linkText">Link text of element </param>
<returns>IWebElement object so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
IWebElement elem = driver.FindElementByLinkText("linktext")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.FindElementsByLinkText(System.String)">
<summary>
Finds the first of elements that match the link text supplied
</summary>
<param name="linkText">Link text of element </param>
<returns>IWebElement object so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
ReadOnlyCollection<![CDATA[<IWebElement>]]> elem = driver.FindElementsByLinkText("linktext")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.FindElementById(System.String)">
<summary>
Finds the first element in the page that matches the ID supplied
</summary>
<param name="id">ID of the element</param>
<returns>IWebElement object so that you can interact with that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
IWebElement elem = driver.FindElementById("id")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.FindElementsById(System.String)">
<summary>
Finds the first element in the page that matches the ID supplied
</summary>
<param name="id">ID of the Element</param>
<returns>ReadOnlyCollection of Elements that match the object so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
ReadOnlyCollection<![CDATA[<IWebElement>]]> elem = driver.FindElementsById("id")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.FindElementByName(System.String)">
<summary>
Finds the first of elements that match the name supplied
</summary>
<param name="name">Name of the element</param>
<returns>IWebElement object so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
elem = driver.FindElementsByName("name")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.FindElementsByName(System.String)">
<summary>
Finds a list of elements that match the name supplied
</summary>
<param name="name">Name of element</param>
<returns>ReadOnlyCollect of IWebElement objects so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
ReadOnlyCollection<![CDATA[<IWebElement>]]> elem = driver.FindElementsByName("name")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.FindElementByTagName(System.String)">
<summary>
Finds the first of elements that match the DOM Tag supplied
</summary>
<param name="tagName">tag name of the element</param>
<returns>IWebElement object so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
IWebElement elem = driver.FindElementsByTagName("tag")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.FindElementsByTagName(System.String)">
<summary>
Finds a list of elements that match the DOM Tag supplied
</summary>
<param name="tagName">DOM Tag of the element on the page</param>
<returns>IWebElement object so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
ReadOnlyCollection<![CDATA[<IWebElement>]]> elem = driver.FindElementsByTagName("tag")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.FindElementByClassName(System.String)">
<summary>
Finds the first element in the page that matches the CSS Class supplied
</summary>
<param name="className">CSS class name of the element on the page</param>
<returns>IWebElement object so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
IWebElement elem = driver.FindElementByClassName("classname")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.FindElementsByClassName(System.String)">
<summary>
Finds a list of elements that match the class name supplied
</summary>
<param name="className">CSS class name of the elements on the page</param>
<returns>ReadOnlyCollection of IWebElement object so that you can interact with those objects</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
ReadOnlyCollection<![CDATA[<IWebElement>]]> elem = driver.FindElementsByClassName("classname")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.FindElementByXPath(System.String)">
<summary>
Finds the first of elements that match the XPath supplied
</summary>
<param name="xpath">xpath to the element</param>
<returns>IWebElement object so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
IWebElement elem = driver.FindElementsByXPath("//table/tbody/tr/td/a");
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.FindElementsByXPath(System.String)">
<summary>
Finds a list of elements that match the XPath supplied
</summary>
<param name="xpath">xpath to element on the page</param>
<returns>ReadOnlyCollection of IWebElement objects so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
ReadOnlyCollection<![CDATA[<IWebElement>]]> elem = driver.FindElementsByXpath("//tr/td/a")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.FindElementByPartialLinkText(System.String)">
<summary>
Finds the first of elements that match the part of the link text supplied
</summary>
<param name="partialLinkText">part of the link text</param>
<returns>IWebElement object so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
IWebElement elem = driver.FindElementsByPartialLinkText("partOfLink")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.FindElementsByPartialLinkText(System.String)">
<summary>
Finds a list of elements that match the link text supplied
</summary>
<param name="partialLinkText">part of the link text</param>
<returns>ReadOnlyCollection<![CDATA[<IWebElement>]]> objects so that you can interact that object</returns>
<example>
<code>
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
ReadOnlyCollection<![CDATA[<IWebElement>]]> elem = driver.FindElementsByPartialLinkText("partOfTheLink")
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.FindElementByCssSelector(System.String)">
<summary>
Finds the first element matching the specified CSS selector.
</summary>
<param name="cssSelector">The id to match.</param>
<returns>The first <see cref="T:OpenQA.Selenium.IWebElement" /> matching the criteria.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.FindElementsByCssSelector(System.String)">
<summary>
Finds all elements matching the specified CSS selector.
</summary>
<param name="cssSelector">The CSS selector to match.</param>
<returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> containing all
<see cref="T:OpenQA.Selenium.IWebElement">IWebElements</see> matching the criteria.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.GetScreenshot">
<summary>
Gets a <see cref="T:OpenQA.Selenium.Screenshot" /> object representing the image of this element on the screen.
</summary>
<returns>A <see cref="T:OpenQA.Selenium.Screenshot" /> object containing the image.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.GetHashCode">
<summary>
Method to get the hash code of the element
</summary>
<returns>Integer of the hash code for the element</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.Equals(System.Object)">
<summary>
Compares if two elements are equal
</summary>
<param name="obj">Object to compare against</param>
<returns>A boolean if it is equal or not</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.FindElement(System.String,System.String)">
<summary>
Finds a child element matching the given mechanism and value.
</summary>
<param name="mechanism">The mechanism by which to find the element.</param>
<param name="value">The value to use to search for the element.</param>
<returns>The first <see cref="T:OpenQA.Selenium.IWebElement" /> matching the given criteria.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.FindElements(System.String,System.String)">
<summary>
Finds all child elements matching the given mechanism and value.
</summary>
<param name="mechanism">The mechanism by which to find the elements.</param>
<param name="value">The value to use to search for the elements.</param>
<returns>A collection of all of the <see cref="T:OpenQA.Selenium.IWebElement">IWebElements</see> matching the given criteria.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebElement.Execute(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
Executes a command on this element using the specified parameters.
</summary>
<param name="commandToExecute">The <see cref="T:OpenQA.Selenium.Remote.DriverCommand" /> to execute against this element.</param>
<param name="parameters">A <see cref="T:System.Collections.Generic.Dictionary`2" /> containing names and values of the parameters for the command.</param>
<returns>The <see cref="T:OpenQA.Selenium.Remote.Response" /> object containing the result of the command execution.</returns>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebElement.WrappedDriver">
<summary>
Gets the <see cref="T:OpenQA.Selenium.IWebDriver" /> used to find this element.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebElement.TagName">
<summary>
Gets the tag name of this element.
</summary>
<remarks>
The <see cref="P:OpenQA.Selenium.Remote.RemoteWebElement.TagName" /> property returns the tag name of the
element, not the value of the name attribute. For example, it will return
"input" for an element specified by the HTML markup &lt;input name="foo" /&gt;.
</remarks>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebElement.Text">
<summary>
Gets the innerText of this element, without any leading or trailing whitespace,
and with other whitespace collapsed.
</summary>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebElement.Enabled">
<summary>
Gets a value indicating whether or not this element is enabled.
</summary>
<remarks>The <see cref="P:OpenQA.Selenium.Remote.RemoteWebElement.Enabled" /> property will generally
return <see langword="true" /> for everything except explicitly disabled input elements.</remarks>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebElement.Selected">
<summary>
Gets a value indicating whether or not this element is selected.
</summary>
<remarks>This operation only applies to input elements such as checkboxes,
options in a select element and radio buttons.</remarks>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebElement.Location">
<summary>
Gets a <see cref="T:System.Drawing.Point" /> object containing the coordinates of the upper-left corner
of this element relative to the upper-left corner of the page.
</summary>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebElement.Size">
<summary>
Gets a <see cref="P:OpenQA.Selenium.Remote.RemoteWebElement.Size" /> object containing the height and width of this element.
</summary>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebElement.Displayed">
<summary>
Gets a value indicating whether or not this element is displayed.
</summary>
<remarks>The <see cref="P:OpenQA.Selenium.Remote.RemoteWebElement.Displayed" /> property avoids the problem
of having to parse an element's "style" attribute to determine
visibility of an element.</remarks>
<exception cref="T:OpenQA.Selenium.StaleElementReferenceException">Thrown when the target element is no longer valid in the document DOM.</exception>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebElement.LocationOnScreenOnceScrolledIntoView">
<summary>
Gets the point where the element would be when scrolled into view.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebElement.Coordinates">
<summary>
Gets the coordinates identifying the location of this element using
various frames of reference.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebElement.InternalElementId">
<summary>
Gets the ID of the element.
</summary>
<remarks>This property is internal to the WebDriver instance, and is
not intended to be used in your code. The element's ID has no meaning
outside of internal WebDriver usage, so it would be improper to scope
it as public. However, both subclasses of <see cref="T:OpenQA.Selenium.Remote.RemoteWebElement" />
and the parent driver hosting the element have a need to access the
internal element ID. Therefore, we have two properties returning the
same value, one scoped as internal, the other as protected.</remarks>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebElement.Id">
<summary>
Gets the ID of the element
</summary>
<remarks>This property is internal to the WebDriver instance, and is
not intended to be used in your code. The element's ID has no meaning
outside of internal WebDriver usage, so it would be improper to scope
it as public. However, both subclasses of <see cref="T:OpenQA.Selenium.Remote.RemoteWebElement" />
and the parent driver hosting the element have a need to access the
internal element ID. Therefore, we have two properties returning the
same value, one scoped as internal, the other as protected.</remarks>
</member>
<member name="T:OpenQA.Selenium.Chrome.ChromeWebElement">
<summary>
Provides a mechanism to get elements off the page for test
</summary>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeWebElement.#ctor(OpenQA.Selenium.Chrome.ChromeDriver,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeWebElement" /> class.
</summary>
<param name="parent">Driver in use</param>
<param name="elementId">Id of the element</param>
</member>
<member name="T:OpenQA.Selenium.Edge.EdgeDriver">
<summary>
Provides a mechanism to write tests against Edge
</summary>
</member>
<member name="M:OpenQA.Selenium.Edge.EdgeDriver.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Edge.EdgeDriver" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.Edge.EdgeDriver.#ctor(OpenQA.Selenium.Edge.EdgeOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Edge.EdgeDriver" /> class using the specified options.
</summary>
<param name="options">The <see cref="T:OpenQA.Selenium.Edge.EdgeOptions" /> to be used with the Edge driver.</param>
</member>
<member name="M:OpenQA.Selenium.Edge.EdgeDriver.#ctor(OpenQA.Selenium.Edge.EdgeDriverService)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Edge.EdgeDriver" /> class using the specified driver service.
</summary>
<param name="service">The <see cref="T:OpenQA.Selenium.Edge.EdgeDriverService" /> used to initialize the driver.</param>
</member>
<member name="M:OpenQA.Selenium.Edge.EdgeDriver.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Edge.EdgeDriver" /> class using the specified path
to the directory containing EdgeDriver.exe.
</summary>
<param name="edgeDriverDirectory">The full path to the directory containing EdgeDriver.exe.</param>
</member>
<member name="M:OpenQA.Selenium.Edge.EdgeDriver.#ctor(System.String,OpenQA.Selenium.Edge.EdgeOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Edge.EdgeDriver" /> class using the specified path
to the directory containing EdgeDriver.exe and options.
</summary>
<param name="edgeDriverDirectory">The full path to the directory containing EdgeDriver.exe.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.Edge.EdgeOptions" /> to be used with the Edge driver.</param>
</member>
<member name="M:OpenQA.Selenium.Edge.EdgeDriver.#ctor(System.String,OpenQA.Selenium.Edge.EdgeOptions,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Edge.EdgeDriver" /> class using the specified path
to the directory containing EdgeDriver.exe, options, and command timeout.
</summary>
<param name="edgeDriverDirectory">The full path to the directory containing EdgeDriver.exe.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.Edge.EdgeOptions" /> to be used with the Edge driver.</param>
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
</member>
<member name="M:OpenQA.Selenium.Edge.EdgeDriver.#ctor(OpenQA.Selenium.Edge.EdgeDriverService,OpenQA.Selenium.Edge.EdgeOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Edge.EdgeDriver" /> class using the specified
<see cref="T:OpenQA.Selenium.Edge.EdgeDriverService" /> and options.
</summary>
<param name="service">The <see cref="T:OpenQA.Selenium.Edge.EdgeDriverService" /> to use.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.Edge.EdgeOptions" /> used to initialize the driver.</param>
</member>
<member name="M:OpenQA.Selenium.Edge.EdgeDriver.#ctor(OpenQA.Selenium.Edge.EdgeDriverService,OpenQA.Selenium.Edge.EdgeOptions,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Edge.EdgeDriver" /> class using the specified <see cref="T:OpenQA.Selenium.Edge.EdgeDriverService" />.
</summary>
<param name="service">The <see cref="T:OpenQA.Selenium.Edge.EdgeDriverService" /> to use.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.Edge.EdgeOptions" /> to be used with the Edge driver.</param>
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
</member>
<member name="T:OpenQA.Selenium.Edge.EdgeDriverService">
<summary>
Exposes the service provided by the native MicrosoftWebDriver executable.
</summary>
</member>
<member name="M:OpenQA.Selenium.Edge.EdgeDriverService.#ctor(System.String,System.String,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Edge.EdgeDriverService" /> class.
</summary>
<param name="executablePath">The full path to the EdgeDriver executable.</param>
<param name="executableFileName">The file name of the EdgeDriver executable.</param>
<param name="port">The port on which the EdgeDriver executable should listen.</param>
</member>
<member name="M:OpenQA.Selenium.Edge.EdgeDriverService.CreateDefaultService">
<summary>
Creates a default instance of the EdgeDriverService.
</summary>
<returns>A EdgeDriverService that implements default settings.</returns>
</member>
<member name="M:OpenQA.Selenium.Edge.EdgeDriverService.CreateDefaultService(System.String)">
<summary>
Creates a default instance of the EdgeDriverService using a specified path to the EdgeDriver executable.
</summary>
<param name="driverPath">The directory containing the EdgeDriver executable.</param>
<returns>A EdgeDriverService using a random port.</returns>
</member>
<member name="M:OpenQA.Selenium.Edge.EdgeDriverService.CreateDefaultService(System.String,System.String)">
<summary>
Creates a default instance of the EdgeDriverService using a specified path to the EdgeDriver executable with the given name.
</summary>
<param name="driverPath">The directory containing the EdgeDriver executable.</param>
<param name="driverExecutableFileName">The name of the EdgeDriver executable file.</param>
<returns>A EdgeDriverService using a random port.</returns>
</member>
<member name="M:OpenQA.Selenium.Edge.EdgeDriverService.CreateDefaultService(System.String,System.String,System.Int32)">
<summary>
Creates a default instance of the EdgeDriverService using a specified path to the EdgeDriver executable with the given name and listening port.
</summary>
<param name="driverPath">The directory containing the EdgeDriver executable.</param>
<param name="driverExecutableFileName">The name of the EdgeDriver executable file</param>
<param name="port">The port number on which the driver will listen</param>
<returns>A EdgeDriverService using the specified port.</returns>
</member>
<member name="P:OpenQA.Selenium.Edge.EdgeDriverService.Host">
<summary>
Gets or sets the value of the host adapter on which the Edge driver service should listen for connections.
</summary>
</member>
<member name="P:OpenQA.Selenium.Edge.EdgeDriverService.Package">
<summary>
Gets or sets the value of the package the Edge driver service will launch and automate.
</summary>
</member>
<member name="P:OpenQA.Selenium.Edge.EdgeDriverService.UseVerboseLogging">
<summary>
Gets or sets a value indicating whether the service should use verbose logging.
</summary>
</member>
<member name="P:OpenQA.Selenium.Edge.EdgeDriverService.CommandLineArguments">
<summary>
Gets the command-line arguments for the driver service.
</summary>
</member>
<member name="T:OpenQA.Selenium.Edge.EdgePageLoadStrategy">
<summary>
Specifies the behavior of waiting for page loads in the Edge driver.
</summary>
</member>
<member name="F:OpenQA.Selenium.Edge.EdgePageLoadStrategy.Default">
<summary>
Indicates the behavior is not set.
</summary>
</member>
<member name="F:OpenQA.Selenium.Edge.EdgePageLoadStrategy.Normal">
<summary>
Waits for pages to load and ready state to be 'complete'.
</summary>
</member>
<member name="F:OpenQA.Selenium.Edge.EdgePageLoadStrategy.Eager">
<summary>
Waits for pages to load and for ready state to be 'interactive' or 'complete'.
</summary>
</member>
<member name="F:OpenQA.Selenium.Edge.EdgePageLoadStrategy.None">
<summary>
Does not wait for pages to load, returning immediately.
</summary>
</member>
<member name="T:OpenQA.Selenium.Edge.EdgeOptions">
<summary>
Class to manage options specific to <see cref="T:OpenQA.Selenium.Edge.EdgeDriver" /></summary>
<example>
<code>
EdgeOptions options = new EdgeOptions();
</code>
<para>
</para>
<para>For use with EdgeDriver:</para>
<para>
</para>
<code>
EdgeDriver driver = new EdgeDriver(options);
</code>
<para>
</para>
<para>For use with RemoteWebDriver:</para>
<para>
</para>
<code>
RemoteWebDriver driver = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), options.ToCapabilities());
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Edge.EdgeOptions.AddAdditionalCapability(System.String,System.Object)">
<summary>
Provides a means to add additional capabilities not yet added as type safe options
for the Edge driver.
</summary>
<param name="capabilityName">The name of the capability to add.</param>
<param name="capabilityValue">The value of the capability to add.</param>
<exception cref="T:System.ArgumentException">
thrown when attempting to add a capability for which there is already a type safe option, or
when <paramref name="capabilityName" /> is <see langword="null" /> or the empty string.
</exception>
<remarks>Calling <see cref="M:OpenQA.Selenium.Edge.EdgeOptions.AddAdditionalCapability(System.String,System.Object)" /> where <paramref name="capabilityName" />
has already been added will overwrite the existing value with the new value in <paramref name="capabilityValue" /></remarks>
</member>
<member name="M:OpenQA.Selenium.Edge.EdgeOptions.ToCapabilities">
<summary>
Returns DesiredCapabilities for Edge with these options included as
capabilities. This copies the options. Further changes will not be
reflected in the returned capabilities.
</summary>
<returns>The DesiredCapabilities for Edge with these options.</returns>
</member>
<member name="P:OpenQA.Selenium.Edge.EdgeOptions.PageLoadStrategy">
<summary>
Gets or sets the value for describing how the browser is to wait for pages to load in the Edge driver.
Defaults to <see cref="F:OpenQA.Selenium.Edge.EdgePageLoadStrategy.Default" />.
</summary>
</member>
<member name="T:OpenQA.Selenium.Edge.EdgeWebElement">
<summary>
Provides a mechanism to get elements off the page for test
</summary>
</member>
<member name="M:OpenQA.Selenium.Edge.EdgeWebElement.#ctor(OpenQA.Selenium.Edge.EdgeDriver,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Edge.EdgeWebElement" /> class
</summary>
<param name="parent">Driver in use</param>
<param name="elementId">Id of the element</param>
</member>
<member name="T:OpenQA.Selenium.Firefox.FirefoxBinary">
<summary>
Represents the binary associated with Firefox.
</summary>
<remarks>The <see cref="T:OpenQA.Selenium.Firefox.FirefoxBinary" /> class is responsible for instantiating the
Firefox process, and the operating system environment in which it runs.</remarks>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxBinary.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.FirefoxBinary" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxBinary.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.FirefoxBinary" /> class located at a specific file location.
</summary>
<param name="pathToFirefoxBinary">Full path and file name to the Firefox executable.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxBinary.StartProfile(OpenQA.Selenium.Firefox.FirefoxProfile,System.String[])">
<summary>
Starts Firefox using the specified profile and command-line arguments.
</summary>
<param name="profile">The <see cref="T:OpenQA.Selenium.Firefox.FirefoxProfile" /> to use with this instance of Firefox.</param>
<param name="commandLineArguments">The command-line arguments to use in starting Firefox.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxBinary.SetEnvironmentProperty(System.String,System.String)">
<summary>
Sets a variable to be used in the Firefox execution environment.
</summary>
<param name="propertyName">The name of the environment variable to set.</param>
<param name="value">The value of the environment variable to set.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxBinary.WaitForProcessExit">
<summary>
Waits for the process to complete execution.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxBinary.Dispose">
<summary>
Releases all resources used by the <see cref="T:OpenQA.Selenium.Firefox.FirefoxBinary" />.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxBinary.ToString">
<summary>
Returns a <see cref="T:System.String">String</see> that represents the current <see cref="T:System.Object">Object</see>.
</summary>
<returns>A <see cref="T:System.String">String</see> that represents the current <see cref="T:System.Object">Object</see>.</returns>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxBinary.StartFirefoxProcess">
<summary>
Starts the Firefox process.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxBinary.Dispose(System.Boolean)">
<summary>
Releases the unmanaged resources used by the <see cref="T:OpenQA.Selenium.Firefox.FirefoxBinary" /> and optionally
releases the managed resources.
</summary>
<param name="disposing">
<see langword="true" /> to release managed and resources;
<see langword="false" /> to only release unmanaged resources.</param>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxBinary.Timeout">
<summary>
Gets or sets the timeout to wait for Firefox to be available for command execution.
</summary>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxBinary.BinaryExecutable">
<summary>
Gets the <see cref="T:OpenQA.Selenium.Firefox.Internal.Executable" /> associated with this <see cref="T:OpenQA.Selenium.Firefox.FirefoxBinary" />.
</summary>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxBinary.IsOnLinux">
<summary>
Gets a value indicating whether the current operating system is Linux.
</summary>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxBinary.ExtraEnvironmentVariables">
<summary>
Gets a <see cref="T:System.Collections.Generic.Dictionary`2" /> containing string key-value pairs
representing any operating system environment variables beyond the defaults.
</summary>
</member>
<member name="T:OpenQA.Selenium.Firefox.FirefoxDriver">
<summary>
Provides a way to access Firefox to run tests.
</summary>
<remarks>
When the FirefoxDriver object has been instantiated the browser will load. The test can then navigate to the URL under test and
start your test.
<para>
In the case of the FirefoxDriver, you can specify a named profile to be used, or you can let the
driver create a temporary, anonymous profile. A custom extension allowing the driver to communicate
to the browser will be installed into the profile.
</para></remarks>
<example>
<code>
[TestFixture]
public class Testing
{
private IWebDriver driver;
<para></para>
[SetUp]
public void SetUp()
{
driver = new FirefoxDriver();
}
<para></para>
[Test]
public void TestGoogle()
{
driver.Navigate().GoToUrl("http://www.google.co.uk");
/*
* Rest of the test
*/
}
<para></para>
[TearDown]
public void TearDown()
{
driver.Quit();
}
}
</code>
</example>
</member>
<member name="F:OpenQA.Selenium.Firefox.FirefoxDriver.ProfileCapabilityName">
<summary>
The name of the ICapabilities setting to use to define a custom Firefox profile.
</summary>
</member>
<member name="F:OpenQA.Selenium.Firefox.FirefoxDriver.BinaryCapabilityName">
<summary>
The name of the ICapabilities setting to use to define a custom location for the
Firefox executable.
</summary>
</member>
<member name="F:OpenQA.Selenium.Firefox.FirefoxDriver.DefaultPort">
<summary>
The default port on which to communicate with the Firefox extension.
</summary>
</member>
<member name="F:OpenQA.Selenium.Firefox.FirefoxDriver.DefaultEnableNativeEvents">
<summary>
Indicates whether native events is enabled by default for this platform.
</summary>
</member>
<member name="F:OpenQA.Selenium.Firefox.FirefoxDriver.AcceptUntrustedCertificates">
<summary>
Indicates whether the driver will accept untrusted SSL certificates.
</summary>
</member>
<member name="F:OpenQA.Selenium.Firefox.FirefoxDriver.AssumeUntrustedCertificateIssuer">
<summary>
Indicates whether the driver assume the issuer of untrusted certificates is untrusted.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriver.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.FirefoxDriver" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriver.#ctor(OpenQA.Selenium.Firefox.FirefoxProfile)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.FirefoxDriver" /> class for a given profile.
</summary>
<param name="profile">A <see cref="T:OpenQA.Selenium.Firefox.FirefoxProfile" /> object representing the profile settings
to be used in starting Firefox.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriver.#ctor(OpenQA.Selenium.ICapabilities)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.FirefoxDriver" /> class for a given set of capabilities.
</summary>
<param name="capabilities">The <see cref="T:OpenQA.Selenium.ICapabilities" /> object containing the desired
capabilities of this FirefoxDriver.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriver.#ctor(OpenQA.Selenium.Firefox.FirefoxBinary,OpenQA.Selenium.Firefox.FirefoxProfile)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.FirefoxDriver" /> class for a given profile and binary environment.
</summary>
<param name="binary">A <see cref="T:OpenQA.Selenium.Firefox.FirefoxBinary" /> object representing the operating system
environmental settings used when running Firefox.</param>
<param name="profile">A <see cref="T:OpenQA.Selenium.Firefox.FirefoxProfile" /> object representing the profile settings
to be used in starting Firefox.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriver.#ctor(OpenQA.Selenium.Firefox.FirefoxBinary,OpenQA.Selenium.Firefox.FirefoxProfile,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.FirefoxDriver" /> class for a given profile, binary environment, and timeout value.
</summary>
<param name="binary">A <see cref="T:OpenQA.Selenium.Firefox.FirefoxBinary" /> object representing the operating system
environmental settings used when running Firefox.</param>
<param name="profile">A <see cref="T:OpenQA.Selenium.Firefox.FirefoxProfile" /> object representing the profile settings
to be used in starting Firefox.</param>
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriver.#ctor(OpenQA.Selenium.Firefox.FirefoxOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.FirefoxDriver" /> class using the specified options. Uses the Mozilla-provided Marionette driver implementation.
</summary>
<param name="options">The <see cref="T:OpenQA.Selenium.Firefox.FirefoxOptions" /> to be used with the Firefox driver.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriver.#ctor(OpenQA.Selenium.Firefox.FirefoxDriverService)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.FirefoxDriver" /> class using the specified driver service. Uses the Mozilla-provided Marionette driver implementation.
</summary>
<param name="service">The <see cref="T:OpenQA.Selenium.Firefox.FirefoxDriverService" /> used to initialize the driver.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriver.#ctor(OpenQA.Selenium.Firefox.FirefoxDriverService,OpenQA.Selenium.Firefox.FirefoxOptions,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.FirefoxDriver" /> class using the specified options, driver service, and timeout. Uses the Mozilla-provided Marionette driver implementation.
</summary>
<param name="service">The <see cref="T:OpenQA.Selenium.Firefox.FirefoxDriverService" /> to use.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.Firefox.FirefoxOptions" /> to be used with the Firefox driver.</param>
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriver.PrepareEnvironment">
<summary>
In derived classes, the <see cref="M:OpenQA.Selenium.Firefox.FirefoxDriver.PrepareEnvironment" /> method prepares the environment for test execution.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriver.CreateElement(System.String)">
<summary>
Creates a <see cref="T:OpenQA.Selenium.Remote.RemoteWebElement" /> with the specified ID.
</summary>
<param name="elementId">The ID of this element.</param>
<returns>A <see cref="T:OpenQA.Selenium.Remote.RemoteWebElement" /> with the specified ID. For the FirefoxDriver this will be a <see cref="T:OpenQA.Selenium.Firefox.FirefoxWebElement" />.</returns>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxDriver.FileDetector">
<summary>
Gets or sets the <see cref="T:OpenQA.Selenium.IFileDetector" /> responsible for detecting
sequences of keystrokes representing file paths and names.
</summary>
<remarks>The Firefox driver does not allow a file detector to be set,
as the server component of the Firefox driver only allows uploads from
the local computer environment. Attempting to set this property has no
effect, but does not throw an exception. If you are attempting to run
the Firefox driver remotely, use <see cref="T:OpenQA.Selenium.Remote.RemoteWebDriver" /> in
conjunction with a standalone WebDriver server.</remarks>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxDriver.IsMarionette">
<summary>
Gets a value indicating whether the Firefox driver instance uses
Mozilla's Marionette implementation. This is a temporary property
and will be removed when Marionette is available for the release
channel of Firefox.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.ICommandExecutor">
<summary>
Provides a way to send commands to the remote server
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.ICommandExecutor.Execute(OpenQA.Selenium.Remote.Command)">
<summary>
Executes a command
</summary>
<param name="commandToExecute">The command you wish to execute</param>
<returns>A response from the browser</returns>
</member>
<member name="P:OpenQA.Selenium.Remote.ICommandExecutor.CommandInfoRepository">
<summary>
Gets the repository of objects containin information about commands.
</summary>
</member>
<member name="T:OpenQA.Selenium.Firefox.FirefoxDriverCommandExecutor">
<summary>
Provides a way of executing Commands using the FirefoxDriver.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriverCommandExecutor.#ctor(OpenQA.Selenium.Firefox.FirefoxBinary,OpenQA.Selenium.Firefox.FirefoxProfile,System.String,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.FirefoxDriverCommandExecutor" /> class.
</summary>
<param name="binary">The <see cref="T:OpenQA.Selenium.Firefox.FirefoxBinary" /> on which to make the connection.</param>
<param name="profile">The <see cref="T:OpenQA.Selenium.Firefox.FirefoxProfile" /> creating the connection.</param>
<param name="host">The name of the host on which to connect to the Firefox extension (usually "localhost").</param>
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriverCommandExecutor.Execute(OpenQA.Selenium.Remote.Command)">
<summary>
Executes a command
</summary>
<param name="commandToExecute">The command you wish to execute</param>
<returns>A response from the browser</returns>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriverCommandExecutor.Dispose">
<summary>
Releases all resources used by the <see cref="T:OpenQA.Selenium.Firefox.FirefoxDriverCommandExecutor" />.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriverCommandExecutor.Dispose(System.Boolean)">
<summary>
Releases the unmanaged resources used by the <see cref="T:OpenQA.Selenium.Firefox.FirefoxDriverCommandExecutor" /> and
optionally releases the managed resources.
</summary>
<param name="disposing">
<see langword="true" /> to release managed and resources;
<see langword="false" /> to only release unmanaged resources.</param>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxDriverCommandExecutor.CommandInfoRepository">
<summary>
Gets the repository of objects containin information about commands.
</summary>
</member>
<member name="T:OpenQA.Selenium.Firefox.FirefoxDriverLogLevel">
<summary>
Represents the valid values of logging levels available with the Firefox driver (geckodriver.exe).
</summary>
</member>
<member name="F:OpenQA.Selenium.Firefox.FirefoxDriverLogLevel.Trace">
<summary>
Represents the Trace value, the most detailed logging level available.
</summary>
</member>
<member name="F:OpenQA.Selenium.Firefox.FirefoxDriverLogLevel.Debug">
<summary>
Represents the Debug value
</summary>
</member>
<member name="F:OpenQA.Selenium.Firefox.FirefoxDriverLogLevel.Config">
<summary>
Represents the Config value
</summary>
</member>
<member name="F:OpenQA.Selenium.Firefox.FirefoxDriverLogLevel.Info">
<summary>
Represents the Info value
</summary>
</member>
<member name="F:OpenQA.Selenium.Firefox.FirefoxDriverLogLevel.Warn">
<summary>
Represents the Warn value
</summary>
</member>
<member name="F:OpenQA.Selenium.Firefox.FirefoxDriverLogLevel.Error">
<summary>
Represents the Error value
</summary>
</member>
<member name="F:OpenQA.Selenium.Firefox.FirefoxDriverLogLevel.Fatal">
<summary>
Represents the Fatal value, the least detailed logging level available.
</summary>
</member>
<member name="F:OpenQA.Selenium.Firefox.FirefoxDriverLogLevel.Default">
<summary>
Represents that the logging value is unspecified, and should be the default level.
</summary>
</member>
<member name="T:OpenQA.Selenium.Firefox.FirefoxDriverServer">
<summary>
Provides methods for launching Firefox with the WebDriver extension installed.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriverServer.#ctor(OpenQA.Selenium.Firefox.FirefoxBinary,OpenQA.Selenium.Firefox.FirefoxProfile,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.FirefoxDriverServer" /> class.
</summary>
<param name="binary">The <see cref="T:OpenQA.Selenium.Firefox.FirefoxBinary" /> on which to make the connection.</param>
<param name="profile">The <see cref="T:OpenQA.Selenium.Firefox.FirefoxProfile" /> creating the connection.</param>
<param name="host">The name of the host on which to connect to the Firefox extension (usually "localhost").</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriverServer.Start">
<summary>
Starts the server.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriverServer.Dispose">
<summary>
Releases all resources used by the <see cref="T:OpenQA.Selenium.Firefox.FirefoxDriverServer" />.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriverServer.Dispose(System.Boolean)">
<summary>
Releases the unmanaged resources used by the <see cref="T:OpenQA.Selenium.Firefox.FirefoxDriverServer" /> and optionally
releases the managed resources.
</summary>
<param name="disposing">
<see langword="true" /> to release managed and resources;
<see langword="false" /> to only release unmanaged resources.</param>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxDriverServer.ExtensionUri">
<summary>
Gets the <see cref="T:System.Uri" /> for communicating with this server.
</summary>
</member>
<member name="T:OpenQA.Selenium.Firefox.FirefoxDriverService">
<summary>
Exposes the service provided by the native FirefoxDriver executable.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriverService.#ctor(System.String,System.String,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.FirefoxDriverService" /> class.
</summary>
<param name="executablePath">The full path to the Firefox driver executable.</param>
<param name="executableFileName">The file name of the Firefox driver executable.</param>
<param name="port">The port on which the Firefox driver executable should listen.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriverService.CreateDefaultService">
<summary>
Creates a default instance of the FirefoxDriverService.
</summary>
<returns>A FirefoxDriverService that implements default settings.</returns>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriverService.CreateDefaultService(System.String)">
<summary>
Creates a default instance of the FirefoxDriverService using a specified path to the Firefox driver executable.
</summary>
<param name="driverPath">The directory containing the Firefox driver executable.</param>
<returns>A FirefoxDriverService using a random port.</returns>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriverService.CreateDefaultService(System.String,System.String)">
<summary>
Creates a default instance of the FirefoxDriverService using a specified path to the Firefox driver executable with the given name.
</summary>
<param name="driverPath">The directory containing the Firefox driver executable.</param>
<param name="driverExecutableFileName">The name of th Firefox driver executable file.</param>
<returns>A FirefoxDriverService using a random port.</returns>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxDriverService.FirefoxDriverServiceFileName">
<summary>
Returns the Firefox driver filename for the currently running platform
</summary>
<returns>The file name of the Chrome driver service executable.</returns>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxDriverService.FirefoxBinaryPath">
<summary>
Gets or sets the location of the Firefox binary executable.
</summary>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxDriverService.BrowserCommunicationPort">
<summary>
Gets or sets the port used by the driver executable to communicate with the browser.
</summary>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxDriverService.Host">
<summary>
Gets or sets the value of the IP address of the host adapter on which the
service should listen for connections.
</summary>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxDriverService.ConnectToRunningBrowser">
<summary>
Gets or sets a value indicating whether to connect to an already-running
instance of Firefox.
</summary>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxDriverService.InitializationTimeout">
<summary>
Gets a value indicating the time to wait for an initial connection before timing out.
</summary>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxDriverService.TerminationTimeout">
<summary>
Gets a value indicating the time to wait for the service to terminate before forcing it to terminate.
</summary>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxDriverService.IsInitialized">
<summary>
Gets a value indicating whether the service is responding to HTTP requests.
</summary>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxDriverService.CommandLineArguments">
<summary>
Gets the command-line arguments for the driver service.
</summary>
</member>
<member name="T:OpenQA.Selenium.Firefox.FirefoxExtension">
<summary>
Provides the ability to install extensions into a <see cref="T:OpenQA.Selenium.Firefox.FirefoxProfile" />.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxExtension.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.FirefoxExtension" /> class.
</summary>
<param name="fileName">The name of the file containing the Firefox extension.</param>
<remarks>WebDriver attempts to resolve the <paramref name="fileName" /> parameter
by looking first for the specified file in the directory of the calling assembly,
then using the full path to the file, if a full path is provided.</remarks>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxExtension.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.FirefoxExtension" /> class.
</summary>
<param name="fileName">The name of the file containing the Firefox extension.</param>
<param name="resourceId">The ID of the resource within the assembly containing the extension
if the file is not present in the file system.</param>
<remarks>WebDriver attempts to resolve the <paramref name="fileName" /> parameter
by looking first for the specified file in the directory of the calling assembly,
then using the full path to the file, if a full path is provided. If the file is
not found in the file system, WebDriver attempts to locate a resource in the
executing assembly with the name specified by the <paramref name="resourceId" />
parameter.</remarks>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxExtension.Install(System.String)">
<summary>
Installs the extension into a profile directory.
</summary>
<param name="profileDirectory">The Firefox profile directory into which to install the extension.</param>
</member>
<member name="T:OpenQA.Selenium.Firefox.FirefoxOptions">
<summary>
Class to manage options specific to <see cref="T:OpenQA.Selenium.Firefox.FirefoxDriver" /></summary>
<remarks>
Used with the marionette executable wires.exe.
</remarks>
<example>
<code>
FirefoxOptions options = new FirefoxOptions();
</code>
<para>
</para>
<para>For use with FirefoxDriver:</para>
<para>
</para>
<code>
FirefoxDriver driver = new FirefoxDriver(options);
</code>
<para>
</para>
<para>For use with RemoteWebDriver:</para>
<para>
</para>
<code>
RemoteWebDriver driver = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), options.ToCapabilities());
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxOptions.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.FirefoxOptions" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxOptions.#ctor(OpenQA.Selenium.Firefox.FirefoxProfile,OpenQA.Selenium.Firefox.FirefoxBinary)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.FirefoxOptions" /> class for the given profile and binary.
</summary>
<param name="profile">The <see cref="T:OpenQA.Selenium.Firefox.FirefoxProfile" /> to use in the options.</param>
<param name="binary">The <see cref="T:OpenQA.Selenium.Firefox.FirefoxBinary" /> to use in the options.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxOptions.AddArgument(System.String)">
<summary>
Adds an argument to be used in launching the Firefox browser.
</summary>
<param name="argumentName">The argument to add.</param>
<remarks>Arguments must be preceeded by two dashes ("--").</remarks>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxOptions.AddArguments(System.String[])">
<summary>
Adds a list arguments to be used in launching the Firefox browser.
</summary>
<param name="argumentsToAdd">An array of arguments to add.</param>
<remarks>Each argument must be preceeded by two dashes ("--").</remarks>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxOptions.AddArguments(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Adds a list arguments to be used in launching the Firefox browser.
</summary>
<param name="argumentsToAdd">An array of arguments to add.</param>
<remarks>Each argument must be preceeded by two dashes ("--").</remarks>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxOptions.SetPreference(System.String,System.Boolean)">
<summary>
Sets a preference in the profile used by Firefox.
</summary>
<param name="preferenceName">Name of the preference to set.</param>
<param name="preferenceValue">Value of the preference to set.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxOptions.SetPreference(System.String,System.Int32)">
<summary>
Sets a preference in the profile used by Firefox.
</summary>
<param name="preferenceName">Name of the preference to set.</param>
<param name="preferenceValue">Value of the preference to set.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxOptions.SetPreference(System.String,System.Int64)">
<summary>
Sets a preference in the profile used by Firefox.
</summary>
<param name="preferenceName">Name of the preference to set.</param>
<param name="preferenceValue">Value of the preference to set.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxOptions.SetPreference(System.String,System.Double)">
<summary>
Sets a preference in the profile used by Firefox.
</summary>
<param name="preferenceName">Name of the preference to set.</param>
<param name="preferenceValue">Value of the preference to set.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxOptions.SetPreference(System.String,System.String)">
<summary>
Sets a preference in the profile used by Firefox.
</summary>
<param name="preferenceName">Name of the preference to set.</param>
<param name="preferenceValue">Value of the preference to set.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxOptions.AddAdditionalCapability(System.String,System.Object)">
<summary>
Provides a means to add additional capabilities not yet added as type safe options
for the Chrome driver.
</summary>
<param name="capabilityName">The name of the capability to add.</param>
<param name="capabilityValue">The value of the capability to add.</param>
<exception cref="T:System.ArgumentException">
thrown when attempting to add a capability for which there is already a type safe option, or
when <paramref name="capabilityName" /> is <see langword="null" /> or the empty string.
</exception>
<remarks>Calling <see cref="M:OpenQA.Selenium.Firefox.FirefoxOptions.AddAdditionalCapability(System.String,System.Object)" />
where <paramref name="capabilityName" /> has already been added will overwrite the
existing value with the new value in <paramref name="capabilityValue" />.
Also, by default, calling this method adds capabilities to the options object passed to
geckodriver.exe.</remarks>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxOptions.AddAdditionalCapability(System.String,System.Object,System.Boolean)">
<summary>
Provides a means to add additional capabilities not yet added as type safe options
for the Firefox driver.
</summary>
<param name="capabilityName">The name of the capability to add.</param>
<param name="capabilityValue">The value of the capability to add.</param>
<param name="isGlobalCapability">Indicates whether the capability is to be set as a global
capability for the driver instead of a Firefox-specific option.</param>
<exception cref="T:System.ArgumentException">
thrown when attempting to add a capability for which there is already a type safe option, or
when <paramref name="capabilityName" /> is <see langword="null" /> or the empty string.
</exception>
<remarks>Calling <see cref="M:OpenQA.Selenium.Firefox.FirefoxOptions.AddAdditionalCapability(System.String,System.Object,System.Boolean)" />
where <paramref name="capabilityName" /> has already been added will overwrite the
existing value with the new value in <paramref name="capabilityValue" /></remarks>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxOptions.ToCapabilities">
<summary>
Returns DesiredCapabilities for Firefox with these options included as
capabilities. This does not copy the options. Further changes will be
reflected in the returned capabilities.
</summary>
<returns>The DesiredCapabilities for Firefox with these options.</returns>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxOptions.UseLegacyImplementation">
<summary>
Gets or sets a value indicating whether to use the legacy driver implementation.
</summary>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxOptions.Profile">
<summary>
Gets or sets the <see cref="T:OpenQA.Selenium.Firefox.FirefoxProfile" /> object to be used with this instance.
</summary>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxOptions.BrowserExecutableLocation">
<summary>
Gets or sets the path and file name of the Firefox browser executable.
</summary>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxOptions.LogLevel">
<summary>
Gets or sets the logging level of the Firefox driver.
</summary>
</member>
<member name="T:OpenQA.Selenium.Firefox.FirefoxProfile">
<summary>
Provides the ability to edit the preferences associated with a Firefox profile.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxProfile.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.FirefoxProfile" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxProfile.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.FirefoxProfile" /> class using a
specific profile directory.
</summary>
<param name="profileDirectory">The directory containing the profile.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxProfile.#ctor(System.String,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.FirefoxProfile" /> class using a
specific profile directory.
</summary>
<param name="profileDirectory">The directory containing the profile.</param>
<param name="deleteSourceOnClean">Delete the source directory of the profile upon cleaning.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxProfile.FromBase64String(System.String)">
<summary>
Converts a base64-encoded string into a <see cref="T:OpenQA.Selenium.Firefox.FirefoxProfile" />.
</summary>
<param name="base64">The base64-encoded string containing the profile contents.</param>
<returns>The constructed <see cref="T:OpenQA.Selenium.Firefox.FirefoxProfile" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxProfile.AddExtension(System.String)">
<summary>
Adds a Firefox Extension to this profile
</summary>
<param name="extensionToInstall">The path to the new extension</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxProfile.SetPreference(System.String,System.String)">
<summary>
Sets a preference in the profile.
</summary>
<param name="name">The name of the preference to add.</param>
<param name="value">A <see cref="T:System.String" /> value to add to the profile.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxProfile.SetPreference(System.String,System.Int32)">
<summary>
Sets a preference in the profile.
</summary>
<param name="name">The name of the preference to add.</param>
<param name="value">A <see cref="T:System.Int32" /> value to add to the profile.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxProfile.SetPreference(System.String,System.Boolean)">
<summary>
Sets a preference in the profile.
</summary>
<param name="name">The name of the preference to add.</param>
<param name="value">A <see cref="T:System.Boolean" /> value to add to the profile.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxProfile.SetProxyPreferences(OpenQA.Selenium.Proxy)">
<summary>
Set proxy preferences for this profile.
</summary>
<param name="proxy">The <see cref="T:OpenQA.Selenium.Proxy" /> object defining the proxy
preferences for the profile.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxProfile.WriteToDisk">
<summary>
Writes this in-memory representation of a profile to disk.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxProfile.Clean">
<summary>
Cleans this Firefox profile.
</summary>
<remarks>If this profile is a named profile that existed prior to
launching Firefox, the <see cref="M:OpenQA.Selenium.Firefox.FirefoxProfile.Clean" /> method removes the WebDriver
Firefox extension. If the profile is an anonymous profile, the profile
is deleted.</remarks>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxProfile.ToBase64String">
<summary>
Converts the profile into a base64-encoded string.
</summary>
<returns>A base64-encoded string containing the contents of the profile.</returns>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxProfile.AddWebDriverExtension">
<summary>
Adds the WebDriver extension for Firefox to the profile.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxProfile.GenerateProfileDirectoryName">
<summary>
Generates a random directory name for the profile.
</summary>
<returns>A random directory name for the profile.</returns>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxProfile.DeleteLockFiles">
<summary>
Deletes the lock files for a profile.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxProfile.InstallExtensions">
<summary>
Installs all extensions in the profile in the directory on disk.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxProfile.DeleteExtensionsCache">
<summary>
Deletes the cache of extensions for this profile, if the cache exists.
</summary>
<remarks>If the extensions cache does not exist for this profile, the
<see cref="M:OpenQA.Selenium.Firefox.FirefoxProfile.DeleteExtensionsCache" /> method performs no operations, but
succeeds.</remarks>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxProfile.UpdateUserPreferences">
<summary>
Writes the user preferences to the profile.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxProfile.ReadExistingPreferences">
<summary>
Reads the existing preferences from the profile.
</summary>
<returns>A <see cref="T:System.Collections.Generic.Dictionary`2" />containing key-value pairs representing the preferences.</returns>
<remarks>Assumes that we only really care about the preferences, not the comments</remarks>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxProfile.SetManualProxyPreference(System.String,System.String)">
<summary>
Sets a preference for a manually specified proxy.
</summary>
<param name="key">The protocol for which to set the proxy.</param>
<param name="settingString">The setting for the proxy.</param>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxProfile.Port">
<summary>
Gets or sets the port on which the profile connects to the WebDriver extension.
</summary>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxProfile.ProfileDirectory">
<summary>
Gets the directory containing the profile.
</summary>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxProfile.DeleteAfterUse">
<summary>
Gets or sets a value indicating whether to delete this profile after use with
the <see cref="T:OpenQA.Selenium.Firefox.FirefoxDriver" />.
</summary>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxProfile.EnableNativeEvents">
<summary>
Gets or sets a value indicating whether native events are enabled.
</summary>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxProfile.AlwaysLoadNoFocusLibrary">
<summary>
Gets or sets a value indicating whether to always load the library for allowing Firefox
to execute commands without its window having focus.
</summary>
<remarks>The <see cref="P:OpenQA.Selenium.Firefox.FirefoxProfile.AlwaysLoadNoFocusLibrary" /> property is only used on Linux.</remarks>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxProfile.AcceptUntrustedCertificates">
<summary>
Gets or sets a value indicating whether Firefox should accept SSL certificates which have
expired, signed by an unknown authority or are generally untrusted. Set to true
by default.
</summary>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxProfile.AssumeUntrustedCertificateIssuer">
<summary>
Gets or sets a value indicating whether Firefox assume untrusted SSL certificates
come from an untrusted issuer or are self-signed. Set to true by default.
</summary>
<remarks>
<para>
Due to limitations within Firefox, it is easy to find out if a certificate has expired
or does not match the host it was served for, but hard to find out if the issuer of the
certificate is untrusted. By default, it is assumed that the certificates were not
issued from a trusted certificate authority.
</para>
<para>
If you receive an "untrusted site" prompt it Firefox when using a certificate that was
issued by valid issuer, but the certificate has expired or is being served served for
a different host (e.g. production certificate served in a testing environment) set this
to false.
</para>
</remarks>
</member>
<member name="T:OpenQA.Selenium.Firefox.FirefoxProfileManager">
<summary>
Allows the user to enumerate and access existing named Firefox profiles.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxProfileManager.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.FirefoxProfileManager" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxProfileManager.GetProfile(System.String)">
<summary>
Gets a <see cref="T:OpenQA.Selenium.Firefox.FirefoxProfile" /> with a given name.
</summary>
<param name="profileName">The name of the profile to get.</param>
<returns>A <see cref="T:OpenQA.Selenium.Firefox.FirefoxProfile" /> with a given name.
Returns <see langword="null" /> if no profile with the given name exists.</returns>
</member>
<member name="P:OpenQA.Selenium.Firefox.FirefoxProfileManager.ExistingProfiles">
<summary>
Gets a <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> containing <see cref="T:OpenQA.Selenium.Firefox.FirefoxProfile">FirefoxProfiles</see>
representing the existing named profiles for Firefox.
</summary>
</member>
<member name="T:OpenQA.Selenium.Firefox.FirefoxWebElement">
<summary>
Allows the user to control elements on a page in Firefox.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxWebElement.#ctor(OpenQA.Selenium.Firefox.FirefoxDriver,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.FirefoxWebElement" /> class.
</summary>
<param name="parentDriver">The <see cref="T:OpenQA.Selenium.Firefox.FirefoxDriver" /> instance hosting this element.</param>
<param name="id">The ID assigned to the element.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxWebElement.Equals(System.Object)">
<summary>
Determines whether two <see cref="T:OpenQA.Selenium.Firefox.FirefoxWebElement" /> instances are equal.
</summary>
<param name="obj">The <see cref="T:OpenQA.Selenium.Firefox.FirefoxWebElement" /> to compare with the current <see cref="T:OpenQA.Selenium.Firefox.FirefoxWebElement" />.</param>
<returns>
<see langword="true" /> if the specified <see cref="T:OpenQA.Selenium.Firefox.FirefoxWebElement" /> is equal to the
current <see cref="T:OpenQA.Selenium.Firefox.FirefoxWebElement" />; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Firefox.FirefoxWebElement.GetHashCode">
<summary>
Serves as a hash function for a <see cref="T:OpenQA.Selenium.Firefox.FirefoxWebElement" />.
</summary>
<returns>A hash code for the current <see cref="T:OpenQA.Selenium.Firefox.FirefoxWebElement" />.</returns>
</member>
<member name="T:OpenQA.Selenium.Firefox.Preferences">
<summary>
Represents the preferences used by a profile in Firefox.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.Preferences.#ctor(System.Collections.Generic.Dictionary{System.String,System.Object},System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.Preferences" /> class.
</summary>
<param name="defaultImmutablePreferences">A set of preferences that cannot be modified once set.</param>
<param name="defaultPreferences">A set of default preferences.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.Preferences.SetPreference(System.String,System.String)">
<summary>
Sets a preference.
</summary>
<param name="key">The name of the preference to set.</param>
<param name="value">A <see cref="T:System.String" /> value give the preference.</param>
<remarks>If the preference already exists in the currently-set list of preferences,
the value will be updated.</remarks>
</member>
<member name="M:OpenQA.Selenium.Firefox.Preferences.SetPreference(System.String,System.Int32)">
<summary>
Sets a preference.
</summary>
<param name="key">The name of the preference to set.</param>
<param name="value">A <see cref="T:System.Int32" /> value give the preference.</param>
<remarks>If the preference already exists in the currently-set list of preferences,
the value will be updated.</remarks>
</member>
<member name="M:OpenQA.Selenium.Firefox.Preferences.SetPreference(System.String,System.Boolean)">
<summary>
Sets a preference.
</summary>
<param name="key">The name of the preference to set.</param>
<param name="value">A <see cref="T:System.Boolean" /> value give the preference.</param>
<remarks>If the preference already exists in the currently-set list of preferences,
the value will be updated.</remarks>
</member>
<member name="M:OpenQA.Selenium.Firefox.Preferences.GetPreference(System.String)">
<summary>
Gets a preference from the list of preferences.
</summary>
<param name="preferenceName">The name of the preference to retrieve.</param>
<returns>The value of the preference, or an empty string if the preference is not set.</returns>
</member>
<member name="M:OpenQA.Selenium.Firefox.Preferences.AppendPreferences(System.Collections.Generic.Dictionary{System.String,System.String})">
<summary>
Appends this set of preferences to the specified set of preferences.
</summary>
<param name="preferencesToAdd">A dictionary containing the preferences to which to
append these values.</param>
<remarks>If the preference already exists in <paramref name="preferencesToAdd" />,
the value will be updated.</remarks>
</member>
<member name="M:OpenQA.Selenium.Firefox.Preferences.WriteToFile(System.String)">
<summary>
Writes the preferences to a file.
</summary>
<param name="filePath">The full path to the file to be written.</param>
</member>
<member name="T:OpenQA.Selenium.Firefox.Internal.Executable">
<summary>
Represents the executable file for Firefox.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.Internal.Executable.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.Internal.Executable" /> class.
</summary>
<param name="userSpecifiedBinaryPath">The path and file name to the Firefox executable.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.Internal.Executable.SetLibraryPath(System.Diagnostics.Process)">
<summary>
Sets the library path for the Firefox executable environment.
</summary>
<param name="builder">The <see cref="T:System.Diagnostics.Process" /> used to execute the binary.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.Internal.Executable.LocateFirefoxBinaryFromPlatform">
<summary>
Locates the Firefox binary by platform.
</summary>
<returns>The full path to the binary.</returns>
</member>
<member name="M:OpenQA.Selenium.Firefox.Internal.Executable.GetEnvironmentVariable(System.String,System.String)">
<summary>
Retrieves an environment variable
</summary>
<param name="name">Name of the variable.</param>
<param name="defaultValue">Default value of the variable.</param>
<returns>The value of the variable. If no variable with that name is set, returns the default.</returns>
</member>
<member name="M:OpenQA.Selenium.Firefox.Internal.Executable.GetLibraryPathPropertyName">
<summary>
Retrieves the platform specific environment property name which contains the library path.
</summary>
<returns>The platform specific environment property name which contains the library path.</returns>
</member>
<member name="M:OpenQA.Selenium.Firefox.Internal.Executable.FindBinary(System.String[])">
<summary>
Walk a PATH to locate binaries with a specified name. Binaries will be searched for in the
order they are provided.
</summary>
<param name="binaryNames">The binary names to search for.</param>
<returns>The first binary found matching that name.</returns>
</member>
<member name="P:OpenQA.Selenium.Firefox.Internal.Executable.ExecutablePath">
<summary>
Gets the full path to the executable.
</summary>
</member>
<member name="T:OpenQA.Selenium.Firefox.Internal.ILock">
<summary>
Defines the interface through which the mutex port for establishing communication
with the WebDriver extension can be locked.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.Internal.ILock.LockObject(System.Int64)">
<summary>
Locks the mutex port.
</summary>
<param name="timeoutInMilliseconds">The amount of time (in milliseconds) to wait for
the mutex port to become available.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.Internal.ILock.LockObject(System.TimeSpan)">
<summary>
Locks the mutex port.
</summary>
<param name="timeout">The <see cref="T:System.TimeSpan" /> describing the amount of time to wait for
the mutex port to become available.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.Internal.ILock.UnlockObject">
<summary>
Unlocks the mutex port.
</summary>
</member>
<member name="T:OpenQA.Selenium.Firefox.Internal.IniFileReader">
<summary>
Parses and reads an INI file.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.Internal.IniFileReader.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.Internal.IniFileReader" /> class.
</summary>
<param name="fileName">The full path to the .INI file to be read.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.Internal.IniFileReader.GetValue(System.String,System.String)">
<summary>
Gets a value from the .INI file.
</summary>
<param name="sectionName">The section in which to find the key-value pair.</param>
<param name="valueName">The key of the key-value pair.</param>
<returns>The value associated with the given section and key.</returns>
</member>
<member name="P:OpenQA.Selenium.Firefox.Internal.IniFileReader.SectionNames">
<summary>
Gets a <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> containing the names of the sections in the .INI file.
</summary>
</member>
<member name="T:OpenQA.Selenium.Firefox.Internal.SocketLock">
<summary>
Provides a mutex-like lock on a socket.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.Internal.SocketLock.#ctor(System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Firefox.Internal.SocketLock" /> class.
</summary>
<param name="lockPort">Port to use to acquire the lock.</param>
<remarks>The <see cref="T:OpenQA.Selenium.Firefox.Internal.SocketLock" /> class will attempt to acquire the
specified port number, and wait for it to become free.</remarks>
</member>
<member name="M:OpenQA.Selenium.Firefox.Internal.SocketLock.LockObject(System.TimeSpan)">
<summary>
Locks the mutex port.
</summary>
<param name="timeout">The <see cref="T:System.TimeSpan" /> describing the amount of time to wait for
the mutex port to become available.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.Internal.SocketLock.LockObject(System.Int64)">
<summary>
Locks the mutex port.
</summary>
<param name="timeoutInMilliseconds">The amount of time (in milliseconds) to wait for
the mutex port to become available.</param>
</member>
<member name="M:OpenQA.Selenium.Firefox.Internal.SocketLock.UnlockObject">
<summary>
Unlocks the mutex port.
</summary>
</member>
<member name="M:OpenQA.Selenium.Firefox.Internal.SocketLock.Dispose">
<summary>
Releases all resources associated with this <see cref="T:OpenQA.Selenium.Firefox.Internal.SocketLock" /></summary>
</member>
<member name="T:OpenQA.Selenium.Html5.AppCacheStatus">
<summary>
Represents the application cache status.
</summary>
</member>
<member name="F:OpenQA.Selenium.Html5.AppCacheStatus.Uncached">
<summary>
AppCache status is uncached
</summary>
</member>
<member name="F:OpenQA.Selenium.Html5.AppCacheStatus.Idle">
<summary>
AppCache status is idle
</summary>
</member>
<member name="F:OpenQA.Selenium.Html5.AppCacheStatus.Checking">
<summary>
AppCache status is checkint
</summary>
</member>
<member name="F:OpenQA.Selenium.Html5.AppCacheStatus.Downloading">
<summary>
AppCache status is downloading
</summary>
</member>
<member name="F:OpenQA.Selenium.Html5.AppCacheStatus.UpdateReady">
<summary>
AppCache status is updated-ready
</summary>
</member>
<member name="F:OpenQA.Selenium.Html5.AppCacheStatus.Obsolete">
<summary>
AppCache status is obsolete
</summary>
</member>
<member name="T:OpenQA.Selenium.Html5.IApplicationCache">
<summary>
Defines an interface allowing the user to access application cache status
</summary>
</member>
<member name="P:OpenQA.Selenium.Html5.IApplicationCache.Status">
<summary>
Gets the current state of the application cache.
</summary>
</member>
<member name="T:OpenQA.Selenium.Html5.ILocalStorage">
<summary>
Represents the local storage for the site currently opened in the browser.
Each site has its own separate storage area.
</summary>
</member>
<member name="M:OpenQA.Selenium.Html5.ILocalStorage.GetItem(System.String)">
<summary>
Returns value of the local storage given a key.
</summary>
<param name="key">key to for a local storage entry</param>
<returns>Value of the local storage entry as <see cref="T:System.String" /> given a key.</returns>
</member>
<member name="M:OpenQA.Selenium.Html5.ILocalStorage.KeySet">
<summary>
Returns the set of keys associated with local storage.
</summary>
<returns>Returns the set of keys associated with local storage as <see cref="T:System.Collections.Generic.HashSet`1" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Html5.ILocalStorage.SetItem(System.String,System.String)">
<summary>
Adds key/value pair to local storage.
</summary>
<param name="key">storage key</param>
<param name="value">storage value</param>
</member>
<member name="M:OpenQA.Selenium.Html5.ILocalStorage.RemoveItem(System.String)">
<summary>
Removes key/value pair from local storage.
</summary>
<param name="key">key to remove from storage</param>
<returns>Value from local storage as <see cref="T:System.String">string</see> for the given key.</returns>
</member>
<member name="M:OpenQA.Selenium.Html5.ILocalStorage.Clear">
<summary>
Clears local storage.
</summary>
</member>
<member name="P:OpenQA.Selenium.Html5.ILocalStorage.Count">
<summary>
Gets the number of items in local storage.
</summary>
</member>
<member name="T:OpenQA.Selenium.Html5.ILocationContext">
<summary>
Interface for location context
</summary>
</member>
<member name="P:OpenQA.Selenium.Html5.ILocationContext.PhysicalLocation">
<summary>
Gets or sets a value indicating the physical location of the browser.
</summary>
</member>
<member name="T:OpenQA.Selenium.Html5.ISessionStorage">
<summary>
Represents the session storage for the site currently opened in the browser.
Each site has its own separate storage area.
</summary>
</member>
<member name="M:OpenQA.Selenium.Html5.ISessionStorage.GetItem(System.String)">
<summary>
Returns value of the session storage given a key.
</summary>
<param name="key">key to for a session storage entry</param>
<returns>Value of the session storage entry as <see cref="T:System.String" /> given a key.</returns>
</member>
<member name="M:OpenQA.Selenium.Html5.ISessionStorage.KeySet">
<summary>
Returns the set of keys associated with session storage.
</summary>
<returns>Returns the set of keys associated with session storage as <see cref="T:System.Collections.Generic.HashSet`1" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Html5.ISessionStorage.SetItem(System.String,System.String)">
<summary>
Adds key/value pair to session storage.
</summary>
<param name="key">storage key</param>
<param name="value">storage value</param>
</member>
<member name="M:OpenQA.Selenium.Html5.ISessionStorage.RemoveItem(System.String)">
<summary>
Removes key/value pair from session storage.
</summary>
<param name="key">key to remove from storage</param>
<returns>Value from session storage as <see cref="T:System.String">string</see> for the given key.</returns>
</member>
<member name="M:OpenQA.Selenium.Html5.ISessionStorage.Clear">
<summary>
Clears local storage.
</summary>
</member>
<member name="P:OpenQA.Selenium.Html5.ISessionStorage.Count">
<summary>
Gets the number of items in session storage.
</summary>
</member>
<member name="T:OpenQA.Selenium.Html5.IWebStorage">
<summary>
Represents both local and session storage for the site currently opened in the browser.
</summary>
</member>
<member name="P:OpenQA.Selenium.Html5.IWebStorage.LocalStorage">
<summary>
Gets the local storage for the site currently opened in the browser.
</summary>
</member>
<member name="P:OpenQA.Selenium.Html5.IWebStorage.SessionStorage">
<summary>
Gets the session storage for the site currently opened in the browser.
</summary>
</member>
<member name="T:OpenQA.Selenium.Html5.Location">
<summary>
Represents the physical location of the browser.
</summary>
</member>
<member name="M:OpenQA.Selenium.Html5.Location.#ctor(System.Double,System.Double,System.Double)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Html5.Location" /> class.
</summary>
<param name="latitude">latitude for current location</param>
<param name="longitude">longitude for current location</param>
<param name="altitude">altitude for current location</param>
</member>
<member name="M:OpenQA.Selenium.Html5.Location.ToString">
<summary>
Retuns string represenation for current location.
</summary>
<returns>Returns <see cref="T:System.String">string</see> reprsentation for current location.</returns>
</member>
<member name="P:OpenQA.Selenium.Html5.Location.Latitude">
<summary>
Gets the latitude of the current location.
</summary>
</member>
<member name="P:OpenQA.Selenium.Html5.Location.Longitude">
<summary>
Gets the longitude of the current location.
</summary>
</member>
<member name="P:OpenQA.Selenium.Html5.Location.Altitude">
<summary>
Gets the altitude of the current location.
</summary>
</member>
<member name="T:OpenQA.Selenium.IE.InternetExplorerDriver">
<summary>
Provides a way to access Internet Explorer to run your tests by creating a InternetExplorerDriver instance
</summary>
<remarks>
When the WebDriver object has been instantiated the browser will load. The test can then navigate to the URL under test and
start your test.
</remarks>
<example>
<code>
[TestFixture]
public class Testing
{
private IWebDriver driver;
<para></para>
[SetUp]
public void SetUp()
{
driver = new InternetExplorerDriver();
}
<para></para>
[Test]
public void TestGoogle()
{
driver.Navigate().GoToUrl("http://www.google.co.uk");
/*
* Rest of the test
*/
}
<para></para>
[TearDown]
public void TearDown()
{
driver.Quit();
driver.Dispose();
}
}
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.IE.InternetExplorerDriver.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.IE.InternetExplorerDriver" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.IE.InternetExplorerDriver.#ctor(OpenQA.Selenium.IE.InternetExplorerOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.IE.InternetExplorerDriver" /> class with the desired
options.
</summary>
<param name="options">The <see cref="T:OpenQA.Selenium.IE.InternetExplorerOptions" /> used to initialize the driver.</param>
</member>
<member name="M:OpenQA.Selenium.IE.InternetExplorerDriver.#ctor(OpenQA.Selenium.IE.InternetExplorerDriverService)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.IE.InternetExplorerDriver" /> class using the specified driver service.
</summary>
<param name="service">The <see cref="T:OpenQA.Selenium.IE.InternetExplorerDriverService" /> used to initialize the driver.</param>
</member>
<member name="M:OpenQA.Selenium.IE.InternetExplorerDriver.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.IE.InternetExplorerDriver" /> class using the specified path
to the directory containing IEDriverServer.exe.
</summary>
<param name="internetExplorerDriverServerDirectory">The full path to the directory containing IEDriverServer.exe.</param>
</member>
<member name="M:OpenQA.Selenium.IE.InternetExplorerDriver.#ctor(System.String,OpenQA.Selenium.IE.InternetExplorerOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.IE.InternetExplorerDriver" /> class using the specified path
to the directory containing IEDriverServer.exe and options.
</summary>
<param name="internetExplorerDriverServerDirectory">The full path to the directory containing IEDriverServer.exe.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.IE.InternetExplorerOptions" /> used to initialize the driver.</param>
</member>
<member name="M:OpenQA.Selenium.IE.InternetExplorerDriver.#ctor(System.String,OpenQA.Selenium.IE.InternetExplorerOptions,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.IE.InternetExplorerDriver" /> class using the specified path
to the directory containing IEDriverServer.exe, options, and command timeout.
</summary>
<param name="internetExplorerDriverServerDirectory">The full path to the directory containing IEDriverServer.exe.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.IE.InternetExplorerOptions" /> used to initialize the driver.</param>
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
</member>
<member name="M:OpenQA.Selenium.IE.InternetExplorerDriver.#ctor(OpenQA.Selenium.IE.InternetExplorerDriverService,OpenQA.Selenium.IE.InternetExplorerOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.IE.InternetExplorerDriver" /> class using the specified
<see cref="T:OpenQA.Selenium.IE.InternetExplorerDriverService" /> and options.
</summary>
<param name="service">The <see cref="T:OpenQA.Selenium.DriverService" /> to use.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.IE.InternetExplorerOptions" /> used to initialize the driver.</param>
</member>
<member name="M:OpenQA.Selenium.IE.InternetExplorerDriver.#ctor(OpenQA.Selenium.IE.InternetExplorerDriverService,OpenQA.Selenium.IE.InternetExplorerOptions,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.IE.InternetExplorerDriver" /> class using the specified
<see cref="T:OpenQA.Selenium.DriverService" />, <see cref="T:OpenQA.Selenium.IE.InternetExplorerOptions" />, and command timeout.
</summary>
<param name="service">The <see cref="T:OpenQA.Selenium.IE.InternetExplorerDriverService" /> to use.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.IE.InternetExplorerOptions" /> used to initialize the driver.</param>
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerDriver.FileDetector">
<summary>
Gets or sets the <see cref="T:OpenQA.Selenium.IFileDetector" /> responsible for detecting
sequences of keystrokes representing file paths and names.
</summary>
<remarks>The IE driver does not allow a file detector to be set,
as the server component of the IE driver (IEDriverServer.exe) only
allows uploads from the local computer environment. Attempting to set
this property has no effect, but does not throw an exception. If you
are attempting to run the IE driver remotely, use <see cref="T:OpenQA.Selenium.Remote.RemoteWebDriver" />
in conjunction with a standalone WebDriver server.</remarks>
</member>
<member name="T:OpenQA.Selenium.IE.InternetExplorerDriverEngine">
<summary>
Represents the valid values for driver engine available with the IEDriverServer.exe.
</summary>
</member>
<member name="F:OpenQA.Selenium.IE.InternetExplorerDriverEngine.Legacy">
<summary>
Represents the Legacy value, forcing the driver to use only the open-source
driver engine implementation.
</summary>
</member>
<member name="F:OpenQA.Selenium.IE.InternetExplorerDriverEngine.AutoDetect">
<summary>
Represents the AutoDetect value, instructing the driver to use the vendor-provided
driver engine implementation, if available, falling back to the open-source
implementation, if it is not available.
</summary>
</member>
<member name="F:OpenQA.Selenium.IE.InternetExplorerDriverEngine.Vendor">
<summary>
Represents the Vendor value, instructing the driver to use the vendor-provided
driver engine implementation, and throwing an exception if it is not available.
</summary>
</member>
<member name="T:OpenQA.Selenium.IE.InternetExplorerDriverLogLevel">
<summary>
Represents the valid values of logging levels available with the IEDriverServer.exe.
</summary>
</member>
<member name="F:OpenQA.Selenium.IE.InternetExplorerDriverLogLevel.Trace">
<summary>
Represents the Trace value, the most detailed logging level available.
</summary>
</member>
<member name="F:OpenQA.Selenium.IE.InternetExplorerDriverLogLevel.Debug">
<summary>
Represents the Debug value
</summary>
</member>
<member name="F:OpenQA.Selenium.IE.InternetExplorerDriverLogLevel.Info">
<summary>
Represents the Info value
</summary>
</member>
<member name="F:OpenQA.Selenium.IE.InternetExplorerDriverLogLevel.Warn">
<summary>
Represents the Warn value
</summary>
</member>
<member name="F:OpenQA.Selenium.IE.InternetExplorerDriverLogLevel.Error">
<summary>
Represents the Error value
</summary>
</member>
<member name="F:OpenQA.Selenium.IE.InternetExplorerDriverLogLevel.Fatal">
<summary>
Represents the Fatal value, the least detailed logging level available.
</summary>
</member>
<member name="T:OpenQA.Selenium.IE.InternetExplorerDriverService">
<summary>
Exposes the service provided by the native IEDriverServer executable.
</summary>
</member>
<member name="M:OpenQA.Selenium.IE.InternetExplorerDriverService.#ctor(System.String,System.String,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.IE.InternetExplorerDriverService" /> class.
</summary>
<param name="executablePath">The full path to the IEDriverServer executable.</param>
<param name="executableFileName">The file name of the IEDriverServer executable.</param>
<param name="port">The port on which the IEDriverServer executable should listen.</param>
</member>
<member name="M:OpenQA.Selenium.IE.InternetExplorerDriverService.CreateDefaultService">
<summary>
Creates a default instance of the InternetExplorerDriverService.
</summary>
<returns>A InternetExplorerDriverService that implements default settings.</returns>
</member>
<member name="M:OpenQA.Selenium.IE.InternetExplorerDriverService.CreateDefaultService(System.String)">
<summary>
Creates a default instance of the InternetExplorerDriverService using a specified path to the IEDriverServer executable.
</summary>
<param name="driverPath">The directory containing the IEDriverServer executable.</param>
<returns>A InternetExplorerDriverService using a random port.</returns>
</member>
<member name="M:OpenQA.Selenium.IE.InternetExplorerDriverService.CreateDefaultService(System.String,System.String)">
<summary>
Creates a default instance of the InternetExplorerDriverService using a specified path to the IEDriverServer executable with the given name.
</summary>
<param name="driverPath">The directory containing the IEDriverServer executable.</param>
<param name="driverExecutableFileName">The name of the IEDriverServer executable file.</param>
<returns>A InternetExplorerDriverService using a random port.</returns>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerDriverService.Host">
<summary>
Gets or sets the value of the host adapter on which the IEDriverServer should listen for connections.
</summary>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerDriverService.LogFile">
<summary>
Gets or sets the location of the log file written to by the IEDriverServer.
</summary>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerDriverService.LoggingLevel">
<summary>
Gets or sets the logging level used by the IEDriverServer.
</summary>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerDriverService.Implementation">
<summary>
Gets or sets the implementation to be used by the IEDriverServer.
</summary>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerDriverService.LibraryExtractionPath">
<summary>
Gets or sets the path to which the supporting library of the IEDriverServer.exe is extracted.
Defaults to the temp directory if this property is not set.
</summary>
<remarks>
The IEDriverServer.exe requires extraction of a supporting library to perform some of its functions. Setting
This library is extracted to the temp directory if this property is not set. If the property is set, it must
be set to a valid directory.
</remarks>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerDriverService.WhitelistedIPAddresses">
<summary>
Gets or sets the comma-delimited list of IP addresses that are approved to
connect to this instance of the IEDriverServer. Defaults to an empty string,
which means only the local loopback address can connect.
</summary>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerDriverService.CommandLineArguments">
<summary>
Gets the command-line arguments for the driver service.
</summary>
</member>
<member name="T:OpenQA.Selenium.IE.InternetExplorerElementScrollBehavior">
<summary>
Specifies the scroll behavior of elements scrolled into view in the IE driver.
</summary>
</member>
<member name="F:OpenQA.Selenium.IE.InternetExplorerElementScrollBehavior.Top">
<summary>
Scrolls elements to align with the top of the viewport.
</summary>
</member>
<member name="F:OpenQA.Selenium.IE.InternetExplorerElementScrollBehavior.Bottom">
<summary>
Scrolls elements to align with the bottom of the viewport.
</summary>
</member>
<member name="T:OpenQA.Selenium.IE.InternetExplorerUnexpectedAlertBehavior">
<summary>
Specifies the behavior of handling unexpected alerts in the IE driver.
</summary>
</member>
<member name="F:OpenQA.Selenium.IE.InternetExplorerUnexpectedAlertBehavior.Default">
<summary>
Indicates the behavior is not set.
</summary>
</member>
<member name="F:OpenQA.Selenium.IE.InternetExplorerUnexpectedAlertBehavior.Ignore">
<summary>
Ignore unexpected alerts, such that the user must handle them.
</summary>
</member>
<member name="F:OpenQA.Selenium.IE.InternetExplorerUnexpectedAlertBehavior.Accept">
<summary>
Accept unexpected alerts.
</summary>
</member>
<member name="F:OpenQA.Selenium.IE.InternetExplorerUnexpectedAlertBehavior.Dismiss">
<summary>
Dismiss unexpected alerts.
</summary>
</member>
<member name="T:OpenQA.Selenium.IE.InternetExplorerPageLoadStrategy">
<summary>
Specifies the behavior of waiting for page loads in the IE driver.
</summary>
</member>
<member name="F:OpenQA.Selenium.IE.InternetExplorerPageLoadStrategy.Default">
<summary>
Indicates the behavior is not set.
</summary>
</member>
<member name="F:OpenQA.Selenium.IE.InternetExplorerPageLoadStrategy.Normal">
<summary>
Waits for pages to load and ready state to be 'complete'.
</summary>
</member>
<member name="F:OpenQA.Selenium.IE.InternetExplorerPageLoadStrategy.Eager">
<summary>
Waits for pages to load and for ready state to be 'interactive' or 'complete'.
</summary>
</member>
<member name="F:OpenQA.Selenium.IE.InternetExplorerPageLoadStrategy.None">
<summary>
Does not wait for pages to load, returning immediately.
</summary>
</member>
<member name="T:OpenQA.Selenium.IE.InternetExplorerOptions">
<summary>
Class to manage options specific to <see cref="T:OpenQA.Selenium.IE.InternetExplorerDriver" /></summary>
<example>
<code>
InternetExplorerOptions options = new InternetExplorerOptions();
options.IntroduceInstabilityByIgnoringProtectedModeSettings = true;
</code>
<para>
</para>
<para>For use with InternetExplorerDriver:</para>
<para>
</para>
<code>
InternetExplorerDriver driver = new InternetExplorerDriver(options);
</code>
<para>
</para>
<para>For use with RemoteWebDriver:</para>
<para>
</para>
<code>
RemoteWebDriver driver = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), options.ToCapabilities());
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.IE.InternetExplorerOptions.AddAdditionalCapability(System.String,System.Object)">
<summary>
Provides a means to add additional capabilities not yet added as type safe options
for the Internet Explorer driver.
</summary>
<param name="capabilityName">The name of the capability to add.</param>
<param name="capabilityValue">The value of the capability to add.</param>
<exception cref="T:System.ArgumentException">
thrown when attempting to add a capability for which there is already a type safe option, or
when <paramref name="capabilityName" /> is <see langword="null" /> or the empty string.
</exception>
<remarks>Calling <see cref="M:OpenQA.Selenium.IE.InternetExplorerOptions.AddAdditionalCapability(System.String,System.Object)" /> where <paramref name="capabilityName" />
has already been added will overwrite the existing value with the new value in <paramref name="capabilityValue" /></remarks>
</member>
<member name="M:OpenQA.Selenium.IE.InternetExplorerOptions.ToCapabilities">
<summary>
Returns DesiredCapabilities for IE with these options included as
capabilities. This copies the options. Further changes will not be
reflected in the returned capabilities.
</summary>
<returns>The DesiredCapabilities for IE with these options.</returns>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerOptions.IntroduceInstabilityByIgnoringProtectedModeSettings">
<summary>
Gets or sets a value indicating whether to ignore the settings of the Internet Explorer Protected Mode.
</summary>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerOptions.IgnoreZoomLevel">
<summary>
Gets or sets a value indicating whether to ignore the zoom level of Internet Explorer .
</summary>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerOptions.EnableNativeEvents">
<summary>
Gets or sets a value indicating whether to use native events in interacting with elements.
</summary>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerOptions.RequireWindowFocus">
<summary>
Gets or sets a value indicating whether to require the browser window to have focus before interacting with elements.
</summary>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerOptions.InitialBrowserUrl">
<summary>
Gets or sets the initial URL displayed when IE is launched. If not set, the browser launches
with the internal startup page for the WebDriver server.
</summary>
<remarks>
By setting the <see cref="P:OpenQA.Selenium.IE.InternetExplorerOptions.IntroduceInstabilityByIgnoringProtectedModeSettings" /> to <see langword="true" />
and this property to a correct URL, you can launch IE in the Internet Protected Mode zone. This can be helpful
to avoid the flakiness introduced by ignoring the Protected Mode settings. Nevertheless, setting Protected Mode
zone settings to the same value in the IE configuration is the preferred method.
</remarks>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerOptions.ElementScrollBehavior">
<summary>
Gets or sets the value for describing how elements are scrolled into view in the IE driver. Defaults
to scrolling the element to the top of the viewport.
</summary>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerOptions.UnexpectedAlertBehavior">
<summary>
Gets or sets the value for describing how unexpected alerts are to be handled in the IE driver.
Defaults to <see cref="F:OpenQA.Selenium.IE.InternetExplorerUnexpectedAlertBehavior.Default" />.
</summary>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerOptions.PageLoadStrategy">
<summary>
Gets or sets the value for describing how the browser is to wait for pages to load in the IE driver.
Defaults to <see cref="F:OpenQA.Selenium.IE.InternetExplorerPageLoadStrategy.Default" />.
</summary>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerOptions.EnablePersistentHover">
<summary>
Gets or sets a value indicating whether to enable persistently sending WM_MOUSEMOVE messages
to the IE window during a mouse hover.
</summary>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerOptions.BrowserAttachTimeout">
<summary>
Gets or sets the amount of time the driver will attempt to look for a newly launched instance
of Internet Explorer.
</summary>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerOptions.FileUploadDialogTimeout">
<summary>
Gets or sets the amount of time the driver will attempt to look for the file selection
dialog when attempting to upload a file.
</summary>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerOptions.ForceCreateProcessApi">
<summary>
Gets or sets a value indicating whether to force the use of the Windows CreateProcess API
when launching Internet Explorer. The default value is <see langword="false" />.
</summary>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerOptions.ForceShellWindowsApi">
<summary>
Gets or sets a value indicating whether to force the use of the Windows ShellWindows API
when attaching to Internet Explorer. The default value is <see langword="false" />.
</summary>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerOptions.ValidateCookieDocumentType">
<summary>
Gets or sets a value indicating whether to validate the document type of the loaded
document when setting cookies.
</summary>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerOptions.BrowserCommandLineArguments">
<summary>
Gets or sets the command line arguments used in launching Internet Explorer when the
Windows CreateProcess API is used. This property only has an effect when the
<see cref="P:OpenQA.Selenium.IE.InternetExplorerOptions.ForceCreateProcessApi" /> is <see langword="true" />.
</summary>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerOptions.Proxy">
<summary>
Gets or sets the <see cref="P:OpenQA.Selenium.IE.InternetExplorerOptions.Proxy" /> to be used with Internet Explorer. By default,
will install the specified proxy to be the system proxy, used by all instances of
Internet Explorer. To change this default behavior, change the <see cref="P:OpenQA.Selenium.IE.InternetExplorerOptions.UsePerProcessProxy" />
property.
</summary>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerOptions.UsePerProcessProxy">
<summary>
Gets or sets a value indicating whether to use the supplied <see cref="P:OpenQA.Selenium.IE.InternetExplorerOptions.Proxy" />
settings on a per-process basis, not updating the system installed proxy setting.
This property is only valid when setting a <see cref="P:OpenQA.Selenium.IE.InternetExplorerOptions.Proxy" />, where the
<see cref="P:OpenQA.Selenium.Proxy.Kind" /> property is either <see cref="F:OpenQA.Selenium.ProxyKind.Direct" />,
<see cref="F:OpenQA.Selenium.ProxyKind.System" />, or <see cref="F:OpenQA.Selenium.ProxyKind.Manual" />, and is
otherwise ignored. Defaults to <see langword="false" />.
</summary>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerOptions.EnsureCleanSession">
<summary>
Gets or sets a value indicating whether to clear the Internet Explorer cache
before launching the browser. When set to <see langword="true" />, clears the
system cache for all instances of Internet Explorer, even those already running
when the driven instance is launched. Defaults to <see langword="false" />.
</summary>
</member>
<member name="P:OpenQA.Selenium.IE.InternetExplorerOptions.EnableFullPageScreenshot">
<summary>
Gets or sets a value indicating whether to enable full-page screenshots for
the IE driver. Defaults to <see langword="true" />.
</summary>
</member>
<member name="T:OpenQA.Selenium.IE.InternetExplorerWebElement">
<summary>
InternetExplorerWebElement allows you to have access to specific items that are found on the page.
</summary>
<seealso cref="T:OpenQA.Selenium.IWebElement" />
<seealso cref="T:OpenQA.Selenium.ILocatable" />
<example>
<code>
[Test]
public void TestGoogle()
{
driver = new InternetExplorerDriver();
InternetExplorerWebElement elem = driver.FindElement(By.Name("q"));
elem.SendKeys("Cheese please!");
}
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.IE.InternetExplorerWebElement.#ctor(OpenQA.Selenium.IE.InternetExplorerDriver,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.IE.InternetExplorerWebElement" /> class.
</summary>
<param name="parent">Driver in use.</param>
<param name="id">ID of the element.</param>
</member>
<member name="T:OpenQA.Selenium.Interactions.Actions">
<summary>
Provides a mechanism for building advanced interactions with the browser.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.#ctor(OpenQA.Selenium.IWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.Actions" /> class.
</summary>
<param name="driver">The <see cref="T:OpenQA.Selenium.IWebDriver" /> object on which the actions built will be performed.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.KeyDown(System.String)">
<summary>
Sends a modifier key down message to the browser.
</summary>
<param name="theKey">The key to be sent.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.Actions" />.</returns>
<exception cref="T:System.ArgumentException">If the key sent is not is not one
of <see cref="F:OpenQA.Selenium.Keys.Shift" />, <see cref="F:OpenQA.Selenium.Keys.Control" />, or <see cref="F:OpenQA.Selenium.Keys.Alt" />.</exception>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.KeyDown(OpenQA.Selenium.IWebElement,System.String)">
<summary>
Sends a modifier key down message to the specified element in the browser.
</summary>
<param name="element">The element to which to send the key command.</param>
<param name="theKey">The key to be sent.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.Actions" />.</returns>
<exception cref="T:System.ArgumentException">If the key sent is not is not one
of <see cref="F:OpenQA.Selenium.Keys.Shift" />, <see cref="F:OpenQA.Selenium.Keys.Control" />, or <see cref="F:OpenQA.Selenium.Keys.Alt" />.</exception>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.KeyUp(System.String)">
<summary>
Sends a modifier key up message to the browser.
</summary>
<param name="theKey">The key to be sent.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.Actions" />.</returns>
<exception cref="T:System.ArgumentException">If the key sent is not is not one
of <see cref="F:OpenQA.Selenium.Keys.Shift" />, <see cref="F:OpenQA.Selenium.Keys.Control" />, or <see cref="F:OpenQA.Selenium.Keys.Alt" />.</exception>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.KeyUp(OpenQA.Selenium.IWebElement,System.String)">
<summary>
Sends a modifier up down message to the specified element in the browser.
</summary>
<param name="element">The element to which to send the key command.</param>
<param name="theKey">The key to be sent.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.Actions" />.</returns>
<exception cref="T:System.ArgumentException">If the key sent is not is not one
of <see cref="F:OpenQA.Selenium.Keys.Shift" />, <see cref="F:OpenQA.Selenium.Keys.Control" />, or <see cref="F:OpenQA.Selenium.Keys.Alt" />.</exception>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.SendKeys(System.String)">
<summary>
Sends a sequence of keystrokes to the browser.
</summary>
<param name="keysToSend">The keystrokes to send to the browser.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.Actions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.SendKeys(OpenQA.Selenium.IWebElement,System.String)">
<summary>
Sends a sequence of keystrokes to the specified element in the browser.
</summary>
<param name="element">The element to which to send the keystrokes.</param>
<param name="keysToSend">The keystrokes to send to the browser.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.Actions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.ClickAndHold(OpenQA.Selenium.IWebElement)">
<summary>
Clicks and holds the mouse button down on the specified element.
</summary>
<param name="onElement">The element on which to click and hold.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.Actions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.ClickAndHold">
<summary>
Clicks and holds the mouse button at the last known mouse coordinates.
</summary>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.Actions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.Release(OpenQA.Selenium.IWebElement)">
<summary>
Releases the mouse button on the specified element.
</summary>
<param name="onElement">The element on which to release the button.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.Actions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.Release">
<summary>
Releases the mouse button at the last known mouse coordinates.
</summary>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.Actions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.Click(OpenQA.Selenium.IWebElement)">
<summary>
Clicks the mouse on the specified element.
</summary>
<param name="onElement">The element on which to click.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.Actions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.Click">
<summary>
Clicks the mouse at the last known mouse coordinates.
</summary>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.Actions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.DoubleClick(OpenQA.Selenium.IWebElement)">
<summary>
Double-clicks the mouse on the specified element.
</summary>
<param name="onElement">The element on which to double-click.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.Actions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.DoubleClick">
<summary>
Double-clicks the mouse at the last known mouse coordinates.
</summary>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.Actions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.MoveToElement(OpenQA.Selenium.IWebElement)">
<summary>
Moves the mouse to the specified element.
</summary>
<param name="toElement">The element to which to move the mouse.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.Actions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.MoveToElement(OpenQA.Selenium.IWebElement,System.Int32,System.Int32)">
<summary>
Moves the mouse to the specified offset of the top-left corner of the specified element.
</summary>
<param name="toElement">The element to which to move the mouse.</param>
<param name="offsetX">The horizontal offset to which to move the mouse.</param>
<param name="offsetY">The vertical offset to which to move the mouse.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.Actions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.MoveByOffset(System.Int32,System.Int32)">
<summary>
Moves the mouse to the specified offset of the last known mouse coordinates.
</summary>
<param name="offsetX">The horizontal offset to which to move the mouse.</param>
<param name="offsetY">The vertical offset to which to move the mouse.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.Actions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.ContextClick(OpenQA.Selenium.IWebElement)">
<summary>
Right-clicks the mouse on the specified element.
</summary>
<param name="onElement">The element on which to right-click.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.Actions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.ContextClick">
<summary>
Right-clicks the mouse at the last known mouse coordinates.
</summary>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.Actions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.DragAndDrop(OpenQA.Selenium.IWebElement,OpenQA.Selenium.IWebElement)">
<summary>
Performs a drag-and-drop operation from one element to another.
</summary>
<param name="source">The element on which the drag operation is started.</param>
<param name="target">The element on which the drop is performed.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.Actions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.DragAndDropToOffset(OpenQA.Selenium.IWebElement,System.Int32,System.Int32)">
<summary>
Performs a drag-and-drop operation on one element to a specified offset.
</summary>
<param name="source">The element on which the drag operation is started.</param>
<param name="offsetX">The horizontal offset to which to move the mouse.</param>
<param name="offsetY">The vertical offset to which to move the mouse.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.Actions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.Build">
<summary>
Builds the sequence of actions.
</summary>
<returns>A composite <see cref="T:OpenQA.Selenium.Interactions.IAction" /> which can be used to perform the actions.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.Perform">
<summary>
Performs the currently built action.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.GetLocatableFromElement(OpenQA.Selenium.IWebElement)">
<summary>
Gets the <see cref="T:OpenQA.Selenium.ILocatable" /> instance of the specified <see cref="T:OpenQA.Selenium.IWebElement" />.
</summary>
<param name="element">The <see cref="T:OpenQA.Selenium.IWebElement" /> to get the location of.</param>
<returns>The <see cref="T:OpenQA.Selenium.ILocatable" /> of the <see cref="T:OpenQA.Selenium.IWebElement" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.Actions.AddAction(OpenQA.Selenium.Interactions.IAction)">
<summary>
Adds an action to current list of actions to be performed.
</summary>
<param name="actionToAdd">The <see cref="T:OpenQA.Selenium.Interactions.IAction" /> to be added.</param>
</member>
<member name="T:OpenQA.Selenium.Interactions.Internal.WebDriverAction">
<summary>
Defines an action for keyboard and mouse interaction with the browser.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.Internal.WebDriverAction.#ctor(OpenQA.Selenium.ILocatable)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.Internal.WebDriverAction" /> class for the given element.
</summary>
<param name="actionLocation">An <see cref="T:OpenQA.Selenium.ILocatable" /> object that provides coordinates for this action.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.Internal.WebDriverAction.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.Internal.WebDriverAction" /> class.
</summary>
<remarks>This action will take place in the context of the previous action's coordinates.</remarks>
</member>
<member name="P:OpenQA.Selenium.Interactions.Internal.WebDriverAction.ActionTarget">
<summary>
Gets the target of the action providing coordinates of the action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.Internal.MouseAction">
<summary>
Defines an action for mouse interaction with the browser.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.Internal.MouseAction.#ctor(OpenQA.Selenium.IMouse,OpenQA.Selenium.ILocatable)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.Internal.MouseAction" /> class.
</summary>
<param name="mouse">The <see cref="T:OpenQA.Selenium.IMouse" /> with which the action will be performed.</param>
<param name="target">An <see cref="T:OpenQA.Selenium.ILocatable" /> describing an element at which to perform the action.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.Internal.MouseAction.MoveToLocation">
<summary>
Moves the mouse to the location at which to perform the action.
</summary>
</member>
<member name="P:OpenQA.Selenium.Interactions.Internal.MouseAction.ActionLocation">
<summary>
Gets the coordinates at which to perform the mouse action.
</summary>
</member>
<member name="P:OpenQA.Selenium.Interactions.Internal.MouseAction.Mouse">
<summary>
Gets the mouse with which to perform the action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.IAction">
<summary>
Provides methods by which an interaction with the browser can be performed.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.IAction.Perform">
<summary>
Performs this action on the browser.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.ButtonReleaseAction">
<summary>
Defines an action for releasing the currently held mouse button.
</summary>
<remarks>
This action can be called for an element different than the one
ClickAndHoldAction was called for. However, if this action is
performed out of sequence (without holding down the mouse button,
for example) the results will be different.
</remarks>
</member>
<member name="M:OpenQA.Selenium.Interactions.ButtonReleaseAction.#ctor(OpenQA.Selenium.IMouse,OpenQA.Selenium.ILocatable)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.ButtonReleaseAction" /> class.
</summary>
<param name="mouse">The <see cref="T:OpenQA.Selenium.IMouse" /> with which the action will be performed.</param>
<param name="actionTarget">An <see cref="T:OpenQA.Selenium.ILocatable" /> describing an element at which to perform the action.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.ButtonReleaseAction.Perform">
<summary>
Performs this action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.ClickAction">
<summary>
Defines an action for clicking on an element.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.ClickAction.#ctor(OpenQA.Selenium.IMouse,OpenQA.Selenium.ILocatable)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.ClickAction" /> class.
</summary>
<param name="mouse">The <see cref="T:OpenQA.Selenium.IMouse" /> with which the action will be performed.</param>
<param name="actionTarget">An <see cref="T:OpenQA.Selenium.ILocatable" /> describing an element at which to perform the action.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.ClickAction.Perform">
<summary>
Performs this action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.ClickAndHoldAction">
<summary>
Defines an action for clicking and holding the mouse button on an element.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.ClickAndHoldAction.#ctor(OpenQA.Selenium.IMouse,OpenQA.Selenium.ILocatable)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.ClickAndHoldAction" /> class.
</summary>
<param name="mouse">The <see cref="T:OpenQA.Selenium.IMouse" /> with which the action will be performed.</param>
<param name="actionTarget">An <see cref="T:OpenQA.Selenium.ILocatable" /> describing an element at which to perform the action.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.ClickAndHoldAction.Perform">
<summary>
Performs this action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.CompositeAction">
<summary>
Defines an action that consists of a list of other actions to be performed in the browser.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.CompositeAction.AddAction(OpenQA.Selenium.Interactions.IAction)">
<summary>
Adds an action to the list of actions to be performed.
</summary>
<param name="action">An <see cref="T:OpenQA.Selenium.Interactions.IAction" /> to be appended to the
list of actions to be performed.</param>
<returns>A self reference.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.CompositeAction.Perform">
<summary>
Performs the actions defined in this list of actions.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.ContextClickAction">
<summary>
Defines an action for clicking the secondary mouse button on an element, displaying a context menu.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.ContextClickAction.#ctor(OpenQA.Selenium.IMouse,OpenQA.Selenium.ILocatable)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.ContextClickAction" /> class.
</summary>
<param name="mouse">The <see cref="T:OpenQA.Selenium.IMouse" /> with which the action will be performed.</param>
<param name="actionTarget">An <see cref="T:OpenQA.Selenium.ILocatable" /> describing an element at which to perform the action.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.ContextClickAction.Perform">
<summary>
Performs this action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.DoubleClickAction">
<summary>
Defines an action for double-clicking on an element.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.DoubleClickAction.#ctor(OpenQA.Selenium.IMouse,OpenQA.Selenium.ILocatable)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.DoubleClickAction" /> class.
</summary>
<param name="mouse">The <see cref="T:OpenQA.Selenium.IMouse" /> with which the action will be performed.</param>
<param name="actionTarget">An <see cref="T:OpenQA.Selenium.ILocatable" /> describing an element at which to perform the action.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.DoubleClickAction.Perform">
<summary>
Performs this action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.Internal.TouchAction">
<summary>
Defines an action for keyboard interaction with the browser.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.Internal.TouchAction.#ctor(OpenQA.Selenium.ITouchScreen,OpenQA.Selenium.ILocatable)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.Internal.TouchAction" /> class.
</summary>
<param name="touchScreen">The <see cref="T:OpenQA.Selenium.ITouchScreen" /> to use in performing the action.</param>
<param name="actionTarget">An <see cref="T:OpenQA.Selenium.ILocatable" /> object providing the element on which to perform the action.</param>
</member>
<member name="P:OpenQA.Selenium.Interactions.Internal.TouchAction.TouchScreen">
<summary>
Gets the touch screen with which to perform the action.
</summary>
</member>
<member name="P:OpenQA.Selenium.Interactions.Internal.TouchAction.ActionLocation">
<summary>
Gets the location at which to perform the action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.DoubleTapAction">
<summary>
Creates a double tap gesture on a touch screen.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.DoubleTapAction.#ctor(OpenQA.Selenium.ITouchScreen,OpenQA.Selenium.ILocatable)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.DoubleTapAction" /> class.
</summary>
<param name="touchScreen">The <see cref="T:OpenQA.Selenium.ITouchScreen" /> with which the action will be performed.</param>
<param name="actionTarget">An <see cref="T:OpenQA.Selenium.ILocatable" /> describing an element at which to perform the action.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.DoubleTapAction.Perform">
<summary>
Performs the action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.FlickAction">
<summary>
Creates a flick gesture on a touch screen.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.FlickAction.#ctor(OpenQA.Selenium.ITouchScreen,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.FlickAction" /> class.
</summary>
<param name="touchScreen">The <see cref="T:OpenQA.Selenium.ITouchScreen" /> with which the action will be performed.</param>
<param name="speedX">The horizontal speed in pixels per second.</param>
<param name="speedY">The vertical speed in pixels per second.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.FlickAction.#ctor(OpenQA.Selenium.ITouchScreen,OpenQA.Selenium.ILocatable,System.Int32,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.FlickAction" /> class for use with the specified element.
</summary>
<param name="touchScreen">The <see cref="T:OpenQA.Selenium.ITouchScreen" /> with which the action will be performed.</param>
<param name="actionTarget">An <see cref="T:OpenQA.Selenium.ILocatable" /> describing an element at which to perform the action.</param>
<param name="offsetX">The x offset relative to the viewport.</param>
<param name="offsetY">The y offset relative to the viewport.</param>
<param name="speed">The speed in pixels per second.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.FlickAction.Perform">
<summary>
Performs the action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.Internal.ICoordinates">
<summary>
Provides location of the element using various frames of reference.
</summary>
</member>
<member name="P:OpenQA.Selenium.Interactions.Internal.ICoordinates.LocationOnScreen">
<summary>
Gets the location of an element in absolute screen coordinates.
</summary>
</member>
<member name="P:OpenQA.Selenium.Interactions.Internal.ICoordinates.LocationInViewport">
<summary>
Gets the location of an element relative to the origin of the view port.
</summary>
</member>
<member name="P:OpenQA.Selenium.Interactions.Internal.ICoordinates.LocationInDom">
<summary>
Gets the location of an element's position within the HTML DOM.
</summary>
</member>
<member name="P:OpenQA.Selenium.Interactions.Internal.ICoordinates.AuxiliaryLocator">
<summary>
Gets a locator providing a user-defined location for this element.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.Internal.KeyboardAction">
<summary>
Defines an action for keyboard interaction with the browser.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.Internal.KeyboardAction.#ctor(OpenQA.Selenium.IKeyboard,OpenQA.Selenium.IMouse,OpenQA.Selenium.ILocatable)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.Internal.KeyboardAction" /> class.
</summary>
<param name="keyboard">The <see cref="T:OpenQA.Selenium.IKeyboard" /> to use in performing the action.</param>
<param name="mouse">The <see cref="T:OpenQA.Selenium.IMouse" /> to use in setting focus to the element on which to perform the action.</param>
<param name="actionTarget">An <see cref="T:OpenQA.Selenium.ILocatable" /> object providing the element on which to perform the action.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.Internal.KeyboardAction.FocusOnElement">
<summary>
Focuses on the element on which the action is to be performed.
</summary>
</member>
<member name="P:OpenQA.Selenium.Interactions.Internal.KeyboardAction.Keyboard">
<summary>
Gets the keyboard with which to perform the action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.Internal.SingleKeyAction">
<summary>
Defines an action for keyboard interaction with the browser using a single modifier key.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.Internal.SingleKeyAction.#ctor(OpenQA.Selenium.IKeyboard,OpenQA.Selenium.IMouse,OpenQA.Selenium.ILocatable,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.Internal.SingleKeyAction" /> class.
</summary>
<param name="keyboard">The <see cref="T:OpenQA.Selenium.IKeyboard" /> to use in performing the action.</param>
<param name="mouse">The <see cref="T:OpenQA.Selenium.IMouse" /> to use in setting focus to the element on which to perform the action.</param>
<param name="actionTarget">An <see cref="T:OpenQA.Selenium.ILocatable" /> object providing the element on which to perform the action.</param>
<param name="key">The modifier key (<see cref="F:OpenQA.Selenium.Keys.Shift" />, <see cref="F:OpenQA.Selenium.Keys.Control" />, <see cref="F:OpenQA.Selenium.Keys.Alt" />) to use in the action.</param>
</member>
<member name="P:OpenQA.Selenium.Interactions.Internal.SingleKeyAction.Key">
<summary>
Gets the key with which to perform the action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.KeyDownAction">
<summary>
Defines an action for pressing a modifier key (Shift, Alt, or Control) on the keyboard.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.KeyDownAction.#ctor(OpenQA.Selenium.IKeyboard,OpenQA.Selenium.IMouse,OpenQA.Selenium.ILocatable,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.KeyDownAction" /> class.
</summary>
<param name="keyboard">The <see cref="T:OpenQA.Selenium.IKeyboard" /> to use in performing the action.</param>
<param name="mouse">The <see cref="T:OpenQA.Selenium.IMouse" /> to use in setting focus to the element on which to perform the action.</param>
<param name="actionTarget">An <see cref="T:OpenQA.Selenium.ILocatable" /> object providing the element on which to perform the action.</param>
<param name="key">The modifier key (<see cref="F:OpenQA.Selenium.Keys.Shift" />, <see cref="F:OpenQA.Selenium.Keys.Control" />, <see cref="F:OpenQA.Selenium.Keys.Alt" />) to use in the action.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.KeyDownAction.Perform">
<summary>
Performs this action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.KeyUpAction">
<summary>
Defines an action for releasing a modifier key (Shift, Alt, or Control) on the keyboard.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.KeyUpAction.#ctor(OpenQA.Selenium.IKeyboard,OpenQA.Selenium.IMouse,OpenQA.Selenium.ILocatable,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.KeyUpAction" /> class.
</summary>
<param name="keyboard">The <see cref="T:OpenQA.Selenium.IKeyboard" /> to use in performing the action.</param>
<param name="mouse">The <see cref="T:OpenQA.Selenium.IMouse" /> to use in setting focus to the element on which to perform the action.</param>
<param name="actionTarget">An <see cref="T:OpenQA.Selenium.ILocatable" /> object providing the element on which to perform the action.</param>
<param name="key">The modifier key (<see cref="F:OpenQA.Selenium.Keys.Shift" />, <see cref="F:OpenQA.Selenium.Keys.Control" />, <see cref="F:OpenQA.Selenium.Keys.Alt" />) to use in the action.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.KeyUpAction.Perform">
<summary>
Performs this action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.LongPressAction">
<summary>
Creates a long press gesture on a touch screen.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.LongPressAction.#ctor(OpenQA.Selenium.ITouchScreen,OpenQA.Selenium.ILocatable)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.LongPressAction" /> class.
</summary>
<param name="touchScreen">The <see cref="T:OpenQA.Selenium.ITouchScreen" /> with which the action will be performed.</param>
<param name="actionTarget">An <see cref="T:OpenQA.Selenium.ILocatable" /> describing an element at which to perform the action.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.LongPressAction.Perform">
<summary>
Performs the action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.MoveMouseAction">
<summary>
Defines an action for moving the mouse to a specified location.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.MoveMouseAction.#ctor(OpenQA.Selenium.IMouse,OpenQA.Selenium.ILocatable)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.MoveMouseAction" /> class.
</summary>
<param name="mouse">The <see cref="T:OpenQA.Selenium.IMouse" /> with which the action will be performed.</param>
<param name="actionTarget">An <see cref="T:OpenQA.Selenium.ILocatable" /> describing an element at which to perform the action.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.MoveMouseAction.Perform">
<summary>
Performs this action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.MoveToOffsetAction">
<summary>
Defines an action for moving the mouse to a specified offset from its current location.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.MoveToOffsetAction.#ctor(OpenQA.Selenium.IMouse,OpenQA.Selenium.ILocatable,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.MoveToOffsetAction" /> class.
</summary>
<param name="mouse">The <see cref="T:OpenQA.Selenium.IMouse" /> with which the action will be performed.</param>
<param name="actionTarget">An <see cref="T:OpenQA.Selenium.ILocatable" /> describing an element at which to perform the action.</param>
<param name="offsetX">The horizontal offset from the origin of the target to which to move the mouse.</param>
<param name="offsetY">The vertical offset from the origin of the target to which to move the mouse.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.MoveToOffsetAction.Perform">
<summary>
Performs this action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.ScreenMoveAction">
<summary>
Presses a touch screen at a given location.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.ScreenMoveAction.#ctor(OpenQA.Selenium.ITouchScreen,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.ScreenMoveAction" /> class.
</summary>
<param name="touchScreen">The <see cref="T:OpenQA.Selenium.ITouchScreen" /> with which the action will be performed.</param>
<param name="x">The x coordinate relative to the view port.</param>
<param name="y">The y coordinate relative to the view port.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.ScreenMoveAction.Perform">
<summary>
Performs the action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.ScreenPressAction">
<summary>
Presses a touch screen at a given location.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.ScreenPressAction.#ctor(OpenQA.Selenium.ITouchScreen,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.ScreenPressAction" /> class.
</summary>
<param name="touchScreen">The <see cref="T:OpenQA.Selenium.ITouchScreen" /> with which the action will be performed.</param>
<param name="x">The x coordinate relative to the view port.</param>
<param name="y">The y coordinate relative to the view port.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.ScreenPressAction.Perform">
<summary>
Performs the action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.ScreenReleaseAction">
<summary>
Presses a touch screen at a given location.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.ScreenReleaseAction.#ctor(OpenQA.Selenium.ITouchScreen,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.ScreenReleaseAction" /> class.
</summary>
<param name="touchScreen">The <see cref="T:OpenQA.Selenium.ITouchScreen" /> with which the action will be performed.</param>
<param name="x">The x coordinate relative to the view port.</param>
<param name="y">The y coordinate relative to the view port.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.ScreenReleaseAction.Perform">
<summary>
Performs the action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.ScrollAction">
<summary>
Creates a double tap gesture on a touch screen.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.ScrollAction.#ctor(OpenQA.Selenium.ITouchScreen,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.ScrollAction" /> class.
</summary>
<param name="touchScreen">The <see cref="T:OpenQA.Selenium.ITouchScreen" /> with which the action will be performed.</param>
<param name="offsetX">The horizontal offset relative to the view port.</param>
<param name="offsetY">The vertical offset relative to the view port.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.ScrollAction.#ctor(OpenQA.Selenium.ITouchScreen,OpenQA.Selenium.ILocatable,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.ScrollAction" /> class for use with the specified element.
</summary>
<param name="touchScreen">The <see cref="T:OpenQA.Selenium.ITouchScreen" /> with which the action will be performed.</param>
<param name="actionTarget">An <see cref="T:OpenQA.Selenium.ILocatable" /> describing an element at which to perform the action.</param>
<param name="offsetX">The x coordinate relative to the view port.</param>
<param name="offsetY">The y coordinate relative to the view port.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.ScrollAction.Perform">
<summary>
Performs the action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.SendKeysAction">
<summary>
Defines an action for sending a sequence of keystrokes to an element.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.SendKeysAction.#ctor(OpenQA.Selenium.IKeyboard,OpenQA.Selenium.IMouse,OpenQA.Selenium.ILocatable,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.SendKeysAction" /> class.
</summary>
<param name="keyboard">The <see cref="T:OpenQA.Selenium.IKeyboard" /> to use in performing the action.</param>
<param name="mouse">The <see cref="T:OpenQA.Selenium.IMouse" /> to use in setting focus to the element on which to perform the action.</param>
<param name="actionTarget">An <see cref="T:OpenQA.Selenium.ILocatable" /> object providing the element on which to perform the action.</param>
<param name="keysToSend">The key sequence to send.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.SendKeysAction.Perform">
<summary>
Performs this action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.SingleTapAction">
<summary>
Creates a single tap gesture on a touch screen.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.SingleTapAction.#ctor(OpenQA.Selenium.ITouchScreen,OpenQA.Selenium.ILocatable)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.SingleTapAction" /> class.
</summary>
<param name="touchScreen">The <see cref="T:OpenQA.Selenium.ITouchScreen" /> with which the action will be performed.</param>
<param name="actionTarget">An <see cref="T:OpenQA.Selenium.ILocatable" /> describing an element at which to perform the action.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.SingleTapAction.Perform">
<summary>
Performs the action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Interactions.TouchActions">
<summary>
Provides a mechanism for building advanced interactions with the browser.
</summary>
</member>
<member name="M:OpenQA.Selenium.Interactions.TouchActions.#ctor(OpenQA.Selenium.IWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Interactions.TouchActions" /> class.
</summary>
<param name="driver">The <see cref="T:OpenQA.Selenium.IWebDriver" /> object on which the actions built will be performed.</param>
</member>
<member name="M:OpenQA.Selenium.Interactions.TouchActions.SingleTap(OpenQA.Selenium.IWebElement)">
<summary>
Taps the touch screen on the specified element.
</summary>
<param name="onElement">The element on which to tap.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.TouchActions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.TouchActions.Down(System.Int32,System.Int32)">
<summary>
Presses down at the specified location on the screen.
</summary>
<param name="locationX">The x coordinate relative to the view port.</param>
<param name="locationY">The y coordinate relative to the view port.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.TouchActions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.TouchActions.Up(System.Int32,System.Int32)">
<summary>
Releases a press at the specified location on the screen.
</summary>
<param name="locationX">The x coordinate relative to the view port.</param>
<param name="locationY">The y coordinate relative to the view port.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.TouchActions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.TouchActions.Move(System.Int32,System.Int32)">
<summary>
Moves to the specified location on the screen.
</summary>
<param name="locationX">The x coordinate relative to the view port.</param>
<param name="locationY">The y coordinate relative to the view port.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.TouchActions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.TouchActions.Scroll(OpenQA.Selenium.IWebElement,System.Int32,System.Int32)">
<summary>
Scrolls the touch screen beginning at the specified element.
</summary>
<param name="onElement">The element on which to begin scrolling.</param>
<param name="offsetX">The x coordinate relative to the view port.</param>
<param name="offsetY">The y coordinate relative to the view port.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.TouchActions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.TouchActions.DoubleTap(OpenQA.Selenium.IWebElement)">
<summary>
Double-taps the touch screen on the specified element.
</summary>
<param name="onElement">The element on which to double-tap.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.TouchActions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.TouchActions.LongPress(OpenQA.Selenium.IWebElement)">
<summary>
Presses and holds on the touch screen on the specified element.
</summary>
<param name="onElement">The element on which to press and hold</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.TouchActions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.TouchActions.Scroll(System.Int32,System.Int32)">
<summary>
Scrolls the touch screen to the specified offset.
</summary>
<param name="offsetX">The horizontal offset relative to the view port.</param>
<param name="offsetY">The vertical offset relative to the view port.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.TouchActions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.TouchActions.Flick(System.Int32,System.Int32)">
<summary>
Flicks the current view.
</summary>
<param name="speedX">The horizontal speed in pixels per second.</param>
<param name="speedY">The vertical speed in pixels per second.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.TouchActions" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Interactions.TouchActions.Flick(OpenQA.Selenium.IWebElement,System.Int32,System.Int32,System.Int32)">
<summary>
Flicks the current view starting at a specific location.
</summary>
<param name="onElement">The element at which to start the flick.</param>
<param name="offsetX">The x offset relative to the viewport.</param>
<param name="offsetY">The y offset relative to the viewport.</param>
<param name="speed">The speed in pixels per second.</param>
<returns>A self-reference to this <see cref="T:OpenQA.Selenium.Interactions.TouchActions" />.</returns>
</member>
<member name="T:OpenQA.Selenium.Internal.AsyncJavaScriptExecutor">
<summary>
Utility class used to execute "asynchronous" scripts. This class should
only be used by browsers that do not natively support asynchronous
script execution.
<para>Warning: this class is intended for internal use
only. This class will be removed without warning after all
native asynchronous implementations have been completed.
</para></summary>
</member>
<member name="M:OpenQA.Selenium.Internal.AsyncJavaScriptExecutor.#ctor(OpenQA.Selenium.IJavaScriptExecutor)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Internal.AsyncJavaScriptExecutor" /> class.
</summary>
<param name="executor">An <see cref="T:OpenQA.Selenium.IJavaScriptExecutor" /> object capable of executing JavaScript.</param>
</member>
<member name="M:OpenQA.Selenium.Internal.AsyncJavaScriptExecutor.ExecuteScript(System.String,System.Object[])">
<summary>
Executes a JavaScript script asynchronously.
</summary>
<param name="script">The script to execute.</param>
<param name="args">An array of objects used as arguments in the script.</param>
<returns>The object which is the return value of the script.</returns>
<exception cref="T:System.InvalidOperationException">if the object executing the function doesn't support JavaScript.</exception>
<exception cref="T:OpenQA.Selenium.WebDriverException">if the page reloads during the JavaScript execution.</exception>
<exception cref="T:OpenQA.Selenium.WebDriverTimeoutException">if the timeout expires during the JavaScript execution.</exception>
</member>
<member name="P:OpenQA.Selenium.Internal.AsyncJavaScriptExecutor.Timeout">
<summary>
Gets or sets the timeout for the script executor.
</summary>
</member>
<member name="T:OpenQA.Selenium.Internal.FileUtilities">
<summary>
Encapsulates methods for working with files.
</summary>
</member>
<member name="M:OpenQA.Selenium.Internal.FileUtilities.CopyDirectory(System.String,System.String)">
<summary>
Recursively copies a directory.
</summary>
<param name="sourceDirectory">The source directory to copy.</param>
<param name="destinationDirectory">The destination directory.</param>
<returns>
<see langword="true" /> if the copy is completed; otherwise <see langword="false" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Internal.FileUtilities.DeleteDirectory(System.String)">
<summary>
Recursively deletes a directory, retrying on error until a timeout.
</summary>
<param name="directoryToDelete">The directory to delete.</param>
<remarks>This method does not throw an exception if the delete fails.</remarks>
</member>
<member name="M:OpenQA.Selenium.Internal.FileUtilities.FindFile(System.String)">
<summary>
Searches for a file with the specified name.
</summary>
<param name="fileName">The name of the file to find.</param>
<returns>The full path to the directory where the file can be found,
or an empty string if the file does not exist in the locations searched.</returns>
<remarks>
This method looks first in the directory of the currently executing
assembly. If the specified file is not there, the method then looks in
each directory on the PATH environment variable, in order.
</remarks>
</member>
<member name="M:OpenQA.Selenium.Internal.FileUtilities.GetCurrentDirectory">
<summary>
Gets the directory of the currently executing assembly.
</summary>
<returns>The directory of the currently executing assembly.</returns>
</member>
<member name="M:OpenQA.Selenium.Internal.FileUtilities.GenerateRandomTempDirectoryName(System.String)">
<summary>
Generates the full path to a random directory name in the temporary directory, following a naming pattern..
</summary>
<param name="directoryPattern">The pattern to use in creating the directory name, following standard
.NET string replacement tokens.</param>
<returns>The full path to the random directory name in the temporary directory.</returns>
</member>
<member name="T:OpenQA.Selenium.Internal.IWrapsElement">
<summary>
Defines the interface through which the user can discover if there is an underlying element to be used.
</summary>
</member>
<member name="P:OpenQA.Selenium.Internal.IWrapsElement.WrappedElement">
<summary>
Gets the <see cref="T:OpenQA.Selenium.IWebElement" /> wrapped by this object.
</summary>
</member>
<member name="T:OpenQA.Selenium.NativeMethods">
<summary>
Provides entry points into needed unmanaged APIs.
</summary>
</member>
<member name="T:OpenQA.Selenium.NativeMethods.HandleInformation">
<summary>
Values for flags for setting information about a native operating system handle.
</summary>
</member>
<member name="M:OpenQA.Selenium.NativeMethods.SetHandleInformation(System.IntPtr,OpenQA.Selenium.NativeMethods.HandleInformation,OpenQA.Selenium.NativeMethods.HandleInformation)">
<summary>
Sets the handle information for a Windows object.
</summary>
<param name="hObject">Handle to the object.</param>
<param name="dwMask">The handle information to set.</param>
<param name="dwFlags">The flags for the handle.</param>
<returns>
<see langword="true" /> if the information is set; otherwise <see langword="false" />.</returns>
</member>
<member name="T:OpenQA.Selenium.Internal.PortUtilities">
<summary>
Encapsulates methods for working with ports.
</summary>
</member>
<member name="M:OpenQA.Selenium.Internal.PortUtilities.FindFreePort">
<summary>
Finds a random, free port to be listened on.
</summary>
<returns>A random, free port to be listened on.</returns>
</member>
<member name="T:OpenQA.Selenium.Internal.ResourceUtilities">
<summary>
Encapsulates methods for finding and extracting WebDriver resources.
</summary>
</member>
<member name="M:OpenQA.Selenium.Internal.ResourceUtilities.GetResourceStream(System.String,System.String)">
<summary>
Gets a <see cref="T:System.IO.Stream" /> that contains the resource to use.
</summary>
<param name="fileName">A file name in the file system containing the resource to use.</param>
<param name="resourceId">A string representing the resource name embedded in the
executing assembly, if it is not found in the file system.</param>
<returns>A Stream from which the resource can be read.</returns>
<exception cref="T:OpenQA.Selenium.WebDriverException">Thrown if neither the file nor the embedded resource can be found.</exception>
<remarks>
The GetResourceStream method searches for the specified resource using the following
algorithm:
<para><list type="numbered"><item>In the same directory as the calling assembly.</item><item>In the full path specified by the <paramref name="fileName" /> argument.</item><item>Inside the calling assembly as an embedded resource.</item></list></para></remarks>
</member>
<member name="M:OpenQA.Selenium.Internal.ResourceUtilities.IsValidResourceName(System.String)">
<summary>
Returns a value indicating whether a resource exists with the specified ID.
</summary>
<param name="resourceId">ID of the embedded resource to check for.</param>
<returns>
<see langword="true" /> if the resource exists in the calling assembly; otherwise <see langword="false" />.</returns>
</member>
<member name="T:OpenQA.Selenium.Internal.ReturnedCookie">
<summary>
Represents a cookie returned to the driver by the browser.
</summary>
</member>
<member name="M:OpenQA.Selenium.Internal.ReturnedCookie.#ctor(System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Boolean,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Internal.ReturnedCookie" /> class with a specific name,
value, domain, path and expiration date.
</summary>
<param name="name">The name of the cookie.</param>
<param name="value">The value of the cookie.</param>
<param name="domain">The domain of the cookie.</param>
<param name="path">The path of the cookie.</param>
<param name="expiry">The expiration date of the cookie.</param>
<param name="isSecure">
<see langword="true" /> if the cookie is secure; otherwise <see langword="false" /></param>
<param name="isHttpOnly">
<see langword="true" /> if the cookie is an HTTP-only cookie; otherwise <see langword="false" /></param>
<exception cref="T:System.ArgumentException">If the name is <see langword="null" /> or an empty string,
or if it contains a semi-colon.</exception>
<exception cref="T:System.ArgumentNullException">If the value or currentUrl is <see langword="null" />.</exception>
</member>
<member name="M:OpenQA.Selenium.Internal.ReturnedCookie.ToString">
<summary>
Creates and returns a string representation of the current cookie.
</summary>
<returns>A string representation of the current cookie.</returns>
</member>
<member name="P:OpenQA.Selenium.Internal.ReturnedCookie.Secure">
<summary>
Gets a value indicating whether the cookie is secure.
</summary>
</member>
<member name="P:OpenQA.Selenium.Internal.ReturnedCookie.IsHttpOnly">
<summary>
Gets a value indicating whether the cookie is an HTTP-only cookie.
</summary>
</member>
<member name="T:System.IO.Compression.ZipStorer">
<summary>
Unique class for compression/decompression file. Represents a Zip file.
</summary>
</member>
<member name="T:System.IO.Compression.ZipStorer.CompressionMethod">
<summary>
Compression method enumeration.
</summary>
</member>
<member name="T:System.IO.Compression.ZipStorer.ZipFileEntry">
<summary>
Represents an entry in Zip file directory
</summary>
</member>
<member name="M:System.IO.Compression.ZipStorer.ZipFileEntry.ToString">
<summary>Overriden method</summary>
<returns>Filename in Zip</returns>
</member>
<member name="M:System.IO.Compression.ZipStorer.Create(System.IO.Stream,System.String)">
<summary>
Create a new zip storage in a stream.
</summary>
<param name="zipStream">The stream to use to create the Zip file.</param>
<param name="fileComment">General comment for Zip file.</param>
<returns>A valid ZipStorer object.</returns>
</member>
<member name="M:System.IO.Compression.ZipStorer.Open(System.IO.Stream,System.IO.FileAccess)">
<summary>
Open the existing Zip storage in a stream.
</summary>
<param name="stream">Already opened stream with zip contents.</param>
<param name="access">File access mode for stream operations.</param>
<returns>A valid ZipStorer object.</returns>
</member>
<member name="M:System.IO.Compression.ZipStorer.AddFile(System.IO.Compression.ZipStorer.CompressionMethod,System.String,System.String,System.String)">
<summary>
Add full contents of a file into the Zip storage.
</summary>
<param name="compressionMethod">Compression method used to store the file.</param>
<param name="sourceFile">Full path of file to add to Zip storage.</param>
<param name="fileNameInZip">File name and path as desired in Zip directory.</param>
<param name="fileEntryComment">Comment for stored file.</param>
</member>
<member name="M:System.IO.Compression.ZipStorer.AddStream(System.IO.Compression.ZipStorer.CompressionMethod,System.IO.Stream,System.String,System.DateTime,System.String)">
<summary>
Add full contents of a stream into the Zip storage.
</summary>
<param name="compressionMethod">Compression method used to store the stream.</param>
<param name="sourceStream">Stream object containing the data to store in Zip.</param>
<param name="fileNameInZip">File name and path as desired in Zip directory.</param>
<param name="modificationTimeStamp">Modification time of the data to store.</param>
<param name="fileEntryComment">Comment for stored file.</param>
</member>
<member name="M:System.IO.Compression.ZipStorer.Close">
<summary>
Updates central directory (if needed) and close the Zip storage.
</summary>
<remarks>This is a required step, unless automatic dispose is used.</remarks>
</member>
<member name="M:System.IO.Compression.ZipStorer.ReadCentralDirectory">
<summary>
Read all the file records in the central directory.
</summary>
<returns>List of all entries in directory.</returns>
</member>
<member name="M:System.IO.Compression.ZipStorer.ExtractFile(System.IO.Compression.ZipStorer.ZipFileEntry,System.String)">
<summary>
Copy the contents of a stored file into a physical file.
</summary>
<param name="zipFileEntry">Entry information of file to extract.</param>
<param name="destinationFileName">Name of file to store uncompressed data.</param>
<returns>
<see langword="true" /> if the file is successfully extracted; otherwise, <see langword="false" />.</returns>
<remarks>Unique compression methods are Store and Deflate.</remarks>
</member>
<member name="M:System.IO.Compression.ZipStorer.ExtractFile(System.IO.Compression.ZipStorer.ZipFileEntry,System.IO.Stream)">
<summary>
Copy the contents of a stored file into an open stream.
</summary>
<param name="zipFileEntry">Entry information of file to extract.</param>
<param name="destinationStream">Stream to store the uncompressed data.</param>
<returns>
<see langword="true" /> if the file is successfully extracted; otherwise, <see langword="false" />.</returns>
<remarks>Unique compression methods are Store and Deflate.</remarks>
</member>
<member name="M:System.IO.Compression.ZipStorer.Dispose">
<summary>
Closes the Zip file stream.
</summary>
</member>
<member name="P:System.IO.Compression.ZipStorer.EncodeUtf8">
<summary>
Gets a value indicating whether file names and comments should be encoded using UTF-8.
</summary>
</member>
<member name="P:System.IO.Compression.ZipStorer.ForceDeflating">
<summary>
Gets a value indicating whether to force using the deflate algorithm,
even if doing so inflates the stored file.
</summary>
</member>
<member name="T:OpenQA.Selenium.Opera.OperaDriver">
<summary>
Provides a mechanism to write tests against Opera
</summary>
<example>
<code>
[TestFixture]
public class Testing
{
private IWebDriver driver;
<para></para>
[SetUp]
public void SetUp()
{
driver = new OperaDriver();
}
<para></para>
[Test]
public void TestGoogle()
{
driver.Navigate().GoToUrl("http://www.google.co.uk");
/*
* Rest of the test
*/
}
<para></para>
[TearDown]
public void TearDown()
{
driver.Quit();
}
}
</code>
</example>
</member>
<member name="F:OpenQA.Selenium.Opera.OperaDriver.AcceptUntrustedCertificates">
<summary>
Accept untrusted SSL Certificates
</summary>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaDriver.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Opera.OperaDriver" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaDriver.#ctor(OpenQA.Selenium.Opera.OperaOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Opera.OperaDriver" /> class using the specified options.
</summary>
<param name="options">The <see cref="T:OpenQA.Selenium.Opera.OperaOptions" /> to be used with the Opera driver.</param>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaDriver.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Opera.OperaDriver" /> class using the specified path
to the directory containing OperaDriver.exe.
</summary>
<param name="operaDriverDirectory">The full path to the directory containing OperaDriver.exe.</param>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaDriver.#ctor(System.String,OpenQA.Selenium.Opera.OperaOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Opera.OperaDriver" /> class using the specified path
to the directory containing OperaDriver.exe and options.
</summary>
<param name="operaDriverDirectory">The full path to the directory containing OperaDriver.exe.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.Opera.OperaOptions" /> to be used with the Opera driver.</param>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaDriver.#ctor(System.String,OpenQA.Selenium.Opera.OperaOptions,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Opera.OperaDriver" /> class using the specified path
to the directory containing OperaDriver.exe, options, and command timeout.
</summary>
<param name="operaDriverDirectory">The full path to the directory containing OperaDriver.exe.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.Opera.OperaOptions" /> to be used with the Opera driver.</param>
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaDriver.#ctor(OpenQA.Selenium.Opera.OperaDriverService,OpenQA.Selenium.Opera.OperaOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Opera.OperaDriver" /> class using the specified
<see cref="T:OpenQA.Selenium.Opera.OperaDriverService" /> and options.
</summary>
<param name="service">The <see cref="T:OpenQA.Selenium.Opera.OperaDriverService" /> to use.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.Opera.OperaOptions" /> used to initialize the driver.</param>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaDriver.#ctor(OpenQA.Selenium.Opera.OperaDriverService,OpenQA.Selenium.Opera.OperaOptions,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Opera.OperaDriver" /> class using the specified <see cref="T:OpenQA.Selenium.Opera.OperaDriverService" />.
</summary>
<param name="service">The <see cref="T:OpenQA.Selenium.Opera.OperaDriverService" /> to use.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.Opera.OperaOptions" /> to be used with the Opera driver.</param>
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
</member>
<member name="P:OpenQA.Selenium.Opera.OperaDriver.FileDetector">
<summary>
Gets or sets the <see cref="T:OpenQA.Selenium.IFileDetector" /> responsible for detecting
sequences of keystrokes representing file paths and names.
</summary>
<remarks>The Opera driver does not allow a file detector to be set,
as the server component of the Opera driver (OperaDriver.exe) only
allows uploads from the local computer environment. Attempting to set
this property has no effect, but does not throw an exception. If you
are attempting to run the Opera driver remotely, use <see cref="T:OpenQA.Selenium.Remote.RemoteWebDriver" />
in conjunction with a standalone WebDriver server.</remarks>
</member>
<member name="T:OpenQA.Selenium.Opera.OperaDriverService">
<summary>
Exposes the service provided by the native OperaDriver executable.
</summary>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaDriverService.#ctor(System.String,System.String,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Opera.OperaDriverService" /> class.
</summary>
<param name="executablePath">The full path to the OperaDriver executable.</param>
<param name="executableFileName">The file name of the OperaDriver executable.</param>
<param name="port">The port on which the OperaDriver executable should listen.</param>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaDriverService.CreateDefaultService">
<summary>
Creates a default instance of the OperaDriverService.
</summary>
<returns>A OperaDriverService that implements default settings.</returns>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaDriverService.CreateDefaultService(System.String)">
<summary>
Creates a default instance of the OperaDriverService using a specified path to the OperaDriver executable.
</summary>
<param name="driverPath">The directory containing the OperaDriver executable.</param>
<returns>A OperaDriverService using a random port.</returns>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaDriverService.CreateDefaultService(System.String,System.String)">
<summary>
Creates a default instance of the OperaDriverService using a specified path to the OperaDriver executable with the given name.
</summary>
<param name="driverPath">The directory containing the OperaDriver executable.</param>
<param name="driverExecutableFileName">The name of the OperaDriver executable file.</param>
<returns>A OperaDriverService using a random port.</returns>
</member>
<member name="P:OpenQA.Selenium.Opera.OperaDriverService.LogPath">
<summary>
Gets or sets the location of the log file written to by the OperaDriver executable.
</summary>
</member>
<member name="P:OpenQA.Selenium.Opera.OperaDriverService.UrlPathPrefix">
<summary>
Gets or sets the base URL path prefix for commands (e.g., "wd/url").
</summary>
</member>
<member name="P:OpenQA.Selenium.Opera.OperaDriverService.PortServerAddress">
<summary>
Gets or sets the address of a server to contact for reserving a port.
</summary>
</member>
<member name="P:OpenQA.Selenium.Opera.OperaDriverService.AndroidDebugBridgePort">
<summary>
Gets or sets the port on which the Android Debug Bridge is listening for commands.
</summary>
</member>
<member name="P:OpenQA.Selenium.Opera.OperaDriverService.EnableVerboseLogging">
<summary>
Gets or sets a value indicating whether to enable verbose logging for the OperaDriver executable.
Defaults to <see langword="false" />.
</summary>
</member>
<member name="P:OpenQA.Selenium.Opera.OperaDriverService.CommandLineArguments">
<summary>
Gets the command-line arguments for the driver service.
</summary>
</member>
<member name="T:OpenQA.Selenium.Opera.OperaOptions">
<summary>
Class to manage options specific to <see cref="T:OpenQA.Selenium.Opera.OperaDriver" /></summary>
<remarks>
Used with OperaDriver.exe for Chromium v0.1.0 and higher.
</remarks>
<example>
<code>
OperaOptions options = new OperaOptions();
options.AddExtensions("\path\to\extension.crx");
options.BinaryLocation = "\path\to\opera";
</code>
<para>
</para>
<para>For use with OperaDriver:</para>
<para>
</para>
<code>
OperaDriver driver = new OperaDriver(options);
</code>
<para>
</para>
<para>For use with RemoteWebDriver:</para>
<para>
</para>
<code>
RemoteWebDriver driver = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), options.ToCapabilities());
</code>
</example>
</member>
<member name="F:OpenQA.Selenium.Opera.OperaOptions.Capability">
<summary>
Gets the name of the capability used to store Opera options in
a <see cref="T:OpenQA.Selenium.Remote.DesiredCapabilities" /> object.
</summary>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaOptions.AddArgument(System.String)">
<summary>
Adds a single argument to the list of arguments to be appended to the Opera.exe command line.
</summary>
<param name="argument">The argument to add.</param>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaOptions.AddArguments(System.String[])">
<summary>
Adds arguments to be appended to the Opera.exe command line.
</summary>
<param name="argumentsToAdd">An array of arguments to add.</param>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaOptions.AddArguments(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Adds arguments to be appended to the Opera.exe command line.
</summary>
<param name="argumentsToAdd">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> object of arguments to add.</param>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaOptions.AddExcludedArgument(System.String)">
<summary>
Adds a single argument to be excluded from the list of arguments passed by default
to the Opera.exe command line by operadriver.exe.
</summary>
<param name="argument">The argument to exclude.</param>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaOptions.AddExcludedArguments(System.String[])">
<summary>
Adds arguments to be excluded from the list of arguments passed by default
to the Opera.exe command line by operadriver.exe.
</summary>
<param name="argumentsToExclude">An array of arguments to exclude.</param>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaOptions.AddExcludedArguments(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Adds arguments to be excluded from the list of arguments passed by default
to the Opera.exe command line by operadriver.exe.
</summary>
<param name="argumentsToExclude">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> object of arguments to exclude.</param>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaOptions.AddExtension(System.String)">
<summary>
Adds a path to a packed Opera extension (.crx file) to the list of extensions
to be installed in the instance of Opera.
</summary>
<param name="pathToExtension">The full path to the extension to add.</param>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaOptions.AddExtensions(System.String[])">
<summary>
Adds a list of paths to packed Opera extensions (.crx files) to be installed
in the instance of Opera.
</summary>
<param name="extensions">An array of full paths to the extensions to add.</param>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaOptions.AddExtensions(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Adds a list of paths to packed Opera extensions (.crx files) to be installed
in the instance of Opera.
</summary>
<param name="extensions">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of full paths to the extensions to add.</param>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaOptions.AddEncodedExtension(System.String)">
<summary>
Adds a base64-encoded string representing a Opera extension to the list of extensions
to be installed in the instance of Opera.
</summary>
<param name="extension">A base64-encoded string representing the extension to add.</param>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaOptions.AddEncodedExtensions(System.String[])">
<summary>
Adds a list of base64-encoded strings representing Opera extensions to the list of extensions
to be installed in the instance of Opera.
</summary>
<param name="extensions">An array of base64-encoded strings representing the extensions to add.</param>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaOptions.AddEncodedExtensions(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Adds a list of base64-encoded strings representing Opera extensions to be installed
in the instance of Opera.
</summary>
<param name="extensions">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of base64-encoded strings
representing the extensions to add.</param>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaOptions.AddUserProfilePreference(System.String,System.Object)">
<summary>
Adds a preference for the user-specific profile or "user data directory."
If the specified preference already exists, it will be overwritten.
</summary>
<param name="preferenceName">The name of the preference to set.</param>
<param name="preferenceValue">The value of the preference to set.</param>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaOptions.AddLocalStatePreference(System.String,System.Object)">
<summary>
Adds a preference for the local state file in the user's data directory for Opera.
If the specified preference already exists, it will be overwritten.
</summary>
<param name="preferenceName">The name of the preference to set.</param>
<param name="preferenceValue">The value of the preference to set.</param>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaOptions.AddAdditionalCapability(System.String,System.Object)">
<summary>
Provides a means to add additional capabilities not yet added as type safe options
for the Opera driver.
</summary>
<param name="capabilityName">The name of the capability to add.</param>
<param name="capabilityValue">The value of the capability to add.</param>
<exception cref="T:System.ArgumentException">
thrown when attempting to add a capability for which there is already a type safe option, or
when <paramref name="capabilityName" /> is <see langword="null" /> or the empty string.
</exception>
<remarks>Calling <see cref="M:OpenQA.Selenium.Opera.OperaOptions.AddAdditionalCapability(System.String,System.Object)" />
where <paramref name="capabilityName" /> has already been added will overwrite the
existing value with the new value in <paramref name="capabilityValue" />.
Also, by default, calling this method adds capabilities to the options object passed to
operadriver.exe.</remarks>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaOptions.AddAdditionalCapability(System.String,System.Object,System.Boolean)">
<summary>
Provides a means to add additional capabilities not yet added as type safe options
for the Opera driver.
</summary>
<param name="capabilityName">The name of the capability to add.</param>
<param name="capabilityValue">The value of the capability to add.</param>
<param name="isGlobalCapability">Indicates whether the capability is to be set as a global
capability for the driver instead of a Opera-specific option.</param>
<exception cref="T:System.ArgumentException">
thrown when attempting to add a capability for which there is already a type safe option, or
when <paramref name="capabilityName" /> is <see langword="null" /> or the empty string.
</exception>
<remarks>Calling <see cref="M:OpenQA.Selenium.Opera.OperaOptions.AddAdditionalCapability(System.String,System.Object,System.Boolean)" />
where <paramref name="capabilityName" /> has already been added will overwrite the
existing value with the new value in <paramref name="capabilityValue" /></remarks>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaOptions.ToCapabilities">
<summary>
Returns DesiredCapabilities for Opera with these options included as
capabilities. This does not copy the options. Further changes will be
reflected in the returned capabilities.
</summary>
<returns>The DesiredCapabilities for Opera with these options.</returns>
</member>
<member name="P:OpenQA.Selenium.Opera.OperaOptions.BinaryLocation">
<summary>
Gets or sets the location of the Opera browser's binary executable file.
</summary>
</member>
<member name="P:OpenQA.Selenium.Opera.OperaOptions.LeaveBrowserRunning">
<summary>
Gets or sets a value indicating whether Opera should be left running after the
OperaDriver instance is exited. Defaults to <see langword="false" />.
</summary>
</member>
<member name="P:OpenQA.Selenium.Opera.OperaOptions.Proxy">
<summary>
Gets or sets the proxy to use with this instance of Opera.
</summary>
</member>
<member name="P:OpenQA.Selenium.Opera.OperaOptions.Arguments">
<summary>
Gets the list of arguments appended to the Opera command line as a string array.
</summary>
</member>
<member name="P:OpenQA.Selenium.Opera.OperaOptions.Extensions">
<summary>
Gets the list of extensions to be installed as an array of base64-encoded strings.
</summary>
</member>
<member name="P:OpenQA.Selenium.Opera.OperaOptions.DebuggerAddress">
<summary>
Gets or sets the address of a Opera debugger server to connect to.
Should be of the form "{hostname|IP address}:port".
</summary>
</member>
<member name="P:OpenQA.Selenium.Opera.OperaOptions.MinidumpPath">
<summary>
Gets or sets the directory in which to store minidump files.
</summary>
</member>
<member name="T:OpenQA.Selenium.Opera.OperaWebElement">
<summary>
Provides a mechanism to get elements off the page for test
</summary>
</member>
<member name="M:OpenQA.Selenium.Opera.OperaWebElement.#ctor(OpenQA.Selenium.Opera.OperaDriver,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Opera.OperaWebElement" /> class
</summary>
<param name="parent">Driver in use</param>
<param name="elementId">Id of the element</param>
</member>
<member name="T:OpenQA.Selenium.PhantomJS.CommandLineArgumentNameAttribute">
<summary>
Allows the user to specify the name of an argument to be used on the command line for PhantomJS.
</summary>
</member>
<member name="M:OpenQA.Selenium.PhantomJS.CommandLineArgumentNameAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.PhantomJS.CommandLineArgumentNameAttribute" /> class.
</summary>
<param name="argumentName">The name of the argument to be used in the PhantomJS command line.</param>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.CommandLineArgumentNameAttribute.Name">
<summary>
Gets the name of the argument to be used in the PhantomJS command line.
</summary>
</member>
<member name="T:OpenQA.Selenium.PhantomJS.PhantomJSDriver">
<summary>
Provides a way to access PhantomJS to run your tests by creating a PhantomJSDriver instance
</summary>
<remarks>
When the WebDriver object has been instantiated the browser will load. The test can then navigate to the URL under test and
start your test.
</remarks>
<example>
<code>
[TestFixture]
public class Testing
{
private IWebDriver driver;
<para></para>
[SetUp]
public void SetUp()
{
driver = new PhantomJSDriver();
}
<para></para>
[Test]
public void TestGoogle()
{
driver.Navigate().GoToUrl("http://www.google.co.uk");
/*
* Rest of the test
*/
}
<para></para>
[TearDown]
public void TearDown()
{
driver.Quit();
driver.Dispose();
}
}
</code>
</example>
</member>
<member name="F:OpenQA.Selenium.PhantomJS.PhantomJSDriver.CommandExecutePhantomScript">
<summary>
Command name of the PhantomJS-specific command to execute native script in PhantomJS.
</summary>
</member>
<member name="M:OpenQA.Selenium.PhantomJS.PhantomJSDriver.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSDriver" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.PhantomJS.PhantomJSDriver.#ctor(OpenQA.Selenium.PhantomJS.PhantomJSOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSDriver" /> class with the desired options.
</summary>
<param name="options">The <see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSOptions" /> used to initialize the driver.</param>
</member>
<member name="M:OpenQA.Selenium.PhantomJS.PhantomJSDriver.#ctor(OpenQA.Selenium.PhantomJS.PhantomJSDriverService)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSDriver" /> class using the specified driver service.
</summary>
<param name="service">The <see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSDriverService" /> used to initialize the driver.</param>
</member>
<member name="M:OpenQA.Selenium.PhantomJS.PhantomJSDriver.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSDriver" /> class using the specified path
to the directory containing PhantomJS.exe.
</summary>
<param name="phantomJSDriverServerDirectory">The full path to the directory containing PhantomJS.exe.</param>
</member>
<member name="M:OpenQA.Selenium.PhantomJS.PhantomJSDriver.#ctor(System.String,OpenQA.Selenium.PhantomJS.PhantomJSOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSDriver" /> class using the specified path
to the directory containing PhantomJS.exe and options.
</summary>
<param name="phantomJSDriverServerDirectory">The full path to the directory containing PhantomJS.exe.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSOptions" /> used to initialize the driver.</param>
</member>
<member name="M:OpenQA.Selenium.PhantomJS.PhantomJSDriver.#ctor(System.String,OpenQA.Selenium.PhantomJS.PhantomJSOptions,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSDriver" /> class using the specified path
to the directory containing PhantomJS.exe, options, and command timeout.
</summary>
<param name="phantomJSDriverServerDirectory">The full path to the directory containing PhantomJS.exe.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSOptions" /> used to initialize the driver.</param>
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
</member>
<member name="M:OpenQA.Selenium.PhantomJS.PhantomJSDriver.#ctor(OpenQA.Selenium.PhantomJS.PhantomJSDriverService,OpenQA.Selenium.PhantomJS.PhantomJSOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSDriver" /> class using the specified
<see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSDriverService" /> and options.
</summary>
<param name="service">The <see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSDriverService" /> to use.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSOptions" /> used to initialize the driver.</param>
</member>
<member name="M:OpenQA.Selenium.PhantomJS.PhantomJSDriver.#ctor(OpenQA.Selenium.PhantomJS.PhantomJSDriverService,OpenQA.Selenium.PhantomJS.PhantomJSOptions,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSDriver" /> class using the specified <see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSDriverService" />.
</summary>
<param name="service">The <see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSDriverService" /> to use.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSOptions" /> used to initialize the driver.</param>
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
</member>
<member name="M:OpenQA.Selenium.PhantomJS.PhantomJSDriver.ExecutePhantomJS(System.String,System.Object[])">
<summary>
Execute a PhantomJS script fragment. Provides extra functionality not found in WebDriver
but available in PhantomJS.
</summary>
<param name="script">The fragment of PhantomJS JavaScript to execute.</param>
<param name="args">List of arguments to pass to the function that the script is wrapped in.
These can accessed in the script as 'arguments[0]', 'arguments[1]','arguments[2]', etc
</param>
<returns>The result of the evaluation.</returns>
<remarks>
<para>
See the <a href="https://github.com/ariya/phantomjs/wiki/API-Reference">PhantomJS API</a>
for details on what is available.
</para>
<para>
A 'page' variable pointing to currently selected page is available for use.
If there is no page yet, one is created.
</para>
<para>
When overriding any callbacks be sure to wrap in a try/catch block, as failures
may cause future WebDriver calls to fail.
</para>
<para>
Certain callbacks are used by GhostDriver (the PhantomJS WebDriver implementation)
already. Overriding these may cause the script to fail. It's a good idea to check
for existing callbacks before overriding.
</para>
</remarks>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriver.FileDetector">
<summary>
Gets or sets the <see cref="T:OpenQA.Selenium.IFileDetector" /> responsible for detecting
sequences of keystrokes representing file paths and names.
</summary>
<remarks>The PhantomJS driver does not allow a file detector to be set,
as PhantomJS only allows uploads from the local computer environment.
Attempting to set this property has no effect, but does not throw an
exception. If you are attempting to run the PhantomJS driver remotely,
use <see cref="T:OpenQA.Selenium.Remote.RemoteWebDriver" /> in conjunction with a standalone
WebDriver server.</remarks>
</member>
<member name="T:OpenQA.Selenium.PhantomJS.PhantomJSDriverService">
<summary>
Exposes the service provided by the native PhantomJS executable and GhostDriver JavaScript library.
</summary>
</member>
<member name="M:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.#ctor">
<summary>
Prevents a default instance of the <see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSDriverService" /> class from being created.
</summary>
<remarks>
This constructor is only used by the unit tests. It should not be
used in any other circumstances.
</remarks>
</member>
<member name="M:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.#ctor(System.String,System.String,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSDriverService" /> class.
</summary>
<param name="executablePath">The full path to the PhantomJS executable.</param>
<param name="executableFileName">The file name of the PhantomJS executable.</param>
<param name="port">The port on which the IEDriverServer executable should listen.</param>
</member>
<member name="M:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.CreateDefaultService">
<summary>
Creates a default instance of the PhantomJSDriverService.
</summary>
<returns>A PhantomJSDriverService that implements default settings.</returns>
</member>
<member name="M:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.CreateDefaultService(System.String)">
<summary>
Creates a default instance of the PhantomJSDriverService using a specified path to the PhantomJS executable.
</summary>
<param name="driverPath">The directory containing the PhantomJS executable.</param>
<returns>A PhantomJSDriverService using a random port.</returns>
</member>
<member name="M:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.CreateDefaultService(System.String,System.String)">
<summary>
Creates a default instance of the PhantomJSDriverService using a specified path to the PhantomJS executable with the given name.
</summary>
<param name="driverPath">The directory containing the PhantomJS executable.</param>
<param name="driverExecutableFileName">The name of the PhantomJS executable file.</param>
<returns>A PhantomJSDriverService using a random port.</returns>
</member>
<member name="M:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.AddArgument(System.String)">
<summary>
Adds a single argument to the list of arguments to be appended to the PhantomJS.exe command line.
</summary>
<param name="argument">The argument to add.</param>
</member>
<member name="M:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.AddArguments(System.String[])">
<summary>
Adds arguments to be appended to the PhantomJS.exe command line.
</summary>
<param name="arguments">An array of arguments to add.</param>
</member>
<member name="M:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.AddArguments(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Adds arguments to be appended to the PhantomJS.exe command line.
</summary>
<param name="arguments">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> object of arguments to add.</param>
</member>
<member name="M:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.ToJson">
<summary>
Serializes the service options to JSON to be used as a configuration file for PhantomJS.exe (via the --config argument).
</summary>
<returns>The JSON representation of the configured service options.</returns>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.CookiesFile">
<summary>
Gets or sets the file name used to store the persistent cookies.
</summary>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.DiskCache">
<summary>
Gets or sets a value indicating whether the disk cache is enabled (at desktop services cache storage location, default is no).
</summary>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.IgnoreSslErrors">
<summary>
Gets or sets a value indicating whether SSL errors are ignored, such as expired or self-signed certificate errors (default is no).
</summary>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.LoadImages">
<summary>
Gets or sets a value indicating whether all inlined images are loaded (default is yes).
</summary>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.LocalStoragePath">
<summary>
Gets or sets the path to save LocalStorage content and WebSQL content.
</summary>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.LocalStorageQuota">
<summary>
Gets or sets the maximum size to allow for data.
</summary>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.LocalToRemoteUrlAccess">
<summary>
Gets or sets a value indicating whether local content is allowed to access remote URL (default is no).
</summary>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.MaxDiskCacheSize">
<summary>
Gets or sets the size limit of the disk cache in KB.
</summary>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.OutputEncoding">
<summary>
Gets or sets the encoding used for terminal output (default is "utf8").
</summary>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.Proxy">
<summary>
Gets or sets the proxy server information (in the format of {address} or {address}:{port}).
</summary>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.ProxyType">
<summary>
Gets or sets the type of the proxy server ('http', 'socks5' or 'none').
</summary>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.ProxyAuthentication">
<summary>
Gets or sets the proxy authentication info (e.g. username:password).
</summary>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.ScriptEncoding">
<summary>
Gets or sets the encoding used for the starting script (default is "utf8").
</summary>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.SslProtocol">
<summary>
Gets or sets the SSL protocol for secure connections ('sslv3' (default), 'sslv2', 'tlsv1' or 'any').
</summary>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.SslCertificatesPath">
<summary>
Gets or sets the location for custom CA certificates (if none set, uses system default).
</summary>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.WebSecurity">
<summary>
Gets or sets a value indicating whether web security is enabled and forbids cross-domain XHR (default is yes).
</summary>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.GhostDriverPath">
<summary>
Gets or sets the location where the GhostDriver JavaScript file is located. This
allows the use of an external implementation of GhostDriver instead of the
implementation embedded inside the PhantomJS executable.
</summary>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.IPAddress">
<summary>
Gets or sets the IP address to use when starting the GhostDriver implementation
embedded in PhantomJS.
</summary>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.GridHubUrl">
<summary>
Gets or sets the URL of a Selenium Grid hub with which this PhantomJS instance should register.
</summary>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.LogFile">
<summary>
Gets or sets the location of the log file to which PhantomJS will write log
output. If this value is <see langword="null" /> or an empty string, the log
output will be written to the console window.
</summary>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.AdditionalArguments">
<summary>
Gets the list of arguments appended to the PhantomJS command line as a string array.
</summary>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.ConfigFile">
<summary>
Gets or sets the path to the JSON configuration file (in lieu of providing any other parameters).
</summary>
<remarks>If a <see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSDriverService" /> instance is serialized to JSON, it can be saved to a
file and used as a JSON configuration source for the PhantomJS.exe process.</remarks>
<example>
<code>
var configOptions = PhantomJSDriverService.CreateDefaultService()
{
CookiesFile = "cookiesFile",
DiskCache = true,
IgnoreSslErrors = true,
LoadImages = true,
LocalToRemoteUrlAccess = true,
MaxDiskCacheSize = 1000,
OutputEncoding = "abc",
Proxy = "address:999",
ProxyType = "socks5",
ScriptEncoding = "def",
SslProtocol = "sslv2",
WebSecurity = true,
};
string json = configOptions.ToJson();
File.WriteAllText(@"C:\temp\myconfig.json", json);
var driverService = PhantomJSDriver.CreateDefaultService();
driverService.ConfigFile = @"C:\temp\myconfig.json";
var driver = new PhantomJSDriver(driverService); // Launches PhantomJS.exe using JSON configuration file.
</code>
</example>
</member>
<member name="P:OpenQA.Selenium.PhantomJS.PhantomJSDriverService.CommandLineArguments">
<summary>
Gets the command-line arguments for the driver service.
</summary>
</member>
<member name="T:OpenQA.Selenium.PhantomJS.PhantomJSOptions">
<summary>
Class to manage options specific to <see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSDriver" /></summary>
<example>
<code>
PhantomJSOptions options = new PhantomJSOptions();
</code>
<para>
</para>
<para>For use with PhantomJSDriver:</para>
<para>
</para>
<code>
PhantomJSDriver driver = new PhantomJSDriver(options);
</code>
<para>
</para>
<para>For use with RemoteWebDriver:</para>
<para>
</para>
<code>
RemoteWebDriver driver = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), options.ToCapabilities());
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.PhantomJS.PhantomJSOptions.AddAdditionalCapability(System.String,System.Object)">
<summary>
Provides a means to add additional capabilities not yet added as type safe options
for the PhantomJS driver.
</summary>
<param name="capabilityName">The name of the capability to add.</param>
<param name="capabilityValue">The value of the capability to add.</param>
<exception cref="T:System.ArgumentException">
thrown when attempting to add a capability for which there is already a type safe option, or
when <paramref name="capabilityName" /> is <see langword="null" /> or the empty string.
</exception>
<remarks>Calling <see cref="M:OpenQA.Selenium.PhantomJS.PhantomJSOptions.AddAdditionalCapability(System.String,System.Object)" /> where <paramref name="capabilityName" />
has already been added will overwrite the existing value with the new value in <paramref name="capabilityValue" /></remarks>
</member>
<member name="M:OpenQA.Selenium.PhantomJS.PhantomJSOptions.ToCapabilities">
<summary>
Returns DesiredCapabilities for PhantomJS with these options included as
capabilities. This copies the options. Further changes will not be
reflected in the returned capabilities.
</summary>
<returns>The DesiredCapabilities for PhantomJS with these options.</returns>
</member>
<member name="T:OpenQA.Selenium.PhantomJS.PhantomJSWebElement">
<summary>
PhantomJSWebElement allows you to have access to specific items that are found on the page.
</summary>
<seealso cref="T:OpenQA.Selenium.IWebElement" />
<seealso cref="T:OpenQA.Selenium.ILocatable" />
<example>
<code>
[Test]
public void TestGoogle()
{
driver = new PhantomJSDriver();
PhantomJSWebElement elem = driver.FindElement(By.Name("q"));
elem.SendKeys("Cheese please!");
}
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.PhantomJS.PhantomJSWebElement.#ctor(OpenQA.Selenium.PhantomJS.PhantomJSDriver,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.PhantomJS.PhantomJSWebElement" /> class.
</summary>
<param name="parent">Driver in use.</param>
<param name="id">ID of the element.</param>
</member>
<member name="T:OpenQA.Selenium.Remote.CapabilityType">
<summary>
Provides types of capabilities for the DesiredCapabilities object.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.CapabilityType.BrowserName">
<summary>
Capability name used for the browser name.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.CapabilityType.Platform">
<summary>
Capability name used for the browser platform.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.CapabilityType.Version">
<summary>
Capability name used for the browser version.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.CapabilityType.IsJavaScriptEnabled">
<summary>
Capability name used to indicate whether JavaScript is enabled for the browser.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.CapabilityType.TakesScreenshot">
<summary>
Capability name used to indicate whether the browser can take screenshots.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.CapabilityType.HandlesAlerts">
<summary>
Capability name used to indicate whether the browser can handle alerts.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.CapabilityType.SupportsFindingByCss">
<summary>
Capability name used to indicate whether the browser can find elements via CSS selectors.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.CapabilityType.Proxy">
<summary>
Capability name used for the browser proxy.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.CapabilityType.Rotatable">
<summary>
Capability name used to indicate whether the browser supports rotation.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.CapabilityType.AcceptSslCertificates">
<summary>
Capability name used to indicate whether the browser accepts SSL certificates.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.CapabilityType.HasNativeEvents">
<summary>
Capability name used to indicate whether the browser uses native events.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.CapabilityType.UnexpectedAlertBehavior">
<summary>
Capability name used to indicate how the browser handles unexpected alerts.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.CapabilityType.PageLoadStrategy">
<summary>
Capability name used to indicate the page load strategy for the browser.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.CapabilityType.LoggingPreferences">
<summary>
Capability name used to indicate the logging preferences for the session.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.CapabilityType.DisableOverlappedElementCheck">
<summary>
Capability name used to disable the check for overlapping elements.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.CapabilityType.EnableProfiling">
<summary>
Capability name used to enable the profiling log for the session.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.CapabilityType.SupportsLocationContext">
<summary>
Capability name used to indicate whether the driver supports geolocation context.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.CapabilityType.SupportsApplicationCache">
<summary>
Capability name used to indicate whether the driver supports application cache.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.CapabilityType.SupportsWebStorage">
<summary>
Capability name used to indicate whether the driver supports web storage.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.Command">
<summary>
Provides a way to send commands to the remote server
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.Command.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.Command" /> class using a command name and a JSON-encoded string for the parameters.
</summary>
<param name="name">Name of the command</param>
<param name="jsonParameters">Parameters for the command as a JSON-encoded string.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.Command.#ctor(OpenQA.Selenium.Remote.SessionId,System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.Command" /> class for a Session
</summary>
<param name="sessionId">Session ID the driver is using</param>
<param name="name">Name of the command</param>
<param name="parameters">Parameters for that command</param>
</member>
<member name="M:OpenQA.Selenium.Remote.Command.ToString">
<summary>
Returns a string of the Command object
</summary>
<returns>A string representation of the Command Object</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.Command.ConvertParametersFromJson(System.String)">
<summary>
Gets the command parameters as a <see cref="T:System.Collections.Generic.Dictionary`2" />, with a string key, and an object value.
</summary>
<param name="value">The JSON-encoded string representing the command parameters.</param>
<returns>A <see cref="T:System.Collections.Generic.Dictionary`2" /> with a string keys, and an object value. </returns>
</member>
<member name="P:OpenQA.Selenium.Remote.Command.SessionId">
<summary>
Gets the SessionID of the command
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.Command.Name">
<summary>
Gets the command name
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.Command.Parameters">
<summary>
Gets the parameters of the command
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.Command.ParametersAsJsonString">
<summary>
Gets the parameters of the command as a JSON-encoded string.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.CommandInfo">
<summary>
Provides the execution information for a <see cref="T:OpenQA.Selenium.Remote.DriverCommand" />.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.CommandInfo.PostCommand">
<summary>
POST verb for the command info
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.CommandInfo.GetCommand">
<summary>
GET verb for the command info
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.CommandInfo.DeleteCommand">
<summary>
DELETE verb for the command info
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.CommandInfo.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.CommandInfo" /> class
</summary>
<param name="method">Method of the Command</param>
<param name="resourcePath">Relative URL path to the resource used to execute the command</param>
</member>
<member name="M:OpenQA.Selenium.Remote.CommandInfo.CreateWebRequest(System.Uri,OpenQA.Selenium.Remote.Command)">
<summary>
Creates a web request for your command
</summary>
<param name="baseUri">Uri that will have the command run against</param>
<param name="commandToExecute">Command to execute</param>
<returns>A web request of what has been run</returns>
</member>
<member name="P:OpenQA.Selenium.Remote.CommandInfo.ResourcePath">
<summary>
Gets the URL representing the path to the resource.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.CommandInfo.Method">
<summary>
Gets the HTTP method associated with the command.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.CommandInfoRepository">
<summary>
Holds the information about all commands specified by the JSON wire protocol.
This class cannot be inherited, as it is intended to be a singleton, and
allowing subclasses introduces the possibility of multiple instances.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.CommandInfoRepository.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.CommandInfoRepository" /> class.
Protected accessibility prevents a default instance from being created.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.CommandInfoRepository.GetCommandInfo(System.String)">
<summary>
Gets the <see cref="T:OpenQA.Selenium.Remote.CommandInfo" /> for a <see cref="T:OpenQA.Selenium.Remote.DriverCommand" />.
</summary>
<param name="commandName">The <see cref="T:OpenQA.Selenium.Remote.DriverCommand" /> for which to get the information.</param>
<returns>The <see cref="T:OpenQA.Selenium.Remote.CommandInfo" /> for the specified command.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.CommandInfoRepository.TryAddCommand(System.String,OpenQA.Selenium.Remote.CommandInfo)">
<summary>
Tries to add a command to the list of known commands.
</summary>
<param name="commandName">Name of the command.</param>
<param name="commandInfo">The command information.</param>
<returns>
<see langword="true" /> if the new command has been added successfully; otherwise, <see langword="false" />.</returns>
<remarks>
This method is used by WebDriver implementations to add additional custom driver-specific commands.
This method will not overwrite existing commands for a specific name, and will return <see langword="false" />
in that case.
</remarks>
</member>
<member name="M:OpenQA.Selenium.Remote.CommandInfoRepository.InitializeCommandDictionary">
<summary>
Initializes the dictionary of commands for the CommandInfoRepository
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.CommandInfoRepository.SpecificationLevel">
<summary>
Gets the level of the W3C WebDriver specification that this repository supports.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.DesiredCapabilities">
<summary>
Class to Create the capabilities of the browser you require for <see cref="T:OpenQA.Selenium.IWebDriver" />.
If you wish to use default values use the static methods
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.DesiredCapabilities.#ctor(System.String,System.String,OpenQA.Selenium.Platform)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.DesiredCapabilities" /> class
</summary>
<param name="browser">Name of the browser e.g. firefox, internet explorer, safari</param>
<param name="version">Version of the browser</param>
<param name="platform">The platform it works on</param>
</member>
<member name="M:OpenQA.Selenium.Remote.DesiredCapabilities.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.DesiredCapabilities" /> class
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.DesiredCapabilities.#ctor(System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.DesiredCapabilities" /> class
</summary>
<param name="rawMap">Dictionary of items for the remote driver</param>
<example>
<code>
DesiredCapabilities capabilities = new DesiredCapabilities(new Dictionary<![CDATA[<string,object>]]>(){["browserName","firefox"],["version",string.Empty],["javaScript",true]});
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Remote.DesiredCapabilities.Firefox">
<summary>
Method to return a new DesiredCapabilities using defaults
</summary>
<returns>New instance of DesiredCapabilities for use with Firefox</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.DesiredCapabilities.PhantomJS">
<summary>
Method to return a new DesiredCapabilities using defaults
</summary>
<returns>New instance of DesiredCapabilities for use with Firefox</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.DesiredCapabilities.InternetExplorer">
<summary>
Method to return a new DesiredCapabilities using defaults
</summary>
<returns>New instance of DesiredCapabilities for use with Internet Explorer</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.DesiredCapabilities.Edge">
<summary>
Method to return a new DesiredCapabilities using defaults
</summary>
<returns>New instance of DesiredCapabilities for use with Microsoft Edge</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.DesiredCapabilities.HtmlUnit">
<summary>
Method to return a new DesiredCapabilities using defaults
</summary>
<returns>New instance of DesiredCapabilities for use with HTMLUnit</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.DesiredCapabilities.HtmlUnitWithJavaScript">
<summary>
Method to return a new DesiredCapabilities using defaults
</summary>
<returns>New instance of DesiredCapabilities for use with HTMLUnit with JS</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.DesiredCapabilities.IPhone">
<summary>
Method to return a new DesiredCapabilities using defaults
</summary>
<returns>New instance of DesiredCapabilities for use with iPhone</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.DesiredCapabilities.IPad">
<summary>
Method to return a new DesiredCapabilities using defaults
</summary>
<returns>New instance of DesiredCapabilities for use with iPad</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.DesiredCapabilities.Chrome">
<summary>
Method to return a new DesiredCapabilities using defaults
</summary>
<returns>New instance of DesiredCapabilities for use with Chrome</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.DesiredCapabilities.Android">
<summary>
Method to return a new DesiredCapabilities using defaults
</summary>
<returns>New instance of DesiredCapabilities for use with Android</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.DesiredCapabilities.Opera">
<summary>
Method to return a new DesiredCapabilities using defaults
</summary>
<returns>New instance of DesiredCapabilities for use with Opera</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.DesiredCapabilities.Safari">
<summary>
Method to return a new DesiredCapabilities using defaults
</summary>
<returns>New instance of DesiredCapabilities for use with Safari</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.DesiredCapabilities.HasCapability(System.String)">
<summary>
Gets a value indicating whether the browser has a given capability.
</summary>
<param name="capability">The capability to get.</param>
<returns>Returns <see langword="true" /> if the browser has the capability; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.DesiredCapabilities.GetCapability(System.String)">
<summary>
Gets a capability of the browser.
</summary>
<param name="capability">The capability to get.</param>
<returns>An object associated with the capability, or <see langword="null" />
if the capability is not set on the browser.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.DesiredCapabilities.SetCapability(System.String,System.Object)">
<summary>
Sets a capability of the browser.
</summary>
<param name="capability">The capability to get.</param>
<param name="capabilityValue">The value for the capability.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.DesiredCapabilities.ToDictionary">
<summary>
Converts the <see cref="T:OpenQA.Selenium.ICapabilities" /> object to a <see cref="T:System.Collections.Generic.Dictionary`2" />.
</summary>
<returns>The <see cref="T:System.Collections.Generic.Dictionary`2" /> containing the capabilities.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.DesiredCapabilities.GetHashCode">
<summary>
Return HashCode for the DesiredCapabilities that has been created
</summary>
<returns>Integer of HashCode generated</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.DesiredCapabilities.ToString">
<summary>
Return a string of capabilities being used
</summary>
<returns>String of capabilities being used</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.DesiredCapabilities.Equals(System.Object)">
<summary>
Compare two DesiredCapabilities and will return either true or false
</summary>
<param name="obj">DesiredCapabilities you wish to compare</param>
<returns>true if they are the same or false if they are not</returns>
</member>
<member name="P:OpenQA.Selenium.Remote.DesiredCapabilities.BrowserName">
<summary>
Gets the browser name
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.DesiredCapabilities.Platform">
<summary>
Gets or sets the platform
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.DesiredCapabilities.Version">
<summary>
Gets the browser version
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.DesiredCapabilities.IsJavaScriptEnabled">
<summary>
Gets or sets a value indicating whether the browser is JavaScript enabled
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.DesiredCapabilities.CapabilitiesDictionary">
<summary>
Gets the internal capabilities dictionary.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.DriverCommand">
<summary>
Values describing the list of commands understood by a remote server using the JSON wire protocol.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.DefineDriverMapping">
<summary>
Represents the Define Driver Mapping command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.Status">
<summary>
Represents the Status command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.NewSession">
<summary>
Represents a New Session command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetSessionList">
<summary>
Represents the Get Session List command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetSessionCapabilities">
<summary>
Represents the Get Session Capabilities command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.Close">
<summary>
Represents a Browser close command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.Quit">
<summary>
Represents a browser quit command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.Get">
<summary>
Represents a GET command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GoBack">
<summary>
Represents a Browser going back command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GoForward">
<summary>
Represents a Browser going forward command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.Refresh">
<summary>
Represents a Browser refreshing command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.AddCookie">
<summary>
Represents adding a cookie command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetAllCookies">
<summary>
Represents getting all cookies command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetCookie">
<summary>
Represents getting cookie command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.DeleteCookie">
<summary>
Represents deleting a cookie command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.DeleteAllCookies">
<summary>
Represents Deleting all cookies command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.FindElement">
<summary>
Represents FindElement command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.FindElements">
<summary>
Represents FindElements command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.FindChildElement">
<summary>
Represents FindChildElement command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.FindChildElements">
<summary>
Represents FindChildElements command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.DescribeElement">
<summary>
Describes an element
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.ClearElement">
<summary>
Represents ClearElement command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.ClickElement">
<summary>
Represents ClickElement command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.SendKeysToElement">
<summary>
Represents SendKeysToElements command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.TapElement">
<summary>
Represents TapElement command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.SubmitElement">
<summary>
Represents SubmitElement command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetCurrentWindowHandle">
<summary>
Represents GetCurrentWindowHandle command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetWindowHandles">
<summary>
Represents GetWindowHandles command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.SwitchToWindow">
<summary>
Represents SwitchToWindow command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.SwitchToFrame">
<summary>
Represents SwitchToFrame command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.SwitchToParentFrame">
<summary>
Represents SwitchToParentFrame command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetActiveElement">
<summary>
Represents GetActiveElement command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetCurrentUrl">
<summary>
Represents GetCurrentUrl command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetPageSource">
<summary>
Represents GetPageSource command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetTitle">
<summary>
Represents GetTitle command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.ExecuteScript">
<summary>
Represents ExecuteScript command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.ExecuteAsyncScript">
<summary>
Represents ExecuteAsyncScript command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetElementText">
<summary>
Represents GetElementText command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetElementTagName">
<summary>
Represents GetElementTagName command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.IsElementSelected">
<summary>
Represents IsElementSelected command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.IsElementEnabled">
<summary>
Represents IsElementEnabled command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.IsElementDisplayed">
<summary>
Represents IsElementDisplayed command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetElementLocation">
<summary>
Represents GetElementLocation command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetElementLocationOnceScrolledIntoView">
<summary>
Represents GetElementLocationOnceScrolledIntoView command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetElementSize">
<summary>
Represents GetElementSize command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetElementRect">
<summary>
Represents GetElementRect command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetElementAttribute">
<summary>
Represents GetElementAttribute command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetElementProperty">
<summary>
Represents GetElementProperty command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetElementValueOfCssProperty">
<summary>
Represents GetElementValueOfCSSProperty command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.ElementEquals">
<summary>
Represents ElementEquals command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.Screenshot">
<summary>
Represents Screenshot command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.ElementScreenshot">
<summary>
Represents the ElementScreenshot command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetOrientation">
<summary>
Represents GetOrientation command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.SetOrientation">
<summary>
Represents SetOrientation command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetWindowSize">
<summary>
Represents GetWindowSize command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.SetWindowSize">
<summary>
Represents SetWindowSize command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetWindowPosition">
<summary>
Represents GetWindowPosition command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.SetWindowPosition">
<summary>
Represents SetWindowPosition command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.MaximizeWindow">
<summary>
Represents MaximizeWindow command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.FullScreenWindow">
<summary>
Represents FullScreenWindow command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.DismissAlert">
<summary>
Represents the DismissAlert command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.AcceptAlert">
<summary>
Represents the AcceptAlert command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetAlertText">
<summary>
Represents the GetAlertText command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.SetAlertValue">
<summary>
Represents the SetAlertValue command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.SetAlertCredentials">
<summary>
Represents the Authenticate command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.ImplicitlyWait">
<summary>
Represents the ImplicitlyWait command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.SetAsyncScriptTimeout">
<summary>
Represents the SetAsyncScriptTimeout command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.SetTimeout">
<summary>
Represents the SetTimeout command
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.Actions">
<summary>
Represents the Actions command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.MouseClick">
<summary>
Represents the MouseClick command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.MouseDoubleClick">
<summary>
Represents the MouseDoubleClick command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.MouseDown">
<summary>
Represents the MouseDown command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.MouseUp">
<summary>
Represents the MouseUp command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.MouseMoveTo">
<summary>
Represents the MouseMoveTo command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.SendKeysToActiveElement">
<summary>
Represents the SendKeysToActiveElement command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.UploadFile">
<summary>
Represents the UploadFile command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.TouchSingleTap">
<summary>
Represents the TouchSingleTap command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.TouchPress">
<summary>
Represents the TouchPress command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.TouchRelease">
<summary>
Represents the TouchRelease command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.TouchMove">
<summary>
Represents the TouchMove command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.TouchScroll">
<summary>
Represents the TouchScroll command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.TouchDoubleTap">
<summary>
Represents the TouchDoubleTap command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.TouchLongPress">
<summary>
Represents the TouchLongPress command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.TouchFlick">
<summary>
Represents the TouchFlick command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetLocation">
<summary>
Represents the GetLocation command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.SetLocation">
<summary>
Represents the SetLocation command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetAppCache">
<summary>
Represents the GetAppCache command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetAppCacheStatus">
<summary>
Represents the application cache GetStatus command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.ClearAppCache">
<summary>
Represents the ClearAppCache command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetLocalStorageItem">
<summary>
Represents the GetLocalStorageItem command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetLocalStorageKeys">
<summary>
Represents the GetLocalStorageKeys command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.SetLocalStorageItem">
<summary>
Represents the SetLocalStorageItem command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.RemoveLocalStorageItem">
<summary>
Represents the RemoveLocalStorageItem command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.ClearLocalStorage">
<summary>
Represents the ClearLocalStorage command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetLocalStorageSize">
<summary>
Represents the GetLocalStorageSize command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetSessionStorageItem">
<summary>
Represents the GetSessionStorageItem command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetSessionStorageKeys">
<summary>
Represents the GetSessionStorageKeys command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.SetSessionStorageItem">
<summary>
Represents the SetSessionStorageItem command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.RemoveSessionStorageItem">
<summary>
Represents the RemoveSessionStorageItem command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.ClearSessionStorage">
<summary>
Represents the ClearSessionStorage command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetSessionStorageSize">
<summary>
Represents the GetSessionStorageSize command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetAvailableLogTypes">
<summary>
Represents the GetAvailableLogTypes command.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.DriverCommand.GetLog">
<summary>
Represents the GetLog command.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.DriverServiceCommandExecutor">
<summary>
Provides a mechanism to execute commands on the browser
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.DriverServiceCommandExecutor.#ctor(OpenQA.Selenium.DriverService,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.DriverServiceCommandExecutor" /> class.
</summary>
<param name="driverService">The <see cref="T:OpenQA.Selenium.DriverService" /> that drives the browser.</param>
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.DriverServiceCommandExecutor.#ctor(OpenQA.Selenium.DriverService,System.TimeSpan,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.DriverServiceCommandExecutor" /> class.
</summary>
<param name="driverService">The <see cref="T:OpenQA.Selenium.DriverService" /> that drives the browser.</param>
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
<param name="enableKeepAlive">
<see langword="true" /> if the KeepAlive header should be sent
with HTTP requests; otherwise, <see langword="false" />.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.DriverServiceCommandExecutor.Execute(OpenQA.Selenium.Remote.Command)">
<summary>
Executes a command
</summary>
<param name="commandToExecute">The command you wish to execute</param>
<returns>A response from the browser</returns>
</member>
<member name="P:OpenQA.Selenium.Remote.DriverServiceCommandExecutor.CommandInfoRepository">
<summary>
Gets the <see cref="P:OpenQA.Selenium.Remote.DriverServiceCommandExecutor.CommandInfoRepository" /> object associated with this executor.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.ErrorResponse">
<summary>
Provides a way to store errors from a response
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.ErrorResponse.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.ErrorResponse" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.ErrorResponse.#ctor(System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.ErrorResponse" /> class using the specified values.
</summary>
<param name="responseValue">A <see cref="T:System.Collections.Generic.Dictionary`2" /> containing names and values of
the properties of this <see cref="T:OpenQA.Selenium.Remote.ErrorResponse" />.</param>
</member>
<member name="P:OpenQA.Selenium.Remote.ErrorResponse.Message">
<summary>
Gets or sets the message from the response
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.ErrorResponse.ClassName">
<summary>
Gets or sets the class name that threw the error
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.ErrorResponse.Screenshot">
<summary>
Gets or sets the screenshot of the error
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.ErrorResponse.StackTrace">
<summary>
Gets or sets the stack trace of the error
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.HttpCommandExecutor">
<summary>
Provides a way of executing Commands over HTTP
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.HttpCommandExecutor.#ctor(System.Uri,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.HttpCommandExecutor" /> class
</summary>
<param name="addressOfRemoteServer">Address of the WebDriver Server</param>
<param name="timeout">The timeout within which the server must respond.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.HttpCommandExecutor.#ctor(System.Uri,System.TimeSpan,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.HttpCommandExecutor" /> class
</summary>
<param name="addressOfRemoteServer">Address of the WebDriver Server</param>
<param name="timeout">The timeout within which the server must respond.</param>
<param name="enableKeepAlive">
<see langword="true" /> if the KeepAlive header should be sent
with HTTP requests; otherwise, <see langword="false" />.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.HttpCommandExecutor.Execute(OpenQA.Selenium.Remote.Command)">
<summary>
Executes a command
</summary>
<param name="commandToExecute">The command you wish to execute</param>
<returns>A response from the browser</returns>
</member>
<member name="P:OpenQA.Selenium.Remote.HttpCommandExecutor.CommandInfoRepository">
<summary>
Gets the repository of objects containin information about commands.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.LocalFileDetector">
<summary>
Represents a file detector for determining whether a file
must be uploaded to a remote server.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.LocalFileDetector.IsFile(System.String)">
<summary>
Returns a value indicating whether a specified key sequence represents
a file name and path.
</summary>
<param name="keySequence">The sequence to test for file existence.</param>
<returns>
<see langword="true" /> if the key sequence represents a file; otherwise, <see langword="false" />.</returns>
</member>
<member name="T:OpenQA.Selenium.Remote.RemoteAlert">
<summary>
Defines the interface through which the user can manipulate JavaScript alerts.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteAlert.#ctor(OpenQA.Selenium.Remote.RemoteWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteAlert" /> class.
</summary>
<param name="driver">The <see cref="T:OpenQA.Selenium.Remote.RemoteWebDriver" /> for which the alerts will be managed.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteAlert.Dismiss">
<summary>
Dismisses the alert.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteAlert.Accept">
<summary>
Accepts the alert.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteAlert.SendKeys(System.String)">
<summary>
Sends keys to the alert.
</summary>
<param name="keysToSend">The keystrokes to send.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteAlert.SetAuthenticationCredentials(System.String,System.String)">
<summary>
Sets the user name and password in an alert prompting for credentials.
</summary>
<param name="userName">The user name to set.</param>
<param name="password">The password to set.</param>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteAlert.Text">
<summary>
Gets the text of the alert.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.RemoteApplicationCache">
<summary>
Defines the interface through which the user can manipulate application cache.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteApplicationCache.#ctor(OpenQA.Selenium.Remote.RemoteWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteApplicationCache" /> class.
</summary>
<param name="driver">The <see cref="T:OpenQA.Selenium.Remote.RemoteWebDriver" /> for which the application cache will be managed.</param>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteApplicationCache.Status">
<summary>
Gets the current state of the application cache.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.RemoteCookieJar">
<summary>
Defines an interface allowing the user to manipulate cookies on the current page.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteCookieJar.#ctor(OpenQA.Selenium.Remote.RemoteWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteCookieJar" /> class.
</summary>
<param name="driver">The driver that is currently in use</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteCookieJar.AddCookie(OpenQA.Selenium.Cookie)">
<summary>
Method for creating a cookie in the browser
</summary>
<param name="cookie">
<see cref="T:OpenQA.Selenium.Cookie" /> that represents a cookie in the browser</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteCookieJar.DeleteCookieNamed(System.String)">
<summary>
Delete the cookie by passing in the name of the cookie
</summary>
<param name="name">The name of the cookie that is in the browser</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteCookieJar.DeleteCookie(OpenQA.Selenium.Cookie)">
<summary>
Delete a cookie in the browser by passing in a copy of a cookie
</summary>
<param name="cookie">An object that represents a copy of the cookie that needs to be deleted</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteCookieJar.DeleteAllCookies">
<summary>
Delete All Cookies that are present in the browser
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteCookieJar.GetCookieNamed(System.String)">
<summary>
Method for returning a getting a cookie by name
</summary>
<param name="name">name of the cookie that needs to be returned</param>
<returns>A Cookie from the name</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteCookieJar.GetAllCookies">
<summary>
Method for getting a Collection of Cookies that are present in the browser
</summary>
<returns>ReadOnlyCollection of Cookies in the browser</returns>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteCookieJar.AllCookies">
<summary>
Gets all cookies defined for the current page.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.RemoteCoordinates">
<summary>
Defines the interface through which the user can discover where an element is on the screen.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteCoordinates.#ctor(OpenQA.Selenium.Remote.RemoteWebElement)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteCoordinates" /> class.
</summary>
<param name="element">The <see cref="T:OpenQA.Selenium.Remote.RemoteWebElement" /> to be located.</param>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteCoordinates.LocationOnScreen">
<summary>
Gets the location of an element in absolute screen coordinates.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteCoordinates.LocationInViewport">
<summary>
Gets the location of an element relative to the origin of the view port.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteCoordinates.LocationInDom">
<summary>
Gets the location of an element's position within the HTML DOM.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteCoordinates.AuxiliaryLocator">
<summary>
Gets a locator providing a user-defined location for this element.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.RemoteKeyboard">
<summary>
Defines the interface through which the user can execute advanced keyboard interactions.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteKeyboard.#ctor(OpenQA.Selenium.Remote.RemoteWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteKeyboard" /> class.
</summary>
<param name="driver">The <see cref="T:OpenQA.Selenium.Remote.RemoteWebDriver" /> for which the keyboard will be managed.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteKeyboard.SendKeys(System.String)">
<summary>
Sends a sequence of keystrokes to the target.
</summary>
<param name="keySequence">A string representing the keystrokes to send.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteKeyboard.PressKey(System.String)">
<summary>
Presses a key.
</summary>
<param name="keyToPress">The key value representing the key to press.</param>
<remarks>The key value must be one of the values from the <see cref="T:OpenQA.Selenium.Keys" /> class.</remarks>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteKeyboard.ReleaseKey(System.String)">
<summary>
Releases a key.
</summary>
<param name="keyToRelease">The key value representing the key to release.</param>
<remarks>The key value must be one of the values from the <see cref="T:OpenQA.Selenium.Keys" /> class.</remarks>
</member>
<member name="T:OpenQA.Selenium.Remote.RemoteLocalStorage">
<summary>
Defines the interface through which the user can manipulate local storage.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteLocalStorage.#ctor(OpenQA.Selenium.Remote.RemoteWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteLocalStorage" /> class.
</summary>
<param name="driver">The <see cref="T:OpenQA.Selenium.Remote.RemoteWebDriver" /> for which the application cache will be managed.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteLocalStorage.GetItem(System.String)">
<summary>
Returns local storage value given a key.
</summary>
<param name="key">The key value for the item in storage.</param>
<returns>A local storage <see cref="T:System.String" /> value given a key, if present, otherwise returns null.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteLocalStorage.KeySet">
<summary>
Returns a read-only list of local storage keys.
</summary>
<returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1">read-only list</see> of local storage keys.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteLocalStorage.SetItem(System.String,System.String)">
<summary>
Sets local storage entry using given key/value pair.
</summary>
<param name="key">local storage key</param>
<param name="value">local storage value</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteLocalStorage.RemoveItem(System.String)">
<summary>
Removes local storage entry for the given key.
</summary>
<param name="key">key to be removed from the list</param>
<returns>Response value <see cref="T:System.String" />for the given key.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteLocalStorage.Clear">
<summary>
Removes all entries from the local storage.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteLocalStorage.Count">
<summary>
Gets the number of items in local storage.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.RemoteLocationContext">
<summary>
Defines the interface through which the user can manipulate browser location.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteLocationContext.#ctor(OpenQA.Selenium.Remote.RemoteWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteLocationContext" /> class.
</summary>
<param name="driver">The <see cref="T:OpenQA.Selenium.Remote.RemoteWebDriver" /> for which the application cache will be managed.</param>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteLocationContext.PhysicalLocation">
<summary>
Gets or sets a value indicating the physical location of the browser.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.RemoteLogs">
<summary>
Provides a mechanism for examining logs for the driver during the test.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteLogs.#ctor(OpenQA.Selenium.Remote.RemoteWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteLogs" /> class.
</summary>
<param name="driver">Instance of the driver currently in use</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteLogs.GetLog(System.String)">
<summary>
Gets the set of <see cref="T:OpenQA.Selenium.LogEntry" /> objects for a specified log.
</summary>
<param name="logKind">The log for which to retrieve the log entries.
Log types can be found in the <see cref="T:OpenQA.Selenium.LogType" /> class.</param>
<returns>The list of <see cref="T:OpenQA.Selenium.LogEntry" /> objects for the specified log.</returns>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteLogs.AvailableLogTypes">
<summary>
Gets the list of available log types for this driver.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.RemoteMouse">
<summary>
Defines the interface through which the user can execute advanced mouse interactions.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteMouse.#ctor(OpenQA.Selenium.Remote.RemoteWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteMouse" /> class.
</summary>
<param name="driver">The <see cref="T:OpenQA.Selenium.Remote.RemoteWebDriver" /> for which the mouse will be managed.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteMouse.Click(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Clicks at a set of coordinates using the primary mouse button.
</summary>
<param name="where">An <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> describing where to click.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteMouse.DoubleClick(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Double-clicks at a set of coordinates.
</summary>
<param name="where">A <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> describing where to double-click.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteMouse.MouseDown(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Presses the primary mouse button at a set of coordinates.
</summary>
<param name="where">A <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> describing where to press the mouse button down.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteMouse.MouseUp(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Releases the primary mouse button at a set of coordinates.
</summary>
<param name="where">A <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> describing where to release the mouse button.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteMouse.MouseMove(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Moves the mouse to the specified set of coordinates.
</summary>
<param name="where">A <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> describing where to move the mouse to.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteMouse.MouseMove(OpenQA.Selenium.Interactions.Internal.ICoordinates,System.Int32,System.Int32)">
<summary>
Moves the mouse to the specified set of coordinates.
</summary>
<param name="where">A <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> describing where to click.</param>
<param name="offsetX">A horizontal offset from the coordinates specified in <paramref name="where" />.</param>
<param name="offsetY">A vertical offset from the coordinates specified in <paramref name="where" />.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteMouse.ContextClick(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Clicks at a set of coordinates using the secondary mouse button.
</summary>
<param name="where">A <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> describing where to click.</param>
</member>
<member name="T:OpenQA.Selenium.Remote.RemoteNavigator">
<summary>
Provides a mechanism for Navigating with the driver.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteNavigator.#ctor(OpenQA.Selenium.Remote.RemoteWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteNavigator" /> class
</summary>
<param name="driver">Driver in use</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteNavigator.Back">
<summary>
Move the browser back
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteNavigator.Forward">
<summary>
Move the browser forward
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteNavigator.GoToUrl(System.String)">
<summary>
Navigate to a url for your test
</summary>
<param name="url">String of where you want the browser to go to</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteNavigator.GoToUrl(System.Uri)">
<summary>
Navigate to a url for your test
</summary>
<param name="url">Uri object of where you want the browser to go to</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteNavigator.Refresh">
<summary>
Refresh the browser
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.RemoteOptions">
<summary>
Provides a mechanism for setting options needed for the driver during the test.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteOptions.#ctor(OpenQA.Selenium.Remote.RemoteWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteOptions" /> class
</summary>
<param name="driver">Instance of the driver currently in use</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteOptions.Timeouts">
<summary>
Provides access to the timeouts defined for this driver.
</summary>
<returns>An object implementing the <see cref="T:OpenQA.Selenium.ITimeouts" /> interface.</returns>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteOptions.Cookies">
<summary>
Gets an object allowing the user to manipulate cookies on the page.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteOptions.Window">
<summary>
Gets an object allowing the user to manipulate the currently-focused browser window.
</summary>
<remarks>"Currently-focused" is defined as the browser window having the window handle
returned when IWebDriver.CurrentWindowHandle is called.</remarks>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteOptions.Logs">
<summary>
Gets an object allowing the user to examine the logs of the current driver instance.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.RemoteSessionStorage">
<summary>
Defines the interface through which the user can manipulate session storage.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteSessionStorage.#ctor(OpenQA.Selenium.Remote.RemoteWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteSessionStorage" /> class.
</summary>
<param name="driver">The driver instance.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteSessionStorage.GetItem(System.String)">
<summary>
Returns session storage value given a key.
</summary>
<param name="key">The key of the item in storage.</param>
<returns>A session storage <see cref="T:System.String" /> value given a key, if present, otherwise return null.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteSessionStorage.KeySet">
<summary>
Returns a read-only list of session storage keys.
</summary>
<returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1">read-only list</see> of session storage keys.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteSessionStorage.SetItem(System.String,System.String)">
<summary>
Sets session storage entry using given key/value pair.
</summary>
<param name="key">Session storage key</param>
<param name="value">Session storage value</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteSessionStorage.RemoveItem(System.String)">
<summary>
Removes session storage entry for the given key.
</summary>
<param name="key">key to be removed from the list</param>
<returns>Response value <see cref="T:System.String" />for the given key.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteSessionStorage.Clear">
<summary>
Removes all entries from the session storage.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteSessionStorage.Count">
<summary>
Gets the number of items in session storage.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.RemoteTargetLocator">
<summary>
Provides a mechanism for finding elements on the page with locators.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTargetLocator.#ctor(OpenQA.Selenium.Remote.RemoteWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteTargetLocator" /> class
</summary>
<param name="driver">The driver that is currently in use</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTargetLocator.Frame(System.Int32)">
<summary>
Move to a different frame using its index
</summary>
<param name="frameIndex">The index of the </param>
<returns>A WebDriver instance that is currently in use</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTargetLocator.Frame(System.String)">
<summary>
Move to different frame using its name
</summary>
<param name="frameName">name of the frame</param>
<returns>A WebDriver instance that is currently in use</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTargetLocator.Frame(OpenQA.Selenium.IWebElement)">
<summary>
Move to a frame element.
</summary>
<param name="frameElement">a previously found FRAME or IFRAME element.</param>
<returns>A WebDriver instance that is currently in use.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTargetLocator.ParentFrame">
<summary>
Select the parent frame of the currently selected frame.
</summary>
<returns>An <see cref="T:OpenQA.Selenium.IWebDriver" /> instance focused on the specified frame.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTargetLocator.Window(System.String)">
<summary>
Change to the Window by passing in the name
</summary>
<param name="windowHandleOrName">Window handle or name of the window that you wish to move to</param>
<returns>A WebDriver instance that is currently in use</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTargetLocator.DefaultContent">
<summary>
Change the active frame to the default
</summary>
<returns>Element of the default</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTargetLocator.ActiveElement">
<summary>
Finds the active element on the page and returns it
</summary>
<returns>Element that is active</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTargetLocator.Alert">
<summary>
Switches to the currently active modal dialog for this particular driver instance.
</summary>
<returns>A handle to the dialog.</returns>
</member>
<member name="T:OpenQA.Selenium.Remote.RemoteTimeouts">
<summary>
Defines the interface through which the user can define timeouts.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTimeouts.#ctor(OpenQA.Selenium.Remote.RemoteWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteTimeouts" /> class
</summary>
<param name="driver">The driver that is currently in use</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTimeouts.ImplicitlyWait(System.TimeSpan)">
<summary>
Specifies the amount of time the driver should wait when searching for an
element if it is not immediately present.
</summary>
<param name="timeToWait">A <see cref="T:System.TimeSpan" /> structure defining the amount of time to wait.</param>
<returns>A self reference</returns>
<remarks>
When searching for a single element, the driver should poll the page
until the element has been found, or this timeout expires before throwing
a <see cref="T:OpenQA.Selenium.NoSuchElementException" />. When searching for multiple elements,
the driver should poll the page until at least one element has been found
or this timeout has expired.
<para>
Increasing the implicit wait timeout should be used judiciously as it
will have an adverse effect on test run time, especially when used with
slower location strategies like XPath.
</para></remarks>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTimeouts.SetScriptTimeout(System.TimeSpan)">
<summary>
Specifies the amount of time the driver should wait when executing JavaScript asynchronously.
</summary>
<param name="timeToWait">A <see cref="T:System.TimeSpan" /> structure defining the amount of time to wait.
Setting this parameter to <see cref="F:System.TimeSpan.MinValue" /> will allow the script to run indefinitely.</param>
<returns>A self reference</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTimeouts.SetPageLoadTimeout(System.TimeSpan)">
<summary>
Specifies the amount of time the driver should wait for a page to load when setting the <see cref="P:OpenQA.Selenium.IWebDriver.Url" /> property.
</summary>
<param name="timeToWait">A <see cref="T:System.TimeSpan" /> structure defining the amount of time to wait.
Setting this parameter to <see cref="F:System.TimeSpan.MinValue" /> will allow the page to load indefinitely.</param>
<returns>A self reference</returns>
</member>
<member name="T:OpenQA.Selenium.Remote.RemoteTouchScreen">
<summary>
Defines the interface through which the user can execute advanced touch screen interactions.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTouchScreen.#ctor(OpenQA.Selenium.Remote.RemoteWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteTouchScreen" /> class.
</summary>
<param name="driver">The <see cref="T:OpenQA.Selenium.Remote.RemoteWebDriver" /> for which the touch screen will be managed.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTouchScreen.SingleTap(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Allows the execution of single tap on the screen, analogous to click using a Mouse.
</summary>
<param name="where">The <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> object representing the location on the screen,
usually an <see cref="T:OpenQA.Selenium.IWebElement" />.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTouchScreen.Down(System.Int32,System.Int32)">
<summary>
Allows the execution of the gesture 'down' on the screen. It is typically the first of a
sequence of touch gestures.
</summary>
<param name="locationX">The x coordinate relative to the view port.</param>
<param name="locationY">The y coordinate relative to the view port.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTouchScreen.Up(System.Int32,System.Int32)">
<summary>
Allows the execution of the gesture 'up' on the screen. It is typically the last of a
sequence of touch gestures.
</summary>
<param name="locationX">The x coordinate relative to the view port.</param>
<param name="locationY">The y coordinate relative to the view port.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTouchScreen.Move(System.Int32,System.Int32)">
<summary>
Allows the execution of the gesture 'move' on the screen.
</summary>
<param name="locationX">The x coordinate relative to the view port.</param>
<param name="locationY">The y coordinate relative to the view port.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTouchScreen.Scroll(OpenQA.Selenium.Interactions.Internal.ICoordinates,System.Int32,System.Int32)">
<summary>
Creates a scroll gesture that starts on a particular screen location.
</summary>
<param name="where">The <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> object representing the location on the screen
where the scroll starts, usually an <see cref="T:OpenQA.Selenium.IWebElement" />.</param>
<param name="offsetX">The x coordinate relative to the view port.</param>
<param name="offsetY">The y coordinate relative to the view port.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTouchScreen.Scroll(System.Int32,System.Int32)">
<summary>
Creates a scroll gesture for a particular x and y offset.
</summary>
<param name="offsetX">The horizontal offset relative to the view port.</param>
<param name="offsetY">The vertical offset relative to the view port.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTouchScreen.DoubleTap(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Allows the execution of double tap on the screen, analogous to click using a Mouse.
</summary>
<param name="where">The <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> object representing the location on the screen,
usually an <see cref="T:OpenQA.Selenium.IWebElement" />.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTouchScreen.LongPress(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Allows the execution of a long press gesture on the screen.
</summary>
<param name="where">The <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> object representing the location on the screen,
usually an <see cref="T:OpenQA.Selenium.IWebElement" />.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTouchScreen.Flick(System.Int32,System.Int32)">
<summary>
Creates a flick gesture for the current view.
</summary>
<param name="speedX">The horizontal speed in pixels per second.</param>
<param name="speedY">The vertical speed in pixels per second.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteTouchScreen.Flick(OpenQA.Selenium.Interactions.Internal.ICoordinates,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a flick gesture for the current view starting at a specific location.
</summary>
<param name="where">The <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> object representing the location on the screen
where the scroll starts, usually an <see cref="T:OpenQA.Selenium.IWebElement" />.</param>
<param name="offsetX">The x offset relative to the viewport.</param>
<param name="offsetY">The y offset relative to the viewport.</param>
<param name="speed">The speed in pixels per second.</param>
</member>
<member name="T:OpenQA.Selenium.Remote.RemoteWebStorage">
<summary>
Provides remote access to the <see cref="T:OpenQA.Selenium.Html5.IWebStorage" /> API.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWebStorage.#ctor(OpenQA.Selenium.Remote.RemoteWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteWebStorage" /> class.
</summary>
<param name="driver">The driver instance.</param>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebStorage.LocalStorage">
<summary>
Gets the local storage for the site currently opened in the browser.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWebStorage.SessionStorage">
<summary>
Gets the session storage for the site currently opened in the browser.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.RemoteWindow">
<summary>
Defines the interface through which the user can manipulate the browser window.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWindow.#ctor(OpenQA.Selenium.Remote.RemoteWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteWindow" /> class.
</summary>
<param name="driver">Instance of the driver currently in use</param>
</member>
<member name="M:OpenQA.Selenium.Remote.RemoteWindow.Maximize">
<summary>
Maximizes the current window if it is not already maximized.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWindow.Position">
<summary>
Gets or sets the position of the browser window relative to the upper-left corner of the screen.
</summary>
<remarks>When setting this property, it should act as the JavaScript window.moveTo() method.</remarks>
</member>
<member name="P:OpenQA.Selenium.Remote.RemoteWindow.Size">
<summary>
Gets or sets the size of the outer browser window, including title bars and window borders.
</summary>
<remarks>When setting this property, it should act as the JavaScript window.resizeTo() method.</remarks>
</member>
<member name="T:OpenQA.Selenium.Remote.Response">
<summary>
Handles reponses from the browser
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.Response.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.Response" /> class
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.Response.#ctor(OpenQA.Selenium.Remote.SessionId)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.Response" /> class
</summary>
<param name="sessionId">Session ID in use</param>
</member>
<member name="M:OpenQA.Selenium.Remote.Response.FromJson(System.String)">
<summary>
Returns a new <see cref="T:OpenQA.Selenium.Remote.Response" /> from a JSON-encoded string.
</summary>
<param name="value">The JSON string to deserialize into a <see cref="T:OpenQA.Selenium.Remote.Response" />.</param>
<returns>A <see cref="T:OpenQA.Selenium.Remote.Response" /> object described by the JSON string.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.Response.ToJson">
<summary>
Returns this object as a JSON-encoded string.
</summary>
<returns>A JSON-encoded string representing this <see cref="T:OpenQA.Selenium.Remote.Response" /> object.</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.Response.ToString">
<summary>
Returns the object as a string.
</summary>
<returns>A string with the Session ID, status value, and the value from JSON.</returns>
</member>
<member name="P:OpenQA.Selenium.Remote.Response.Value">
<summary>
Gets or sets the value from JSON.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.Response.SessionId">
<summary>
Gets or sets the session ID.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.Response.Status">
<summary>
Gets or sets the status value of the response.
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.Response.IsSpecificationCompliant">
<summary>
Gets a value indicating whether this response is compliant with the WebDriver specification.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.SessionId">
<summary>
Provides a mechanism for maintaining a session for a test
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.SessionId.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.SessionId" /> class
</summary>
<param name="opaqueKey">Key for the session in use</param>
</member>
<member name="M:OpenQA.Selenium.Remote.SessionId.ToString">
<summary>
Get the value of the key
</summary>
<returns>The key in use</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.SessionId.GetHashCode">
<summary>
Get the hash code of the key
</summary>
<returns>The hash code of the key</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.SessionId.Equals(System.Object)">
<summary>
Compares two Sessions
</summary>
<param name="obj">Session to compare</param>
<returns>True if they are equal or False if they are not</returns>
</member>
<member name="T:OpenQA.Selenium.Remote.StackTraceElement">
<summary>
Gives properties to get a stack trace
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.StackTraceElement.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.StackTraceElement" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.StackTraceElement.#ctor(System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.StackTraceElement" /> class using the given property values.
</summary>
<param name="elementAttributes">A <see cref="T:System.Collections.Generic.Dictionary`2" /> containing the names and values for the properties of this <see cref="T:OpenQA.Selenium.Remote.StackTraceElement" />.</param>
</member>
<member name="M:OpenQA.Selenium.Remote.StackTraceElement.ToString">
<summary>
Gets a string representation of the object.
</summary>
<returns>A string representation of the object.</returns>
</member>
<member name="P:OpenQA.Selenium.Remote.StackTraceElement.FileName">
<summary>
Gets or sets the value of the filename in the stack
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.StackTraceElement.ClassName">
<summary>
Gets or sets the value of the Class name in the stack trace
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.StackTraceElement.LineNumber">
<summary>
Gets or sets the line number
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.StackTraceElement.MethodName">
<summary>
Gets or sets the Method name in the stack trace
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.W3CWireProtocolCommandInfoRepository">
<summary>
Holds the information about all commands specified by the JSON wire protocol.
This class cannot be inherited, as it is intended to be a singleton, and
allowing subclasses introduces the possibility of multiple instances.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.W3CWireProtocolCommandInfoRepository.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.W3CWireProtocolCommandInfoRepository" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.W3CWireProtocolCommandInfoRepository.InitializeCommandDictionary">
<summary>
Initializes the dictionary of commands for the CommandInfoRepository
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.W3CWireProtocolCommandInfoRepository.SpecificationLevel">
<summary>
Gets the level of the W3C WebDriver specification that this repository supports.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.WebDriverError">
<summary>
Represents an error condition from a remote end using the W3C specification
dialect of the wire protocol.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.ElementNotSelectable">
<summary>
Represents the element not selectable error.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.ElementNotVisible">
<summary>
Represents the element not visible error.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.InvalidArgument">
<summary>
Represents the invalid argument error.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.InvalidElementCoordinates">
<summary>
Represents the invalid element coordinates error.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.InvalidElementState">
<summary>
Represents the invalid element state error.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.InvalidSelector">
<summary>
Represents the invalid selector error.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.InvalidSessionId">
<summary>
Represents the invalid session ID error.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.JavaScriptError">
<summary>
Represents the unhandled JavaScript error.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.MoveTargetOutOfBounds">
<summary>
Represents the move target out of bounds error.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.NoSuchAlert">
<summary>
Represents the no such alert error.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.NoSuchElement">
<summary>
Represents the no such element error.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.NoSuchFrame">
<summary>
Represents the no such alert frame.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.NoSuchWindow">
<summary>
Represents the no such alert window.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.ScriptTimeout">
<summary>
Represents the script timeout error.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.SessionNotCreated">
<summary>
Represents the session not created error.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.StaleElementReference">
<summary>
Represents the stale element reference error.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.Timeout">
<summary>
Represents the timeout error.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.UnableToSetCookie">
<summary>
Represents the unable to set cookie error.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.UnableToCaptureScreen">
<summary>
Represents the unable to capture screen error.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.UnexpectedAlertOpen">
<summary>
Represents the unexpected alert open error.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.UnknownCommand">
<summary>
Represents the unknown command error.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.UnknownError">
<summary>
Represents an unknown error.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.UnknownMethod">
<summary>
Represents the unknown method error.
</summary>
</member>
<member name="F:OpenQA.Selenium.Remote.WebDriverError.UnsupportedOperation">
<summary>
Represents the unsupported operation error.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.WebDriverError.ResultFromError(System.String)">
<summary>
Converts a string error to a <see cref="T:OpenQA.Selenium.WebDriverResult" /> value.
</summary>
<param name="error">The error string to convert.</param>
<returns>The converted <see cref="T:OpenQA.Selenium.WebDriverResult" /> value.</returns>
</member>
<member name="T:OpenQA.Selenium.Remote.WebDriverWireProtocolCommandInfoRepository">
<summary>
Holds the information about all commands specified by the JSON wire protocol.
This class cannot be inherited, as it is intended to be a singleton, and
allowing subclasses introduces the possibility of multiple instances.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.WebDriverWireProtocolCommandInfoRepository.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.WebDriverWireProtocolCommandInfoRepository" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.WebDriverWireProtocolCommandInfoRepository.InitializeCommandDictionary">
<summary>
Initializes the dictionary of commands for the CommandInfoRepository
</summary>
</member>
<member name="P:OpenQA.Selenium.Remote.WebDriverWireProtocolCommandInfoRepository.SpecificationLevel">
<summary>
Gets the level of the W3C WebDriver specification that this repository supports.
</summary>
</member>
<member name="T:OpenQA.Selenium.Remote.CharArrayJsonConverter">
<summary>
Provides a way to convert a Char array to JSON
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.CharArrayJsonConverter.CanConvert(System.Type)">
<summary>
Checks if the object can be converted
</summary>
<param name="objectType">Type of the object to see if can be converted</param>
<returns>True if can be converted else false</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.CharArrayJsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Writes the Object to JSON
</summary>
<param name="writer">A JSON Writer object</param>
<param name="value">Object to be converted</param>
<param name="serializer">JSON Serializer object instance</param>
</member>
<member name="M:OpenQA.Selenium.Remote.CharArrayJsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Method not implemented
</summary>
<param name="reader">JSON Reader instance</param>
<param name="objectType">Object type being read</param>
<param name="existingValue">Existing Value to be read</param>
<param name="serializer">JSON Serializer instance</param>
<returns>Object from JSON</returns>
</member>
<member name="T:OpenQA.Selenium.Remote.ResponseValueJsonConverter">
<summary>
Converts the response to JSON
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.ResponseValueJsonConverter.CanConvert(System.Type)">
<summary>
Checks if the object can be converted
</summary>
<param name="objectType">The object to be converted</param>
<returns>True if it can be converted or false if can't be</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.ResponseValueJsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Process the reader to return an object from JSON
</summary>
<param name="reader">A JSON reader</param>
<param name="objectType">Type of the object</param>
<param name="existingValue">The existing value of the object</param>
<param name="serializer">JSON Serializer</param>
<returns>Object created from JSON</returns>
</member>
<member name="M:OpenQA.Selenium.Remote.ResponseValueJsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Writes objects to JSON. Currently not implemented
</summary>
<param name="writer">JSON Writer Object</param>
<param name="value">Value to be written</param>
<param name="serializer">JSON Serializer </param>
</member>
<member name="T:OpenQA.Selenium.Safari.SafariDriver">
<summary>
Provides a way to access Safari to run your tests by creating a SafariDriver instance
</summary>
<remarks>
When the WebDriver object has been instantiated the browser will load. The test can then navigate to the URL under test and
start your test.
</remarks>
<example>
<code>
[TestFixture]
public class Testing
{
private IWebDriver driver;
<para></para>
[SetUp]
public void SetUp()
{
driver = new SafariDriver();
}
<para></para>
[Test]
public void TestGoogle()
{
driver.Navigate().GoToUrl("http://www.google.co.uk");
/*
* Rest of the test
*/
}
<para></para>
[TearDown]
public void TearDown()
{
driver.Quit();
driver.Dispose();
}
}
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Safari.SafariDriver.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Safari.SafariDriver" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.Safari.SafariDriver.#ctor(OpenQA.Selenium.Safari.SafariOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Safari.SafariDriver" /> class using the specified <see cref="T:OpenQA.Selenium.Safari.SafariOptions" />.
</summary>
<param name="options">The <see cref="T:OpenQA.Selenium.Safari.SafariOptions" /> to use for this <see cref="T:OpenQA.Selenium.Safari.SafariDriver" /> instance.</param>
</member>
<member name="M:OpenQA.Selenium.Safari.SafariDriver.#ctor(OpenQA.Selenium.Safari.SafariDriverService)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Safari.SafariDriver" /> class using the specified driver service.
</summary>
<param name="service">The <see cref="T:OpenQA.Selenium.Safari.SafariDriverService" /> used to initialize the driver.</param>
</member>
<member name="M:OpenQA.Selenium.Safari.SafariDriver.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Safari.SafariDriver" /> class using the specified path
to the directory containing ChromeDriver.exe.
</summary>
<param name="safariDriverDirectory">The full path to the directory containing SafariDriver executable.</param>
</member>
<member name="M:OpenQA.Selenium.Safari.SafariDriver.#ctor(System.String,OpenQA.Selenium.Safari.SafariOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Safari.SafariDriver" /> class using the specified path
to the directory containing ChromeDriver.exe and options.
</summary>
<param name="safariDriverDirectory">The full path to the directory containing SafariDriver executable.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.Safari.SafariOptions" /> to be used with the Safari driver.</param>
</member>
<member name="M:OpenQA.Selenium.Safari.SafariDriver.#ctor(System.String,OpenQA.Selenium.Safari.SafariOptions,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Safari.SafariDriver" /> class using the specified path
to the directory containing ChromeDriver.exe, options, and command timeout.
</summary>
<param name="safariDriverDirectory">The full path to the directory containing SafariDriver executable.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.Safari.SafariOptions" /> to be used with the Safari driver.</param>
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
</member>
<member name="M:OpenQA.Selenium.Safari.SafariDriver.#ctor(OpenQA.Selenium.Safari.SafariDriverService,OpenQA.Selenium.Safari.SafariOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Safari.SafariDriver" /> class using the specified
<see cref="T:OpenQA.Selenium.Safari.SafariDriverService" /> and options.
</summary>
<param name="service">The <see cref="T:OpenQA.Selenium.Safari.SafariDriverService" /> to use.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.Safari.SafariOptions" /> used to initialize the driver.</param>
</member>
<member name="M:OpenQA.Selenium.Safari.SafariDriver.#ctor(OpenQA.Selenium.Safari.SafariDriverService,OpenQA.Selenium.Safari.SafariOptions,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Safari.SafariDriver" /> class using the specified <see cref="T:OpenQA.Selenium.Safari.SafariDriverService" />.
</summary>
<param name="service">The <see cref="T:OpenQA.Selenium.Safari.SafariDriverService" /> to use.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.Safari.SafariOptions" /> to be used with the Safari driver.</param>
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
</member>
<member name="P:OpenQA.Selenium.Safari.SafariDriver.FileDetector">
<summary>
Gets or sets the <see cref="T:OpenQA.Selenium.IFileDetector" /> responsible for detecting
sequences of keystrokes representing file paths and names.
</summary>
<remarks>The Safari driver does not allow a file detector to be set,
as the server component of the Safari driver (the Safari extension) only
allows uploads from the local computer environment. Attempting to set
this property has no effect, but does not throw an exception. If you
are attempting to run the Safari driver remotely, use <see cref="T:OpenQA.Selenium.Remote.RemoteWebDriver" />
in conjunction with a standalone WebDriver server.</remarks>
</member>
<member name="T:OpenQA.Selenium.Safari.SafariDriverService">
<summary>
Exposes the service provided by the native SafariDriver executable.
</summary>
</member>
<member name="M:OpenQA.Selenium.Safari.SafariDriverService.#ctor(System.String,System.String,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Safari.SafariDriverService" /> class.
</summary>
<param name="executablePath">The full path to the SafariDriver executable.</param>
<param name="executableFileName">The file name of the SafariDriver executable.</param>
<param name="port">The port on which the SafariDriver executable should listen.</param>
</member>
<member name="M:OpenQA.Selenium.Safari.SafariDriverService.CreateDefaultService">
<summary>
Creates a default instance of the SafariDriverService.
</summary>
<returns>A SafariDriverService that implements default settings.</returns>
</member>
<member name="M:OpenQA.Selenium.Safari.SafariDriverService.CreateDefaultService(System.String)">
<summary>
Creates a default instance of the SafariDriverService using a specified path to the ChromeDriver executable.
</summary>
<param name="driverPath">The directory containing the ChromeDriver executable.</param>
<returns>A ChromeDriverService using a random port.</returns>
</member>
<member name="M:OpenQA.Selenium.Safari.SafariDriverService.CreateDefaultService(System.String,System.String)">
<summary>
Creates a default instance of the SafariDriverService using a specified path to the ChromeDriver executable with the given name.
</summary>
<param name="driverPath">The directory containing the ChromeDriver executable.</param>
<param name="driverExecutableFileName">The name of the ChromeDriver executable file.</param>
<returns>A ChromeDriverService using a random port.</returns>
</member>
<member name="P:OpenQA.Selenium.Safari.SafariDriverService.IsInitialized">
<summary>
Gets a value indicating whether the service is responding to HTTP requests.
</summary>
</member>
<member name="T:OpenQA.Selenium.Safari.SafariOptions">
<summary>
Class to manage options specific to <see cref="T:OpenQA.Selenium.Safari.SafariDriver" /></summary>
<example>
<code>
SafariOptions options = new SafariOptions();
options.SkipExtensionInstallation = true;
</code>
<para>
</para>
<para>For use with SafariDriver:</para>
<para>
</para>
<code>
SafariDriver driver = new SafariDriver(options);
</code>
<para>
</para>
<para>For use with RemoteWebDriver:</para>
<para>
</para>
<code>
RemoteWebDriver driver = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), options.ToCapabilities());
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Safari.SafariOptions.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Safari.SafariOptions" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.Safari.SafariOptions.AddAdditionalCapability(System.String,System.Object)">
<summary>
Provides a means to add additional capabilities not yet added as type safe options
for the Safari driver.
</summary>
<param name="capabilityName">The name of the capability to add.</param>
<param name="capabilityValue">The value of the capability to add.</param>
<exception cref="T:System.ArgumentException">
thrown when attempting to add a capability for which there is already a type safe option, or
when <paramref name="capabilityName" /> is <see langword="null" /> or the empty string.
</exception>
<remarks>Calling <see cref="M:OpenQA.Selenium.Safari.SafariOptions.AddAdditionalCapability(System.String,System.Object)" /> where <paramref name="capabilityName" />
has already been added will overwrite the existing value with the new value in <paramref name="capabilityValue" /></remarks>
</member>
<member name="M:OpenQA.Selenium.Safari.SafariOptions.ToCapabilities">
<summary>
Returns ICapabilities for Safari with these options included as
capabilities. This copies the options. Further changes will not be
reflected in the returned capabilities.
</summary>
<returns>The ICapabilities for Safari with these options.</returns>
</member>
<member name="T:Newtonsoft.Json.JsonReader">
<summary>
Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
</summary>
</member>
<member name="T:Newtonsoft.Json.JsonReader.State">
<summary>
Specifies the state of the reader.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonReader.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader" /> class with the specified <see cref="T:System.IO.TextReader" />.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonReader.Read">
<summary>
Reads the next JSON token from the stream.
</summary>
<returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1" />.
</summary>
<returns>A <see cref="T:System.Nullable`1" />. This method will return <c>null</c> at the end of an array.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonReader.ReadAsString">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.String" />.
</summary>
<returns>A <see cref="T:System.String" />. This method will return <c>null</c> at the end of an array.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
<summary>
Reads the next JSON token from the stream as a <see cref="T:Byte[]" />.
</summary>
<returns>A <see cref="T:Byte[]" /> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimal">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1" />.
</summary>
<returns>A <see cref="T:System.Nullable`1" />. This method will return <c>null</c> at the end of an array.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTime">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1" />.
</summary>
<returns>A <see cref="T:System.String" />. This method will return <c>null</c> at the end of an array.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1" />.
</summary>
<returns>A <see cref="T:System.Nullable`1" />. This method will return <c>null</c> at the end of an array.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonReader.Skip">
<summary>
Skips the children of the current token.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)">
<summary>
Sets the current token.
</summary>
<param name="newToken">The new token.</param>
</member>
<member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)">
<summary>
Sets the current token and value.
</summary>
<param name="newToken">The new token.</param>
<param name="value">The value.</param>
</member>
<member name="M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent">
<summary>
Sets the state based on current token type.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)">
<summary>
Releases unmanaged and - optionally - managed resources
</summary>
<param name="disposing">
<c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
</member>
<member name="M:Newtonsoft.Json.JsonReader.Close">
<summary>
Changes the <see cref="T:Newtonsoft.Json.JsonReader.State" /> to Closed.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonReader.CurrentState">
<summary>
Gets the current reader state.
</summary>
<value>The current reader state.</value>
</member>
<member name="P:Newtonsoft.Json.JsonReader.CloseInput">
<summary>
Gets or sets a value indicating whether the underlying stream or
<see cref="T:System.IO.TextReader" /> should be closed when the reader is closed.
</summary>
<value>
true to close the underlying stream or <see cref="T:System.IO.TextReader" /> when
the reader is closed; otherwise false. The default is true.
</value>
</member>
<member name="P:Newtonsoft.Json.JsonReader.SupportMultipleContent">
<summary>
Gets or sets a value indicating whether multiple pieces of JSON content can
be read from a continuous stream without erroring.
</summary>
<value>
true to support reading multiple pieces of JSON content; otherwise false. The default is false.
</value>
</member>
<member name="P:Newtonsoft.Json.JsonReader.QuoteChar">
<summary>
Gets the quotation mark character used to enclose the value of a string.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling">
<summary>
Get or set how <see cref="T:System.DateTime" /> time zones are handling when reading JSON.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonReader.DateParseHandling">
<summary>
Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonReader.FloatParseHandling">
<summary>
Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonReader.MaxDepth">
<summary>
Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException" />.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonReader.TokenType">
<summary>
Gets the type of the current JSON token.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonReader.Value">
<summary>
Gets the text value of the current JSON token.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonReader.ValueType">
<summary>
Gets The Common Language Runtime (CLR) type for the current JSON token.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonReader.Depth">
<summary>
Gets the depth of the current token in the JSON document.
</summary>
<value>The depth of the current token in the JSON document.</value>
</member>
<member name="P:Newtonsoft.Json.JsonReader.Path">
<summary>
Gets the path of the current JSON token.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonReader.Culture">
<summary>
Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture" />.
</summary>
</member>
<member name="T:Newtonsoft.Json.Bson.BsonReader">
<summary>
Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
</summary>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader" /> class.
</summary>
<param name="stream">The stream.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader" /> class.
</summary>
<param name="reader">The reader.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader" /> class.
</summary>
<param name="stream">The stream.</param>
<param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
<param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime" /> values from BSON.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader" /> class.
</summary>
<param name="reader">The reader.</param>
<param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
<param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime" /> values from BSON.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes">
<summary>
Reads the next JSON token from the stream as a <see cref="T:Byte[]" />.
</summary>
<returns>
A <see cref="T:Byte[]" /> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.
</returns>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1" />.
</summary>
<returns>A <see cref="T:System.Nullable`1" />. This method will return <c>null</c> at the end of an array.</returns>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1" />.
</summary>
<returns>A <see cref="T:System.Nullable`1" />. This method will return <c>null</c> at the end of an array.</returns>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsString">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.String" />.
</summary>
<returns>A <see cref="T:System.String" />. This method will return <c>null</c> at the end of an array.</returns>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1" />.
</summary>
<returns>A <see cref="T:System.String" />. This method will return <c>null</c> at the end of an array.</returns>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1" />.
</summary>
<returns>
A <see cref="T:System.Nullable`1" />. This method will return <c>null</c> at the end of an array.
</returns>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonReader.Read">
<summary>
Reads the next JSON token from the stream.
</summary>
<returns>
true if the next token was read successfully; false if there are no more tokens to read.
</returns>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonReader.Close">
<summary>
Changes the <see cref="T:Newtonsoft.Json.JsonReader.State" /> to Closed.
</summary>
</member>
<member name="P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility">
<summary>
Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.
</summary>
<value>
<c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.
</value>
</member>
<member name="P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray">
<summary>
Gets or sets a value indicating whether the root object will be read as a JSON array.
</summary>
<value>
<c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.
</value>
</member>
<member name="P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling">
<summary>
Gets or sets the <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime" /> values from BSON.
</summary>
<value>The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime" /> values from BSON.</value>
</member>
<member name="T:Newtonsoft.Json.JsonWriter">
<summary>
Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.#ctor">
<summary>
Creates an instance of the <c>JsonWriter</c> class.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.Flush">
<summary>
Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.Close">
<summary>
Closes this stream and the underlying stream.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteStartObject">
<summary>
Writes the beginning of a Json object.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteEndObject">
<summary>
Writes the end of a Json object.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteStartArray">
<summary>
Writes the beginning of a Json array.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteEndArray">
<summary>
Writes the end of an array.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)">
<summary>
Writes the start of a constructor with the given name.
</summary>
<param name="name">The name of the constructor.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructor">
<summary>
Writes the end constructor.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)">
<summary>
Writes the property name of a name/value pair on a JSON object.
</summary>
<param name="name">The name of the property.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String,System.Boolean)">
<summary>
Writes the property name of a name/value pair on a JSON object.
</summary>
<param name="name">The name of the property.</param>
<param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteEnd">
<summary>
Writes the end of the current Json object or array.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)">
<summary>
Writes the current <see cref="T:Newtonsoft.Json.JsonReader" /> token and its children.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> to read the token from.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader,System.Boolean)">
<summary>
Writes the current <see cref="T:Newtonsoft.Json.JsonReader" /> token.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> to read the token from.</param>
<param name="writeChildren">A flag indicating whether the current token's children should be written.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
<summary>
Writes the specified end token.
</summary>
<param name="token">The end token to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteIndent">
<summary>
Writes indent characters.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter">
<summary>
Writes the JSON value delimiter.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace">
<summary>
Writes an indent space.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteNull">
<summary>
Writes a null value.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined">
<summary>
Writes an undefined value.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)">
<summary>
Writes raw JSON without changing the writer's state.
</summary>
<param name="json">The raw JSON to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)">
<summary>
Writes raw JSON where a value is expected and updates the writer's state.
</summary>
<param name="json">The raw JSON to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)">
<summary>
Writes a <see cref="T:System.String" /> value.
</summary>
<param name="value">The <see cref="T:System.String" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)">
<summary>
Writes a <see cref="T:System.Int32" /> value.
</summary>
<param name="value">The <see cref="T:System.Int32" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)">
<summary>
Writes a <see cref="T:System.UInt32" /> value.
</summary>
<param name="value">The <see cref="T:System.UInt32" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)">
<summary>
Writes a <see cref="T:System.Int64" /> value.
</summary>
<param name="value">The <see cref="T:System.Int64" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)">
<summary>
Writes a <see cref="T:System.UInt64" /> value.
</summary>
<param name="value">The <see cref="T:System.UInt64" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)">
<summary>
Writes a <see cref="T:System.Single" /> value.
</summary>
<param name="value">The <see cref="T:System.Single" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)">
<summary>
Writes a <see cref="T:System.Double" /> value.
</summary>
<param name="value">The <see cref="T:System.Double" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)">
<summary>
Writes a <see cref="T:System.Boolean" /> value.
</summary>
<param name="value">The <see cref="T:System.Boolean" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)">
<summary>
Writes a <see cref="T:System.Int16" /> value.
</summary>
<param name="value">The <see cref="T:System.Int16" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)">
<summary>
Writes a <see cref="T:System.UInt16" /> value.
</summary>
<param name="value">The <see cref="T:System.UInt16" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)">
<summary>
Writes a <see cref="T:System.Char" /> value.
</summary>
<param name="value">The <see cref="T:System.Char" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)">
<summary>
Writes a <see cref="T:System.Byte" /> value.
</summary>
<param name="value">The <see cref="T:System.Byte" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)">
<summary>
Writes a <see cref="T:System.SByte" /> value.
</summary>
<param name="value">The <see cref="T:System.SByte" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)">
<summary>
Writes a <see cref="T:System.Decimal" /> value.
</summary>
<param name="value">The <see cref="T:System.Decimal" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)">
<summary>
Writes a <see cref="T:System.DateTime" /> value.
</summary>
<param name="value">The <see cref="T:System.DateTime" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)">
<summary>
Writes a <see cref="T:System.DateTimeOffset" /> value.
</summary>
<param name="value">The <see cref="T:System.DateTimeOffset" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)">
<summary>
Writes a <see cref="T:System.Guid" /> value.
</summary>
<param name="value">The <see cref="T:System.Guid" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)">
<summary>
Writes a <see cref="T:System.TimeSpan" /> value.
</summary>
<param name="value">The <see cref="T:System.TimeSpan" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})">
<summary>
Writes a <see cref="T:System.Nullable`1" /> value.
</summary>
<param name="value">The <see cref="T:System.Nullable`1" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})">
<summary>
Writes a <see cref="T:System.Nullable`1" /> value.
</summary>
<param name="value">The <see cref="T:System.Nullable`1" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})">
<summary>
Writes a <see cref="T:System.Nullable`1" /> value.
</summary>
<param name="value">The <see cref="T:System.Nullable`1" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})">
<summary>
Writes a <see cref="T:System.Nullable`1" /> value.
</summary>
<param name="value">The <see cref="T:System.Nullable`1" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})">
<summary>
Writes a <see cref="T:System.Nullable`1" /> value.
</summary>
<param name="value">The <see cref="T:System.Nullable`1" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})">
<summary>
Writes a <see cref="T:System.Nullable`1" /> value.
</summary>
<param name="value">The <see cref="T:System.Nullable`1" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})">
<summary>
Writes a <see cref="T:System.Nullable`1" /> value.
</summary>
<param name="value">The <see cref="T:System.Nullable`1" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})">
<summary>
Writes a <see cref="T:System.Nullable`1" /> value.
</summary>
<param name="value">The <see cref="T:System.Nullable`1" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})">
<summary>
Writes a <see cref="T:System.Nullable`1" /> value.
</summary>
<param name="value">The <see cref="T:System.Nullable`1" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})">
<summary>
Writes a <see cref="T:System.Nullable`1" /> value.
</summary>
<param name="value">The <see cref="T:System.Nullable`1" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})">
<summary>
Writes a <see cref="T:System.Nullable`1" /> value.
</summary>
<param name="value">The <see cref="T:System.Nullable`1" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})">
<summary>
Writes a <see cref="T:System.Nullable`1" /> value.
</summary>
<param name="value">The <see cref="T:System.Nullable`1" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})">
<summary>
Writes a <see cref="T:System.Nullable`1" /> value.
</summary>
<param name="value">The <see cref="T:System.Nullable`1" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})">
<summary>
Writes a <see cref="T:System.Nullable`1" /> value.
</summary>
<param name="value">The <see cref="T:System.Nullable`1" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})">
<summary>
Writes a <see cref="T:System.Nullable`1" /> value.
</summary>
<param name="value">The <see cref="T:System.Nullable`1" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})">
<summary>
Writes a <see cref="T:System.Nullable`1" /> value.
</summary>
<param name="value">The <see cref="T:System.Nullable`1" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})">
<summary>
Writes a <see cref="T:System.Nullable`1" /> value.
</summary>
<param name="value">The <see cref="T:System.Nullable`1" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])">
<summary>
Writes a <see cref="T:Byte[]" /> value.
</summary>
<param name="value">The <see cref="T:Byte[]" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)">
<summary>
Writes a <see cref="T:System.Uri" /> value.
</summary>
<param name="value">The <see cref="T:System.Uri" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)">
<summary>
Writes a <see cref="T:System.Object" /> value.
An error will raised if the value cannot be written as a single JSON token.
</summary>
<param name="value">The <see cref="T:System.Object" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)">
<summary>
Writes out a comment <code>/*...*/</code> containing the specified text.
</summary>
<param name="text">Text to place inside the comment.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)">
<summary>
Writes out the given white space.
</summary>
<param name="ws">The string of white space characters.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriter.SetWriteState(Newtonsoft.Json.JsonToken,System.Object)">
<summary>
Sets the state of the JsonWriter,
</summary>
<param name="token">The JsonToken being written.</param>
<param name="value">The value being written.</param>
</member>
<member name="P:Newtonsoft.Json.JsonWriter.CloseOutput">
<summary>
Gets or sets a value indicating whether the underlying stream or
<see cref="T:System.IO.TextReader" /> should be closed when the writer is closed.
</summary>
<value>
true to close the underlying stream or <see cref="T:System.IO.TextReader" /> when
the writer is closed; otherwise false. The default is true.
</value>
</member>
<member name="P:Newtonsoft.Json.JsonWriter.Top">
<summary>
Gets the top.
</summary>
<value>The top.</value>
</member>
<member name="P:Newtonsoft.Json.JsonWriter.WriteState">
<summary>
Gets the state of the writer.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonWriter.Path">
<summary>
Gets the path of the writer.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonWriter.Formatting">
<summary>
Indicates how JSON text output is formatted.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonWriter.DateFormatHandling">
<summary>
Get or set how dates are written to JSON text.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling">
<summary>
Get or set how <see cref="T:System.DateTime" /> time zones are handling when writing JSON text.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonWriter.StringEscapeHandling">
<summary>
Get or set how strings are escaped when writing JSON text.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonWriter.FloatFormatHandling">
<summary>
Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN" />,
<see cref="F:System.Double.PositiveInfinity" /> and <see cref="F:System.Double.NegativeInfinity" />,
are written to JSON text.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonWriter.DateFormatString">
<summary>
Get or set how <see cref="T:System.DateTime" /> and <see cref="T:System.DateTimeOffset" /> values are formatting when writing JSON text.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonWriter.Culture">
<summary>
Gets or sets the culture used when writing JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture" />.
</summary>
</member>
<member name="T:Newtonsoft.Json.Bson.BsonWriter">
<summary>
Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
</summary>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter" /> class.
</summary>
<param name="stream">The stream.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter" /> class.
</summary>
<param name="writer">The writer.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
<summary>
Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
</summary>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
<summary>
Writes the end.
</summary>
<param name="token">The token.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)">
<summary>
Writes out a comment <code>/*...*/</code> containing the specified text.
</summary>
<param name="text">Text to place inside the comment.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)">
<summary>
Writes the start of a constructor with the given name.
</summary>
<param name="name">The name of the constructor.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)">
<summary>
Writes raw JSON.
</summary>
<param name="json">The raw JSON to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)">
<summary>
Writes raw JSON where a value is expected and updates the writer's state.
</summary>
<param name="json">The raw JSON to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray">
<summary>
Writes the beginning of a Json array.
</summary>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject">
<summary>
Writes the beginning of a Json object.
</summary>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)">
<summary>
Writes the property name of a name/value pair on a Json object.
</summary>
<param name="name">The name of the property.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.Close">
<summary>
Closes this stream and the underlying stream.
</summary>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Object)">
<summary>
Writes a <see cref="T:System.Object" /> value.
An error will raised if the value cannot be written as a single JSON token.
</summary>
<param name="value">The <see cref="T:System.Object" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteNull">
<summary>
Writes a null value.
</summary>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined">
<summary>
Writes an undefined value.
</summary>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)">
<summary>
Writes a <see cref="T:System.String" /> value.
</summary>
<param name="value">The <see cref="T:System.String" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)">
<summary>
Writes a <see cref="T:System.Int32" /> value.
</summary>
<param name="value">The <see cref="T:System.Int32" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)">
<summary>
Writes a <see cref="T:System.UInt32" /> value.
</summary>
<param name="value">The <see cref="T:System.UInt32" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)">
<summary>
Writes a <see cref="T:System.Int64" /> value.
</summary>
<param name="value">The <see cref="T:System.Int64" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)">
<summary>
Writes a <see cref="T:System.UInt64" /> value.
</summary>
<param name="value">The <see cref="T:System.UInt64" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)">
<summary>
Writes a <see cref="T:System.Single" /> value.
</summary>
<param name="value">The <see cref="T:System.Single" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)">
<summary>
Writes a <see cref="T:System.Double" /> value.
</summary>
<param name="value">The <see cref="T:System.Double" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)">
<summary>
Writes a <see cref="T:System.Boolean" /> value.
</summary>
<param name="value">The <see cref="T:System.Boolean" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)">
<summary>
Writes a <see cref="T:System.Int16" /> value.
</summary>
<param name="value">The <see cref="T:System.Int16" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)">
<summary>
Writes a <see cref="T:System.UInt16" /> value.
</summary>
<param name="value">The <see cref="T:System.UInt16" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)">
<summary>
Writes a <see cref="T:System.Char" /> value.
</summary>
<param name="value">The <see cref="T:System.Char" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)">
<summary>
Writes a <see cref="T:System.Byte" /> value.
</summary>
<param name="value">The <see cref="T:System.Byte" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)">
<summary>
Writes a <see cref="T:System.SByte" /> value.
</summary>
<param name="value">The <see cref="T:System.SByte" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)">
<summary>
Writes a <see cref="T:System.Decimal" /> value.
</summary>
<param name="value">The <see cref="T:System.Decimal" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)">
<summary>
Writes a <see cref="T:System.DateTime" /> value.
</summary>
<param name="value">The <see cref="T:System.DateTime" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)">
<summary>
Writes a <see cref="T:System.DateTimeOffset" /> value.
</summary>
<param name="value">The <see cref="T:System.DateTimeOffset" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])">
<summary>
Writes a <see cref="T:Byte[]" /> value.
</summary>
<param name="value">The <see cref="T:Byte[]" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)">
<summary>
Writes a <see cref="T:System.Guid" /> value.
</summary>
<param name="value">The <see cref="T:System.Guid" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)">
<summary>
Writes a <see cref="T:System.TimeSpan" /> value.
</summary>
<param name="value">The <see cref="T:System.TimeSpan" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)">
<summary>
Writes a <see cref="T:System.Uri" /> value.
</summary>
<param name="value">The <see cref="T:System.Uri" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])">
<summary>
Writes a <see cref="T:Byte[]" /> value that represents a BSON object id.
</summary>
<param name="value">The Object ID value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)">
<summary>
Writes a BSON regex.
</summary>
<param name="pattern">The regex pattern.</param>
<param name="options">The regex options.</param>
</member>
<member name="P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling">
<summary>
Gets or sets the <see cref="T:System.DateTimeKind" /> used when writing <see cref="T:System.DateTime" /> values to BSON.
When set to <see cref="F:System.DateTimeKind.Unspecified" /> no conversion will occur.
</summary>
<value>The <see cref="T:System.DateTimeKind" /> used when writing <see cref="T:System.DateTime" /> values to BSON.</value>
</member>
<member name="T:Newtonsoft.Json.Bson.BsonObjectId">
<summary>
Represents a BSON Oid (object id).
</summary>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonObjectId" /> class.
</summary>
<param name="value">The Oid value.</param>
</member>
<member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
<summary>
Gets or sets the value of the Oid.
</summary>
<value>The value of the Oid.</value>
</member>
<member name="T:Newtonsoft.Json.JsonConverter">
<summary>
Converts an object to and from JSON.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Writes the JSON representation of the object.
</summary>
<param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter" /> to write to.</param>
<param name="value">The value.</param>
<param name="serializer">The calling serializer.</param>
</member>
<member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Reads the JSON representation of the object.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> to read from.</param>
<param name="objectType">Type of the object.</param>
<param name="existingValue">The existing value of object being read.</param>
<param name="serializer">The calling serializer.</param>
<returns>The object value.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)">
<summary>
Determines whether this instance can convert the specified object type.
</summary>
<param name="objectType">Type of the object.</param>
<returns>
<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConverter.GetSchema">
<summary>
Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> of the JSON produced by the JsonConverter.
</summary>
<returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> of the JSON produced by the JsonConverter.</returns>
</member>
<member name="P:Newtonsoft.Json.JsonConverter.CanRead">
<summary>
Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter" /> can read JSON.
</summary>
<value>
<c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter" /> can read JSON; otherwise, <c>false</c>.</value>
</member>
<member name="P:Newtonsoft.Json.JsonConverter.CanWrite">
<summary>
Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter" /> can write JSON.
</summary>
<value>
<c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter" /> can write JSON; otherwise, <c>false</c>.</value>
</member>
<member name="T:Newtonsoft.Json.Converters.BinaryConverter">
<summary>
Converts a binary value to and from a base 64 string value.
</summary>
</member>
<member name="M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Writes the JSON representation of the object.
</summary>
<param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter" /> to write to.</param>
<param name="value">The value.</param>
<param name="serializer">The calling serializer.</param>
</member>
<member name="M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Reads the JSON representation of the object.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> to read from.</param>
<param name="objectType">Type of the object.</param>
<param name="existingValue">The existing value of object being read.</param>
<param name="serializer">The calling serializer.</param>
<returns>The object value.</returns>
</member>
<member name="M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)">
<summary>
Determines whether this instance can convert the specified object type.
</summary>
<param name="objectType">Type of the object.</param>
<returns>
<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
</returns>
</member>
<member name="T:Newtonsoft.Json.Converters.DataSetConverter">
<summary>
Converts a <see cref="T:System.Data.DataSet" /> to and from JSON.
</summary>
</member>
<member name="M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Writes the JSON representation of the object.
</summary>
<param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter" /> to write to.</param>
<param name="value">The value.</param>
<param name="serializer">The calling serializer.</param>
</member>
<member name="M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Reads the JSON representation of the object.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> to read from.</param>
<param name="objectType">Type of the object.</param>
<param name="existingValue">The existing value of object being read.</param>
<param name="serializer">The calling serializer.</param>
<returns>The object value.</returns>
</member>
<member name="M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)">
<summary>
Determines whether this instance can convert the specified value type.
</summary>
<param name="valueType">Type of the value.</param>
<returns>
<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
</returns>
</member>
<member name="T:Newtonsoft.Json.Converters.DataTableConverter">
<summary>
Converts a <see cref="T:System.Data.DataTable" /> to and from JSON.
</summary>
</member>
<member name="M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Writes the JSON representation of the object.
</summary>
<param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter" /> to write to.</param>
<param name="value">The value.</param>
<param name="serializer">The calling serializer.</param>
</member>
<member name="M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Reads the JSON representation of the object.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> to read from.</param>
<param name="objectType">Type of the object.</param>
<param name="existingValue">The existing value of object being read.</param>
<param name="serializer">The calling serializer.</param>
<returns>The object value.</returns>
</member>
<member name="M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)">
<summary>
Determines whether this instance can convert the specified value type.
</summary>
<param name="valueType">Type of the value.</param>
<returns>
<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
</returns>
</member>
<member name="T:Newtonsoft.Json.Converters.CustomCreationConverter`1">
<summary>
Create a custom object
</summary>
<typeparam name="T">The object type to convert.</typeparam>
</member>
<member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Writes the JSON representation of the object.
</summary>
<param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter" /> to write to.</param>
<param name="value">The value.</param>
<param name="serializer">The calling serializer.</param>
</member>
<member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Reads the JSON representation of the object.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> to read from.</param>
<param name="objectType">Type of the object.</param>
<param name="existingValue">The existing value of object being read.</param>
<param name="serializer">The calling serializer.</param>
<returns>The object value.</returns>
</member>
<member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)">
<summary>
Creates an object which will then be populated by the serializer.
</summary>
<param name="objectType">Type of the object.</param>
<returns>The created object.</returns>
</member>
<member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)">
<summary>
Determines whether this instance can convert the specified object type.
</summary>
<param name="objectType">Type of the object.</param>
<returns>
<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
</returns>
</member>
<member name="P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite">
<summary>
Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter" /> can write JSON.
</summary>
<value>
<c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter" /> can write JSON; otherwise, <c>false</c>.
</value>
</member>
<member name="T:Newtonsoft.Json.Converters.DateTimeConverterBase">
<summary>
Provides a base class for converting a <see cref="T:System.DateTime" /> to and from JSON.
</summary>
</member>
<member name="M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)">
<summary>
Determines whether this instance can convert the specified object type.
</summary>
<param name="objectType">Type of the object.</param>
<returns>
<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
</returns>
</member>
<member name="T:Newtonsoft.Json.Converters.DiscriminatedUnionConverter">
<summary>
Converts a F# discriminated union type to and from JSON.
</summary>
</member>
<member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Writes the JSON representation of the object.
</summary>
<param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter" /> to write to.</param>
<param name="value">The value.</param>
<param name="serializer">The calling serializer.</param>
</member>
<member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Reads the JSON representation of the object.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> to read from.</param>
<param name="objectType">Type of the object.</param>
<param name="existingValue">The existing value of object being read.</param>
<param name="serializer">The calling serializer.</param>
<returns>The object value.</returns>
</member>
<member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.CanConvert(System.Type)">
<summary>
Determines whether this instance can convert the specified object type.
</summary>
<param name="objectType">Type of the object.</param>
<returns>
<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
</returns>
</member>
<member name="T:Newtonsoft.Json.Converters.EntityKeyMemberConverter">
<summary>
Converts an Entity Framework EntityKey to and from JSON.
</summary>
</member>
<member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Writes the JSON representation of the object.
</summary>
<param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter" /> to write to.</param>
<param name="value">The value.</param>
<param name="serializer">The calling serializer.</param>
</member>
<member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Reads the JSON representation of the object.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> to read from.</param>
<param name="objectType">Type of the object.</param>
<param name="existingValue">The existing value of object being read.</param>
<param name="serializer">The calling serializer.</param>
<returns>The object value.</returns>
</member>
<member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.CanConvert(System.Type)">
<summary>
Determines whether this instance can convert the specified object type.
</summary>
<param name="objectType">Type of the object.</param>
<returns>
<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
</returns>
</member>
<member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">
<summary>
Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2" /> to and from JSON.
</summary>
</member>
<member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Writes the JSON representation of the object.
</summary>
<param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter" /> to write to.</param>
<param name="value">The value.</param>
<param name="serializer">The calling serializer.</param>
</member>
<member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Reads the JSON representation of the object.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> to read from.</param>
<param name="objectType">Type of the object.</param>
<param name="existingValue">The existing value of object being read.</param>
<param name="serializer">The calling serializer.</param>
<returns>The object value.</returns>
</member>
<member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)">
<summary>
Determines whether this instance can convert the specified object type.
</summary>
<param name="objectType">Type of the object.</param>
<returns>
<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
</returns>
</member>
<member name="T:Newtonsoft.Json.Converters.BsonObjectIdConverter">
<summary>
Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId" /> to and from JSON and BSON.
</summary>
</member>
<member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Writes the JSON representation of the object.
</summary>
<param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter" /> to write to.</param>
<param name="value">The value.</param>
<param name="serializer">The calling serializer.</param>
</member>
<member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Reads the JSON representation of the object.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> to read from.</param>
<param name="objectType">Type of the object.</param>
<param name="existingValue">The existing value of object being read.</param>
<param name="serializer">The calling serializer.</param>
<returns>The object value.</returns>
</member>
<member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)">
<summary>
Determines whether this instance can convert the specified object type.
</summary>
<param name="objectType">Type of the object.</param>
<returns>
<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
</returns>
</member>
<member name="T:Newtonsoft.Json.Converters.RegexConverter">
<summary>
Converts a <see cref="T:System.Text.RegularExpressions.Regex" /> to and from JSON and BSON.
</summary>
</member>
<member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Writes the JSON representation of the object.
</summary>
<param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter" /> to write to.</param>
<param name="value">The value.</param>
<param name="serializer">The calling serializer.</param>
</member>
<member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Reads the JSON representation of the object.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> to read from.</param>
<param name="objectType">Type of the object.</param>
<param name="existingValue">The existing value of object being read.</param>
<param name="serializer">The calling serializer.</param>
<returns>The object value.</returns>
</member>
<member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)">
<summary>
Determines whether this instance can convert the specified object type.
</summary>
<param name="objectType">Type of the object.</param>
<returns>
<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
</returns>
</member>
<member name="T:Newtonsoft.Json.Converters.StringEnumConverter">
<summary>
Converts an <see cref="T:System.Enum" /> to and from its name string value.
</summary>
</member>
<member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter" /> class.
</summary>
</member>
<member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Writes the JSON representation of the object.
</summary>
<param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter" /> to write to.</param>
<param name="value">The value.</param>
<param name="serializer">The calling serializer.</param>
</member>
<member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Reads the JSON representation of the object.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> to read from.</param>
<param name="objectType">Type of the object.</param>
<param name="existingValue">The existing value of object being read.</param>
<param name="serializer">The calling serializer.</param>
<returns>The object value.</returns>
</member>
<member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)">
<summary>
Determines whether this instance can convert the specified object type.
</summary>
<param name="objectType">Type of the object.</param>
<returns>
<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
</returns>
</member>
<member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText">
<summary>
Gets or sets a value indicating whether the written enum text should be camel case.
</summary>
<value>
<c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>
</member>
<member name="P:Newtonsoft.Json.Converters.StringEnumConverter.AllowIntegerValues">
<summary>
Gets or sets a value indicating whether integer values are allowed.
</summary>
<value>
<c>true</c> if integers are allowed; otherwise, <c>false</c>.</value>
</member>
<member name="T:Newtonsoft.Json.ConstructorHandling">
<summary>
Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer" />.
</summary>
</member>
<member name="F:Newtonsoft.Json.ConstructorHandling.Default">
<summary>
First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.
</summary>
</member>
<member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor">
<summary>
Json.NET will use a non-public default constructor before falling back to a paramatized constructor.
</summary>
</member>
<member name="T:Newtonsoft.Json.Converters.VersionConverter">
<summary>
Converts a <see cref="T:System.Version" /> to and from a string (e.g. "1.2.3.4").
</summary>
</member>
<member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Writes the JSON representation of the object.
</summary>
<param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter" /> to write to.</param>
<param name="value">The value.</param>
<param name="serializer">The calling serializer.</param>
</member>
<member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Reads the JSON representation of the object.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> to read from.</param>
<param name="objectType">Type of the object.</param>
<param name="existingValue">The existing property value of the JSON that is being converted.</param>
<param name="serializer">The calling serializer.</param>
<returns>The object value.</returns>
</member>
<member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)">
<summary>
Determines whether this instance can convert the specified object type.
</summary>
<param name="objectType">Type of the object.</param>
<returns>
<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
</returns>
</member>
<member name="T:Newtonsoft.Json.DateFormatHandling">
<summary>
Specifies how dates are formatted when writing JSON text.
</summary>
</member>
<member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat">
<summary>
Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z".
</summary>
</member>
<member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat">
<summary>
Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/".
</summary>
</member>
<member name="T:Newtonsoft.Json.DateParseHandling">
<summary>
Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text.
</summary>
</member>
<member name="F:Newtonsoft.Json.DateParseHandling.None">
<summary>
Date formatted strings are not parsed to a date type and are read as strings.
</summary>
</member>
<member name="F:Newtonsoft.Json.DateParseHandling.DateTime">
<summary>
Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime" />.
</summary>
</member>
<member name="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset">
<summary>
Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset" />.
</summary>
</member>
<member name="T:Newtonsoft.Json.DateTimeZoneHandling">
<summary>
Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime" />.
</summary>
</member>
<member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local">
<summary>
Treat as local time. If the <see cref="T:System.DateTime" /> object represents a Coordinated Universal Time (UTC), it is converted to the local time.
</summary>
</member>
<member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc">
<summary>
Treat as a UTC. If the <see cref="T:System.DateTime" /> object represents a local time, it is converted to a UTC.
</summary>
</member>
<member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified">
<summary>
Treat as a local time if a <see cref="T:System.DateTime" /> is being converted to a string.
If a string is being converted to <see cref="T:System.DateTime" />, convert to a local time if a time zone is specified.
</summary>
</member>
<member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind">
<summary>
Time zone information should be preserved when converting.
</summary>
</member>
<member name="T:Newtonsoft.Json.FloatFormatHandling">
<summary>
Specifies float format handling options when writing special floating point numbers, e.g. <see cref="F:System.Double.NaN" />,
<see cref="F:System.Double.PositiveInfinity" /> and <see cref="F:System.Double.NegativeInfinity" /> with <see cref="T:Newtonsoft.Json.JsonWriter" />.
</summary>
</member>
<member name="F:Newtonsoft.Json.FloatFormatHandling.String">
<summary>
Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity".
</summary>
</member>
<member name="F:Newtonsoft.Json.FloatFormatHandling.Symbol">
<summary>
Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity.
Note that this will produce non-valid JSON.
</summary>
</member>
<member name="F:Newtonsoft.Json.FloatFormatHandling.DefaultValue">
<summary>
Write special floating point values as the property's default value in JSON, e.g. 0.0 for a <see cref="T:System.Double" /> property, null for a <see cref="T:System.Nullable`1" /> property.
</summary>
</member>
<member name="T:Newtonsoft.Json.FloatParseHandling">
<summary>
Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
</summary>
</member>
<member name="F:Newtonsoft.Json.FloatParseHandling.Double">
<summary>
Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Double" />.
</summary>
</member>
<member name="F:Newtonsoft.Json.FloatParseHandling.Decimal">
<summary>
Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Decimal" />.
</summary>
</member>
<member name="T:Newtonsoft.Json.Formatting">
<summary>
Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter" />.
</summary>
</member>
<member name="F:Newtonsoft.Json.Formatting.None">
<summary>
No special formatting is applied. This is the default.
</summary>
</member>
<member name="F:Newtonsoft.Json.Formatting.Indented">
<summary>
Causes child objects to be indented according to the <see cref="P:Newtonsoft.Json.JsonTextWriter.Indentation" /> and <see cref="P:Newtonsoft.Json.JsonTextWriter.IndentChar" /> settings.
</summary>
</member>
<member name="T:Newtonsoft.Json.JsonConstructorAttribute">
<summary>
Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer" /> to use the specified constructor when deserializing that object.
</summary>
</member>
<member name="T:Newtonsoft.Json.JsonContainerAttribute">
<summary>
Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer" /> how to serialize the object.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute" /> class.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute" /> class with the specified container Id.
</summary>
<param name="id">The container Id.</param>
</member>
<member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">
<summary>
Gets or sets the id.
</summary>
<value>The id.</value>
</member>
<member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">
<summary>
Gets or sets the title.
</summary>
<value>The title.</value>
</member>
<member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">
<summary>
Gets or sets the description.
</summary>
<value>The description.</value>
</member>
<member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType">
<summary>
Gets the collection's items converter.
</summary>
<value>The collection's items converter.</value>
</member>
<member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">
<summary>
Gets or sets a value that indicates whether to preserve object references.
</summary>
<value>
<c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.
</value>
</member>
<member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference">
<summary>
Gets or sets a value that indicates whether to preserve collection's items references.
</summary>
<value>
<c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.
</value>
</member>
<member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling">
<summary>
Gets or sets the reference loop handling used when serializing the collection's items.
</summary>
<value>The reference loop handling.</value>
</member>
<member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling">
<summary>
Gets or sets the type name handling used when serializing the collection's items.
</summary>
<value>The type name handling.</value>
</member>
<member name="T:Newtonsoft.Json.JsonDictionaryAttribute">
<summary>
Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer" /> how to serialize the collection.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute" /> class.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute" /> class with the specified container Id.
</summary>
<param name="id">The container Id.</param>
</member>
<member name="T:Newtonsoft.Json.JsonException">
<summary>
The exception thrown when an error occurs during Json serialization or deserialization.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException" /> class.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException" /> class
with a specified error message.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
</member>
<member name="M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException" /> class
with a specified error message and a reference to the inner exception that is the cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
</member>
<member name="M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException" /> class.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
<exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
</member>
<member name="T:Newtonsoft.Json.JsonExtensionDataAttribute">
<summary>
Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer" /> to deserialize properties with no matching class member into the specified collection
and write values during serialization.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonExtensionDataAttribute.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonExtensionDataAttribute" /> class.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.WriteData">
<summary>
Gets or sets a value that indicates whether to write extension data when serializing the object.
</summary>
<value>
<c>true</c> to write extension data when serializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
</value>
</member>
<member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.ReadData">
<summary>
Gets or sets a value that indicates whether to read extension data when deserializing the object.
</summary>
<value>
<c>true</c> to read extension data when deserializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
</value>
</member>
<member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
<summary>
Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty" />.
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor" /> class.
</summary>
<param name="name">The name.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
<summary>
When overridden in a derived class, returns whether resetting an object changes its value.
</summary>
<returns>
true if resetting the component changes its value; otherwise, false.
</returns>
<param name="component">The component to test for reset capability.
</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
<summary>
When overridden in a derived class, gets the current value of the property on a component.
</summary>
<returns>
The value of a property for a given component.
</returns>
<param name="component">The component with the property for which to retrieve the value.
</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
<summary>
When overridden in a derived class, resets the value for this property of the component to the default value.
</summary>
<param name="component">The component with the property value that is to be reset to the default value.
</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
<summary>
When overridden in a derived class, sets the value of the component to a different value.
</summary>
<param name="component">The component with the property value that is to be set.
</param>
<param name="value">The new value.
</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
<summary>
When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
</summary>
<returns>
true if the property should be persisted; otherwise, false.
</returns>
<param name="component">The component with the property to be examined for persistence.
</param>
</member>
<member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
<summary>
When overridden in a derived class, gets the type of the component this property is bound to.
</summary>
<returns>
A <see cref="T:System.Type" /> that represents the type of component this property is bound to. When the <see cref="M:System.ComponentModel.PropertyDescriptor.GetValue(System.Object)" /> or <see cref="M:System.ComponentModel.PropertyDescriptor.SetValue(System.Object,System.Object)" /> methods are invoked, the object specified might be an instance of this type.
</returns>
</member>
<member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
<summary>
When overridden in a derived class, gets a value indicating whether this property is read-only.
</summary>
<returns>
true if the property is read-only; otherwise, false.
</returns>
</member>
<member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
<summary>
When overridden in a derived class, gets the type of the property.
</summary>
<returns>
A <see cref="T:System.Type" /> that represents the type of the property.
</returns>
</member>
<member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
<summary>
Gets the hash code for the name of the member.
</summary>
<value>
</value>
<returns>
The hash code for the name of the member.
</returns>
</member>
<member name="T:Newtonsoft.Json.Serialization.ITraceWriter">
<summary>
Represents a trace writer.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
<summary>
Writes the specified trace level, message and optional exception.
</summary>
<param name="level">The <see cref="T:System.Diagnostics.TraceLevel" /> at which to write this trace.</param>
<param name="message">The trace message.</param>
<param name="ex">The trace exception. This parameter is optional.</param>
</member>
<member name="P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter">
<summary>
Gets the <see cref="T:System.Diagnostics.TraceLevel" /> that will be used to filter the trace messages passed to the writer.
For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
<code>Warning</code> and <code>Error</code> messages.
</summary>
<value>The <see cref="T:System.Diagnostics.TraceLevel" /> that will be used to filter the trace messages passed to the writer.</value>
</member>
<member name="T:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter">
<summary>
Represents a trace writer that writes to the application's <see cref="T:System.Diagnostics.TraceListener" /> instances.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
<summary>
Writes the specified trace level, message and optional exception.
</summary>
<param name="level">The <see cref="T:System.Diagnostics.TraceLevel" /> at which to write this trace.</param>
<param name="message">The trace message.</param>
<param name="ex">The trace exception. This parameter is optional.</param>
</member>
<member name="P:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.LevelFilter">
<summary>
Gets the <see cref="T:System.Diagnostics.TraceLevel" /> that will be used to filter the trace messages passed to the writer.
For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
<code>Warning</code> and <code>Error</code> messages.
</summary>
<value>
The <see cref="T:System.Diagnostics.TraceLevel" /> that will be used to filter the trace messages passed to the writer.
</value>
</member>
<member name="T:Newtonsoft.Json.Serialization.JsonContract">
<summary>
Contract details for a <see cref="T:System.Type" /> used by the <see cref="T:Newtonsoft.Json.JsonSerializer" />.
</summary>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType">
<summary>
Gets the underlying type for the contract.
</summary>
<value>The underlying type for the contract.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType">
<summary>
Gets or sets the type created during deserialization.
</summary>
<value>The type created during deserialization.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference">
<summary>
Gets or sets whether this type contract is serialized as a reference.
</summary>
<value>Whether this type contract is serialized as a reference.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter">
<summary>
Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter" /> for this contract.
</summary>
<value>The converter.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializedCallbacks">
<summary>
Gets or sets all methods called immediately after deserialization of the object.
</summary>
<value>The methods called immediately after deserialization of the object.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializingCallbacks">
<summary>
Gets or sets all methods called during deserialization of the object.
</summary>
<value>The methods called during deserialization of the object.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializedCallbacks">
<summary>
Gets or sets all methods called after serialization of the object graph.
</summary>
<value>The methods called after serialization of the object graph.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializingCallbacks">
<summary>
Gets or sets all methods called before serialization of the object.
</summary>
<value>The methods called before serialization of the object.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonContract.OnErrorCallbacks">
<summary>
Gets or sets all method called when an error is thrown during the serialization of the object.
</summary>
<value>The methods called when an error is thrown during the serialization of the object.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized">
<summary>
Gets or sets the method called immediately after deserialization of the object.
</summary>
<value>The method called immediately after deserialization of the object.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing">
<summary>
Gets or sets the method called during deserialization of the object.
</summary>
<value>The method called during deserialization of the object.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized">
<summary>
Gets or sets the method called after serialization of the object graph.
</summary>
<value>The method called after serialization of the object graph.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing">
<summary>
Gets or sets the method called before serialization of the object.
</summary>
<value>The method called before serialization of the object.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonContract.OnError">
<summary>
Gets or sets the method called when an error is thrown during the serialization of the object.
</summary>
<value>The method called when an error is thrown during the serialization of the object.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator">
<summary>
Gets or sets the default creator method used to create the object.
</summary>
<value>The default creator method used to create the object.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic">
<summary>
Gets or sets a value indicating whether the default creator is non public.
</summary>
<value>
<c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>
</member>
<member name="T:Newtonsoft.Json.Serialization.JsonContainerContract">
<summary>
Contract details for a <see cref="T:System.Type" /> used by the <see cref="T:Newtonsoft.Json.JsonSerializer" />.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonContainerContract" /> class.
</summary>
<param name="underlyingType">The underlying type for the contract.</param>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter">
<summary>
Gets or sets the default collection items <see cref="T:Newtonsoft.Json.JsonConverter" />.
</summary>
<value>The converter.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference">
<summary>
Gets or sets a value indicating whether the collection items preserve object references.
</summary>
<value>
<c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling">
<summary>
Gets or sets the collection item reference loop handling.
</summary>
<value>The reference loop handling.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling">
<summary>
Gets or sets the collection item type name handling.
</summary>
<value>The type name handling.</value>
</member>
<member name="T:Newtonsoft.Json.Serialization.MemoryTraceWriter">
<summary>
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.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.MemoryTraceWriter" /> class.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
<summary>
Writes the specified trace level, message and optional exception.
</summary>
<param name="level">The <see cref="T:System.Diagnostics.TraceLevel" /> at which to write this trace.</param>
<param name="message">The trace message.</param>
<param name="ex">The trace exception. This parameter is optional.</param>
</member>
<member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages">
<summary>
Returns an enumeration of the most recent trace messages.
</summary>
<returns>An enumeration of the most recent trace messages.</returns>
</member>
<member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString">
<summary>
Returns a <see cref="T:System.String" /> of the most recent trace messages.
</summary>
<returns>
A <see cref="T:System.String" /> of the most recent trace messages.
</returns>
</member>
<member name="P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter">
<summary>
Gets the <see cref="T:System.Diagnostics.TraceLevel" /> that will be used to filter the trace messages passed to the writer.
For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
<code>Warning</code> and <code>Error</code> messages.
</summary>
<value>
The <see cref="T:System.Diagnostics.TraceLevel" /> that will be used to filter the trace messages passed to the writer.
</value>
</member>
<member name="T:Newtonsoft.Json.IJsonLineInfo">
<summary>
Provides an interface to enable a class to return line and position information.
</summary>
</member>
<member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">
<summary>
Gets a value indicating whether the class can return line information.
</summary>
<returns>
<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
</returns>
</member>
<member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">
<summary>
Gets the current line number.
</summary>
<value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>
</member>
<member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">
<summary>
Gets the current line position.
</summary>
<value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>
</member>
<member name="T:Newtonsoft.Json.StringEscapeHandling">
<summary>
Specifies how strings are escaped when writing JSON text.
</summary>
</member>
<member name="F:Newtonsoft.Json.StringEscapeHandling.Default">
<summary>
Only control characters (e.g. newline) are escaped.
</summary>
</member>
<member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii">
<summary>
All non-ASCII and control characters (e.g. newline) are escaped.
</summary>
</member>
<member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml">
<summary>
HTML (&lt;, &gt;, &amp;, ', ") and control characters (e.g. newline) are escaped.
</summary>
</member>
<member name="T:Newtonsoft.Json.Linq.IJEnumerable`1">
<summary>
Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken" /> objects.
</summary>
<typeparam name="T">The type of token</typeparam>
</member>
<member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)">
<summary>
Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1" /> with the specified key.
</summary>
<value>
</value>
</member>
<member name="T:Newtonsoft.Json.Linq.JToken">
<summary>
Represents an abstract JSON token.
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
<summary>
Compares the values of two tokens, including the values of all descendant tokens.
</summary>
<param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken" /> to compare.</param>
<param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken" /> to compare.</param>
<returns>true if the tokens are equal; otherwise false.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)">
<summary>
Adds the specified content immediately after this token.
</summary>
<param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)">
<summary>
Adds the specified content immediately before this token.
</summary>
<param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.Ancestors">
<summary>
Returns a collection of the ancestor tokens of this token.
</summary>
<returns>A collection of the ancestor tokens of this token.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf">
<summary>
Returns a collection of the sibling tokens after this token, in document order.
</summary>
<returns>A collection of the sibling tokens after this tokens, in document order.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf">
<summary>
Returns a collection of the sibling tokens before this token, in document order.
</summary>
<returns>A collection of the sibling tokens before this token, in document order.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)">
<summary>
Gets the <see cref="T:Newtonsoft.Json.Linq.JToken" /> with the specified key converted to the specified type.
</summary>
<typeparam name="T">The type to convert the token to.</typeparam>
<param name="key">The token key.</param>
<returns>The converted token value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.Children">
<summary>
Returns a collection of the child tokens of this token, in document order.
</summary>
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:Newtonsoft.Json.Linq.JToken" /> containing the child tokens of this <see cref="T:Newtonsoft.Json.Linq.JToken" />, in document order.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.Children``1">
<summary>
Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
</summary>
<typeparam name="T">The type to filter the child tokens on.</typeparam>
<returns>A <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1" /> containing the child tokens of this <see cref="T:Newtonsoft.Json.Linq.JToken" />, in document order.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.Values``1">
<summary>
Returns a collection of the child values of this token, in document order.
</summary>
<typeparam name="T">The type to convert the values to.</typeparam>
<returns>A <see cref="T:System.Collections.Generic.IEnumerable`1" /> containing the child values of this <see cref="T:Newtonsoft.Json.Linq.JToken" />, in document order.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.Remove">
<summary>
Removes this token from its parent.
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)">
<summary>
Replaces this token with the specified token.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
<summary>
Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter" />.
</summary>
<param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter" /> into which this method will write.</param>
<param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter" /> which will be used when writing the token.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.ToString">
<summary>
Returns the indented JSON for this token.
</summary>
<returns>
The indented JSON for this token.
</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
<summary>
Returns the JSON for this token using the given formatting and converters.
</summary>
<param name="formatting">Indicates how the output is formatted.</param>
<param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter" /> which will be used when writing the token.</param>
<returns>The JSON for this token using the given formatting and converters.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Boolean" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.DateTimeOffset" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Nullable`1" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Int64" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Nullable`1" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Nullable`1" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Nullable`1" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Nullable`1" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Nullable`1" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Int32" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Int16" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.UInt16" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Char" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Byte" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.SByte">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.SByte" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Nullable`1" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Nullable`1" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Nullable`1" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Nullable`1" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.SByte}">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Nullable`1" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.DateTime" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Nullable`1" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Nullable`1" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Decimal" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Nullable`1" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Nullable`1" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Double" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Single" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.String" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.UInt32" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.UInt64" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Byte[]" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Guid" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Guid" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.TimeSpan" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.TimeSpan" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri">
<summary>
Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken" /> to <see cref="T:System.Uri" />.
</summary>
<param name="value">The value.</param>
<returns>The result of the conversion.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Boolean" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.DateTimeOffset" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte)~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Byte" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Byte})~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Nullable`1" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.SByte)~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.SByte" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.SByte})~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Nullable`1" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Nullable`1" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Nullable`1" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Nullable`1" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Nullable`1" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Nullable`1" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Nullable`1" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Int16" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.UInt16" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Int32" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Nullable`1" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.DateTime" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Nullable`1" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Nullable`1" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Decimal" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Nullable`1" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Nullable`1" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Nullable`1" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Nullable`1" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Double" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Single" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.String" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.UInt32" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.UInt64" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Byte[]" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Uri" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.TimeSpan" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Nullable`1" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Guid" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken">
<summary>
Performs an implicit conversion from <see cref="T:System.Nullable`1" /> to <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue" /> from.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JValue" /> initialized with the specified value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.CreateReader">
<summary>
Creates an <see cref="T:Newtonsoft.Json.JsonReader" /> for this token.
</summary>
<returns>An <see cref="T:Newtonsoft.Json.JsonReader" /> that can be used to read this token and its descendants.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)">
<summary>
Creates a <see cref="T:Newtonsoft.Json.Linq.JToken" /> from an object.
</summary>
<param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken" />.</param>
<returns>A <see cref="T:Newtonsoft.Json.Linq.JToken" /> with the value of the specified object</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Creates a <see cref="T:Newtonsoft.Json.Linq.JToken" /> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer" />.
</summary>
<param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken" />.</param>
<param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer" /> that will be used when reading the object.</param>
<returns>A <see cref="T:Newtonsoft.Json.Linq.JToken" /> with the value of the specified object</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1">
<summary>
Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<typeparam name="T">The object type that the token will be deserialized to.</typeparam>
<returns>The new object created from the JSON value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)">
<summary>
Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="objectType">The object type that the token will be deserialized to.</param>
<returns>The new object created from the JSON value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)">
<summary>
Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken" /> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer" />.
</summary>
<typeparam name="T">The object type that the token will be deserialized to.</typeparam>
<param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer" /> that will be used when creating the object.</param>
<returns>The new object created from the JSON value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)">
<summary>
Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken" /> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer" />.
</summary>
<param name="objectType">The object type that the token will be deserialized to.</param>
<param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer" /> that will be used when creating the object.</param>
<returns>The new object created from the JSON value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)">
<summary>
Creates a <see cref="T:Newtonsoft.Json.Linq.JToken" /> from a <see cref="T:Newtonsoft.Json.JsonReader" />.
</summary>
<param name="reader">An <see cref="T:Newtonsoft.Json.JsonReader" /> positioned at the token to read into this <see cref="T:Newtonsoft.Json.Linq.JToken" />.</param>
<returns>
An <see cref="T:Newtonsoft.Json.Linq.JToken" /> 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.
</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)">
<summary>
Load a <see cref="T:Newtonsoft.Json.Linq.JToken" /> from a string that contains JSON.
</summary>
<param name="json">A <see cref="T:System.String" /> that contains JSON.</param>
<returns>A <see cref="T:Newtonsoft.Json.Linq.JToken" /> populated from the string that contains JSON.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)">
<summary>
Creates a <see cref="T:Newtonsoft.Json.Linq.JToken" /> from a <see cref="T:Newtonsoft.Json.JsonReader" />.
</summary>
<param name="reader">An <see cref="T:Newtonsoft.Json.JsonReader" /> positioned at the token to read into this <see cref="T:Newtonsoft.Json.Linq.JToken" />.</param>
<returns>
An <see cref="T:Newtonsoft.Json.Linq.JToken" /> 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.
</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)">
<summary>
Selects a <see cref="T:Newtonsoft.Json.Linq.JToken" /> using a JPath expression. Selects the token that matches the object path.
</summary>
<param name="path">
A <see cref="T:System.String" /> that contains a JPath expression.
</param>
<returns>A <see cref="T:Newtonsoft.Json.Linq.JToken" />, or null.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)">
<summary>
Selects a <see cref="T:Newtonsoft.Json.Linq.JToken" /> using a JPath expression. Selects the token that matches the object path.
</summary>
<param name="path">
A <see cref="T:System.String" /> that contains a JPath expression.
</param>
<param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression.</param>
<returns>A <see cref="T:Newtonsoft.Json.Linq.JToken" />.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String)">
<summary>
Selects a collection of elements using a JPath expression.
</summary>
<param name="path">
A <see cref="T:System.String" /> that contains a JPath expression.
</param>
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains the selected elements.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String,System.Boolean)">
<summary>
Selects a collection of elements using a JPath expression.
</summary>
<param name="path">
A <see cref="T:System.String" /> that contains a JPath expression.
</param>
<param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression.</param>
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains the selected elements.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">
<summary>
Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken" />. All child tokens are recursively cloned.
</summary>
<returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken" />.</returns>
</member>
<member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer">
<summary>
Gets a comparer that can compare two tokens for value equality.
</summary>
<value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer" /> that can compare two nodes for value equality.</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JToken.Parent">
<summary>
Gets or sets the parent.
</summary>
<value>The parent.</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JToken.Root">
<summary>
Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken" /> of this <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<value>The root <see cref="T:Newtonsoft.Json.Linq.JToken" /> of this <see cref="T:Newtonsoft.Json.Linq.JToken" />.</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JToken.Type">
<summary>
Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<value>The type.</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JToken.HasValues">
<summary>
Gets a value indicating whether this token has child tokens.
</summary>
<value>
<c>true</c> if this token has child values; otherwise, <c>false</c>.
</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JToken.Next">
<summary>
Gets the next sibling token of this node.
</summary>
<value>The <see cref="T:Newtonsoft.Json.Linq.JToken" /> that contains the next sibling token.</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JToken.Previous">
<summary>
Gets the previous sibling token of this node.
</summary>
<value>The <see cref="T:Newtonsoft.Json.Linq.JToken" /> that contains the previous sibling token.</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JToken.Path">
<summary>
Gets the path of the JSON token.
</summary>
</member>
<member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)">
<summary>
Gets the <see cref="T:Newtonsoft.Json.Linq.JToken" /> with the specified key.
</summary>
<value>The <see cref="T:Newtonsoft.Json.Linq.JToken" /> with the specified key.</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JToken.First">
<summary>
Get the first child token of this token.
</summary>
<value>A <see cref="T:Newtonsoft.Json.Linq.JToken" /> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken" />.</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JToken.Last">
<summary>
Get the last child token of this token.
</summary>
<value>A <see cref="T:Newtonsoft.Json.Linq.JToken" /> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken" />.</value>
</member>
<member name="T:Newtonsoft.Json.Linq.JValue">
<summary>
Represents a value in JSON (string, integer, date, etc).
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue" /> class from another <see cref="T:Newtonsoft.Json.Linq.JValue" /> object.
</summary>
<param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue" /> object to copy from.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue" /> class with the given value.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Decimal)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue" /> class with the given value.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue" /> class with the given value.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue" /> class with the given value.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue" /> class with the given value.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue" /> class with the given value.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue" /> class with the given value.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTimeOffset)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue" /> class with the given value.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue" /> class with the given value.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue" /> class with the given value.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue" /> class with the given value.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue" /> class with the given value.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue" /> class with the given value.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue" /> class with the given value.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)">
<summary>
Creates a <see cref="T:Newtonsoft.Json.Linq.JValue" /> comment with the given value.
</summary>
<param name="value">The value.</param>
<returns>A <see cref="T:Newtonsoft.Json.Linq.JValue" /> comment with the given value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)">
<summary>
Creates a <see cref="T:Newtonsoft.Json.Linq.JValue" /> string with the given value.
</summary>
<param name="value">The value.</param>
<returns>A <see cref="T:Newtonsoft.Json.Linq.JValue" /> string with the given value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
<summary>
Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter" />.
</summary>
<param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter" /> into which this method will write.</param>
<param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter" /> which will be used when writing the token.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)">
<summary>
Indicates whether the current object is equal to another object of the same type.
</summary>
<returns>
true if the current object is equal to the <paramref name="other" /> parameter; otherwise, false.
</returns>
<param name="other">An object to compare with this object.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" />.
</summary>
<param name="obj">The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Object" />.</param>
<returns>
true if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" />; otherwise, false.
</returns>
<exception cref="T:System.NullReferenceException">
The <paramref name="obj" /> parameter is null.
</exception>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object" />.
</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.ToString">
<summary>
Returns a <see cref="T:System.String" /> that represents this instance.
</summary>
<returns>
A <see cref="T:System.String" /> that represents this instance.
</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)">
<summary>
Returns a <see cref="T:System.String" /> that represents this instance.
</summary>
<param name="format">The format.</param>
<returns>
A <see cref="T:System.String" /> that represents this instance.
</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)">
<summary>
Returns a <see cref="T:System.String" /> that represents this instance.
</summary>
<param name="formatProvider">The format provider.</param>
<returns>
A <see cref="T:System.String" /> that represents this instance.
</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)">
<summary>
Returns a <see cref="T:System.String" /> that represents this instance.
</summary>
<param name="format">The format.</param>
<param name="formatProvider">The format provider.</param>
<returns>
A <see cref="T:System.String" /> that represents this instance.
</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">
<summary>
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.
</summary>
<param name="obj">An object to compare with this instance.</param>
<returns>
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 <paramref name="obj" />.
Zero
This instance is equal to <paramref name="obj" />.
Greater than zero
This instance is greater than <paramref name="obj" />.
</returns>
<exception cref="T:System.ArgumentException">
<paramref name="obj" /> is not the same type as this instance.
</exception>
</member>
<member name="P:Newtonsoft.Json.Linq.JValue.HasValues">
<summary>
Gets a value indicating whether this token has child tokens.
</summary>
<value>
<c>true</c> if this token has child values; otherwise, <c>false</c>.
</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JValue.Type">
<summary>
Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<value>The type.</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JValue.Value">
<summary>
Gets or sets the underlying token value.
</summary>
<value>The underlying token value.</value>
</member>
<member name="T:Newtonsoft.Json.Linq.JRaw">
<summary>
Represents a raw JSON string.
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw" /> class from another <see cref="T:Newtonsoft.Json.Linq.JRaw" /> object.
</summary>
<param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw" /> object to copy from.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw" /> class.
</summary>
<param name="rawJson">The raw json.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)">
<summary>
Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw" /> with the content of the reader's current token.
</summary>
<param name="reader">The reader.</param>
<returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw" /> with the content of the reader's current token.</returns>
</member>
<member name="T:Newtonsoft.Json.Required">
<summary>
Indicating whether a property is required.
</summary>
</member>
<member name="F:Newtonsoft.Json.Required.Default">
<summary>
The property is not required. The default state.
</summary>
</member>
<member name="F:Newtonsoft.Json.Required.AllowNull">
<summary>
The property must be defined in JSON but can be a null value.
</summary>
</member>
<member name="F:Newtonsoft.Json.Required.Always">
<summary>
The property must be defined in JSON and cannot be a null value.
</summary>
</member>
<member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
<summary>
Contract details for a <see cref="T:System.Type" /> used by the <see cref="T:Newtonsoft.Json.JsonSerializer" />.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract" /> class.
</summary>
<param name="underlyingType">The underlying type for the contract.</param>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator">
<summary>
Gets or sets the ISerializable object constructor.
</summary>
<value>The ISerializable object constructor.</value>
</member>
<member name="T:Newtonsoft.Json.Serialization.JsonLinqContract">
<summary>
Contract details for a <see cref="T:System.Type" /> used by the <see cref="T:Newtonsoft.Json.JsonSerializer" />.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract" /> class.
</summary>
<param name="underlyingType">The underlying type for the contract.</param>
</member>
<member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract">
<summary>
Contract details for a <see cref="T:System.Type" /> used by the <see cref="T:Newtonsoft.Json.JsonSerializer" />.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract" /> class.
</summary>
<param name="underlyingType">The underlying type for the contract.</param>
</member>
<member name="T:Newtonsoft.Json.Serialization.IValueProvider">
<summary>
Provides methods to get and set values.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)">
<summary>
Sets the value.
</summary>
<param name="target">The target to set the value on.</param>
<param name="value">The value to set on the target.</param>
</member>
<member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)">
<summary>
Gets the value.
</summary>
<param name="target">The target to get the value from.</param>
<returns>The value.</returns>
</member>
<member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider">
<summary>
Get and set values for a <see cref="T:System.Reflection.MemberInfo" /> using dynamic methods.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider" /> class.
</summary>
<param name="memberInfo">The member info.</param>
</member>
<member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)">
<summary>
Sets the value.
</summary>
<param name="target">The target to set the value on.</param>
<param name="value">The value to set on the target.</param>
</member>
<member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)">
<summary>
Gets the value.
</summary>
<param name="target">The target to get the value from.</param>
<returns>The value.</returns>
</member>
<member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs">
<summary>
Provides data for the Error event.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs" /> class.
</summary>
<param name="currentObject">The current object.</param>
<param name="errorContext">The error context.</param>
</member>
<member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject">
<summary>
Gets the current object the error event is being raised against.
</summary>
<value>The current object the error event is being raised against.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext">
<summary>
Gets the error context.
</summary>
<value>The error context.</value>
</member>
<member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">
<summary>
Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer" />.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)">
<summary>
Resolves a reference to its object.
</summary>
<param name="context">The serialization context.</param>
<param name="reference">The reference to resolve.</param>
<returns>The object that</returns>
</member>
<member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)">
<summary>
Gets the reference for the sepecified object.
</summary>
<param name="context">The serialization context.</param>
<param name="value">The object to get a reference for.</param>
<returns>The reference to the object.</returns>
</member>
<member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)">
<summary>
Determines whether the specified object is referenced.
</summary>
<param name="context">The serialization context.</param>
<param name="value">The object to test for a reference.</param>
<returns>
<c>true</c> if the specified object is referenced; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)">
<summary>
Adds a reference to the specified object.
</summary>
<param name="context">The serialization context.</param>
<param name="reference">The reference.</param>
<param name="value">The object to reference.</param>
</member>
<member name="T:Newtonsoft.Json.PreserveReferencesHandling">
<summary>
Specifies reference handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer" />.
Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable.
</summary>
<example>
<code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="PreservingObjectReferencesOn" title="Preserve Object References" />
</example>
</member>
<member name="F:Newtonsoft.Json.PreserveReferencesHandling.None">
<summary>
Do not preserve references when serializing types.
</summary>
</member>
<member name="F:Newtonsoft.Json.PreserveReferencesHandling.Objects">
<summary>
Preserve references when serializing into a JSON object structure.
</summary>
</member>
<member name="F:Newtonsoft.Json.PreserveReferencesHandling.Arrays">
<summary>
Preserve references when serializing into a JSON array structure.
</summary>
</member>
<member name="F:Newtonsoft.Json.PreserveReferencesHandling.All">
<summary>
Preserve references when serializing.
</summary>
</member>
<member name="T:Newtonsoft.Json.JsonArrayAttribute">
<summary>
Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer" /> how to serialize the collection.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute" /> class.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute" /> class with a flag indicating whether the array can contain null items
</summary>
<param name="allowNullItems">A flag indicating whether the array can contain null items.</param>
</member>
<member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute" /> class with the specified container Id.
</summary>
<param name="id">The container Id.</param>
</member>
<member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">
<summary>
Gets or sets a value indicating whether null items are allowed in the collection.
</summary>
<value>
<c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>
</member>
<member name="T:Newtonsoft.Json.DefaultValueHandling">
<summary>
Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer" />.
</summary>
<example>
<code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class" />
<code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example" />
</example>
</member>
<member name="F:Newtonsoft.Json.DefaultValueHandling.Include">
<summary>
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.
</summary>
</member>
<member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">
<summary>
Ignore members where the member value is the same as the member's default value when serializing objects
so that is is not written to JSON.
This option will ignore all default values (e.g. <c>null</c> for objects and nullable typesl; <c>0</c> for integers,
decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by
placing the <see cref="T:System.ComponentModel.DefaultValueAttribute" /> on the property.
</summary>
</member>
<member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">
<summary>
Members with a default value but no JSON will be set to their default value when deserializing.
</summary>
</member>
<member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">
<summary>
Ignore members where the member value is the same as the member's default value when serializing objects
and sets members to their default value when deserializing.
</summary>
</member>
<member name="T:Newtonsoft.Json.JsonConverterAttribute">
<summary>
Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer" /> to use the specified <see cref="T:Newtonsoft.Json.JsonConverter" /> when serializing the member or class.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute" /> class.
</summary>
<param name="converterType">Type of the converter.</param>
</member>
<member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType">
<summary>
Gets the type of the converter.
</summary>
<value>The type of the converter.</value>
</member>
<member name="T:Newtonsoft.Json.JsonObjectAttribute">
<summary>
Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer" /> how to serialize the object.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute" /> class.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute" /> class with the specified member serialization.
</summary>
<param name="memberSerialization">The member serialization.</param>
</member>
<member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute" /> class with the specified container Id.
</summary>
<param name="id">The container Id.</param>
</member>
<member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization">
<summary>
Gets or sets the member serialization.
</summary>
<value>The member serialization.</value>
</member>
<member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired">
<summary>
Gets or sets a value that indicates whether the object's properties are required.
</summary>
<value>
A value indicating whether the object's properties are required.
</value>
</member>
<member name="T:Newtonsoft.Json.JsonSerializerSettings">
<summary>
Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer" /> object.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings" /> class.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling">
<summary>
Gets or sets how reference loops (e.g. a class referencing itself) is handled.
</summary>
<value>Reference loop handling.</value>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling">
<summary>
Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
</summary>
<value>Missing member handling.</value>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling">
<summary>
Gets or sets how objects are created during deserialization.
</summary>
<value>The object creation handling.</value>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling">
<summary>
Gets or sets how null values are handled during serialization and deserialization.
</summary>
<value>Null value handling.</value>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling">
<summary>
Gets or sets how null default are handled during serialization and deserialization.
</summary>
<value>The default value handling.</value>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters">
<summary>
Gets or sets a collection <see cref="T:Newtonsoft.Json.JsonConverter" /> that will be used during serialization.
</summary>
<value>The converters.</value>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling">
<summary>
Gets or sets how object references are preserved by the serializer.
</summary>
<value>The preserve references handling.</value>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling">
<summary>
Gets or sets how type name writing and reading is handled by the serializer.
</summary>
<value>The type name handling.</value>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat">
<summary>
Gets or sets how a type name assembly is written and resolved by the serializer.
</summary>
<value>The type name assembly format.</value>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling">
<summary>
Gets or sets how constructors are used during deserialization.
</summary>
<value>The constructor handling.</value>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver">
<summary>
Gets or sets the contract resolver used by the serializer when
serializing .NET objects to JSON and vice versa.
</summary>
<value>The contract resolver.</value>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver">
<summary>
Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver" /> used by the serializer when resolving references.
</summary>
<value>The reference resolver.</value>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter">
<summary>
Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter" /> used by the serializer when writing trace messages.
</summary>
<value>The trace writer.</value>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder">
<summary>
Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder" /> used by the serializer when resolving type names.
</summary>
<value>The binder.</value>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.Error">
<summary>
Gets or sets the error handler called during serialization and deserialization.
</summary>
<value>The error handler called during serialization and deserialization.</value>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.Context">
<summary>
Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext" /> used by the serializer when invoking serialization callback methods.
</summary>
<value>The context.</value>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatString">
<summary>
Get or set how <see cref="T:System.DateTime" /> and <see cref="T:System.DateTimeOffset" /> values are formatting when writing JSON text.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth">
<summary>
Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException" />.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting">
<summary>
Indicates how JSON text output is formatted.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling">
<summary>
Get or set how dates are written to JSON text.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling">
<summary>
Get or set how <see cref="T:System.DateTime" /> time zones are handling during serialization and deserialization.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling">
<summary>
Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatFormatHandling">
<summary>
Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN" />,
<see cref="F:System.Double.PositiveInfinity" /> and <see cref="F:System.Double.NegativeInfinity" />,
are written as JSON.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatParseHandling">
<summary>
Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.StringEscapeHandling">
<summary>
Get or set how strings are escaped when writing JSON text.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.Culture">
<summary>
Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture" />.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent">
<summary>
Gets a value indicating whether there will be a check for additional content after deserializing an object.
</summary>
<value>
<c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.
</value>
</member>
<member name="T:Newtonsoft.Json.JsonValidatingReader">
<summary>
Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> validation.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader" /> class that
validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader" />.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> to read from while validating.</param>
</member>
<member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1" />.
</summary>
<returns>A <see cref="T:System.Nullable`1" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
<summary>
Reads the next JSON token from the stream as a <see cref="T:Byte[]" />.
</summary>
<returns>
A <see cref="T:Byte[]" /> or a null reference if the next JSON token is null.
</returns>
</member>
<member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1" />.
</summary>
<returns>A <see cref="T:System.Nullable`1" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsString">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.String" />.
</summary>
<returns>A <see cref="T:System.String" />. This method will return <c>null</c> at the end of an array.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1" />.
</summary>
<returns>A <see cref="T:System.String" />. This method will return <c>null</c> at the end of an array.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1" />.
</summary>
<returns>A <see cref="T:System.Nullable`1" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonValidatingReader.Read">
<summary>
Reads the next JSON token from the stream.
</summary>
<returns>
true if the next token was read successfully; false if there are no more tokens to read.
</returns>
</member>
<member name="P:Newtonsoft.Json.JsonValidatingReader.Value">
<summary>
Gets the text value of the current JSON token.
</summary>
<value>
</value>
</member>
<member name="P:Newtonsoft.Json.JsonValidatingReader.Depth">
<summary>
Gets the depth of the current token in the JSON document.
</summary>
<value>The depth of the current token in the JSON document.</value>
</member>
<member name="P:Newtonsoft.Json.JsonValidatingReader.Path">
<summary>
Gets the path of the current JSON token.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar">
<summary>
Gets the quotation mark character used to enclose the value of a string.
</summary>
<value>
</value>
</member>
<member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType">
<summary>
Gets the type of the current JSON token.
</summary>
<value>
</value>
</member>
<member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
<summary>
Gets the Common Language Runtime (CLR) type for the current JSON token.
</summary>
<value>
</value>
</member>
<member name="P:Newtonsoft.Json.JsonValidatingReader.Schema">
<summary>
Gets or sets the schema.
</summary>
<value>The schema.</value>
</member>
<member name="P:Newtonsoft.Json.JsonValidatingReader.Reader">
<summary>
Gets the <see cref="T:Newtonsoft.Json.JsonReader" /> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader" />.
</summary>
<value>The <see cref="T:Newtonsoft.Json.JsonReader" /> specified in the constructor.</value>
</member>
<member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler">
<summary>
Sets an event handler for receiving schema validation errors.
</summary>
</member>
<member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer">
<summary>
Compares tokens to determine whether they are equal.
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
<summary>
Determines whether the specified objects are equal.
</summary>
<param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken" /> to compare.</param>
<param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken" /> to compare.</param>
<returns>
true if the specified objects are equal; otherwise, false.
</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)">
<summary>
Returns a hash code for the specified object.
</summary>
<param name="obj">The <see cref="T:System.Object" /> for which a hash code is to be returned.</param>
<returns>A hash code for the specified object.</returns>
<exception cref="T:System.ArgumentNullException">The type of <paramref name="obj" /> is a reference type and <paramref name="obj" /> is null.</exception>
</member>
<member name="T:Newtonsoft.Json.MemberSerialization">
<summary>
Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer" />.
</summary>
</member>
<member name="F:Newtonsoft.Json.MemberSerialization.OptOut">
<summary>
All public members are serialized by default. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute" /> or <see cref="T:System.NonSerializedAttribute" />.
This is the default member serialization mode.
</summary>
</member>
<member name="F:Newtonsoft.Json.MemberSerialization.OptIn">
<summary>
Only members must be marked with <see cref="T:Newtonsoft.Json.JsonPropertyAttribute" /> or <see cref="T:System.Runtime.Serialization.DataMemberAttribute" /> are serialized.
This member serialization mode can also be set by marking the class with <see cref="T:System.Runtime.Serialization.DataContractAttribute" />.
</summary>
</member>
<member name="F:Newtonsoft.Json.MemberSerialization.Fields">
<summary>
All public and private fields are serialized. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute" /> or <see cref="T:System.NonSerializedAttribute" />.
This member serialization mode can also be set by marking the class with <see cref="T:System.SerializableAttribute" />
and setting IgnoreSerializableAttribute on <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver" /> to false.
</summary>
</member>
<member name="T:Newtonsoft.Json.ObjectCreationHandling">
<summary>
Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer" />.
</summary>
</member>
<member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto">
<summary>
Reuse existing objects, create new objects when needed.
</summary>
</member>
<member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse">
<summary>
Only reuse existing objects.
</summary>
</member>
<member name="F:Newtonsoft.Json.ObjectCreationHandling.Replace">
<summary>
Always create new objects.
</summary>
</member>
<member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">
<summary>
Converts a <see cref="T:System.DateTime" /> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).
</summary>
</member>
<member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Writes the JSON representation of the object.
</summary>
<param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter" /> to write to.</param>
<param name="value">The value.</param>
<param name="serializer">The calling serializer.</param>
</member>
<member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Reads the JSON representation of the object.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> to read from.</param>
<param name="objectType">Type of the object.</param>
<param name="existingValue">The existing value of object being read.</param>
<param name="serializer">The calling serializer.</param>
<returns>The object value.</returns>
</member>
<member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles">
<summary>
Gets or sets the date time styles used when converting a date to and from JSON.
</summary>
<value>The date time styles used when converting a date to and from JSON.</value>
</member>
<member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat">
<summary>
Gets or sets the date time format used when converting a date to and from JSON.
</summary>
<value>The date time format used when converting a date to and from JSON.</value>
</member>
<member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture">
<summary>
Gets or sets the culture used when converting a date to and from JSON.
</summary>
<value>The culture used when converting a date to and from JSON.</value>
</member>
<member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">
<summary>
Converts a <see cref="T:System.DateTime" /> to and from a JavaScript date constructor (e.g. new Date(52231943)).
</summary>
</member>
<member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Writes the JSON representation of the object.
</summary>
<param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter" /> to write to.</param>
<param name="value">The value.</param>
<param name="serializer">The calling serializer.</param>
</member>
<member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Reads the JSON representation of the object.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> to read from.</param>
<param name="objectType">Type of the object.</param>
<param name="existingValue">The existing property value of the JSON that is being converted.</param>
<param name="serializer">The calling serializer.</param>
<returns>The object value.</returns>
</member>
<member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">
<summary>
Converts XML to and from JSON.
</summary>
</member>
<member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Writes the JSON representation of the object.
</summary>
<param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter" /> to write to.</param>
<param name="serializer">The calling serializer.</param>
<param name="value">The value.</param>
</member>
<member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Reads the JSON representation of the object.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> to read from.</param>
<param name="objectType">Type of the object.</param>
<param name="existingValue">The existing value of object being read.</param>
<param name="serializer">The calling serializer.</param>
<returns>The object value.</returns>
</member>
<member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">
<summary>
Checks if the attributeName is a namespace attribute.
</summary>
<param name="attributeName">Attribute name to test.</param>
<param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param>
<returns>True if attribute name is for a namespace attribute, otherwise false.</returns>
</member>
<member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">
<summary>
Determines whether this instance can convert the specified value type.
</summary>
<param name="valueType">Type of the value.</param>
<returns>
<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
</returns>
</member>
<member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">
<summary>
Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.
</summary>
<value>The name of the deserialize root element.</value>
</member>
<member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">
<summary>
Gets or sets a flag to indicate whether to write the Json.NET array attribute.
This attribute helps preserve arrays when converting the written XML back to JSON.
</summary>
<value>
<c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>
</member>
<member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">
<summary>
Gets or sets a value indicating whether to write the root JSON object.
</summary>
<value>
<c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>
</member>
<member name="T:Newtonsoft.Json.JsonTextReader">
<summary>
Represents a reader that provides fast, non-cached, forward-only access to JSON text data.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader" /> class with the specified <see cref="T:System.IO.TextReader" />.
</summary>
<param name="reader">The <c>TextReader</c> containing the XML data to read.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextReader.Read">
<summary>
Reads the next JSON token from the stream.
</summary>
<returns>
true if the next token was read successfully; false if there are no more tokens to read.
</returns>
</member>
<member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes">
<summary>
Reads the next JSON token from the stream as a <see cref="T:Byte[]" />.
</summary>
<returns>
A <see cref="T:Byte[]" /> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.
</returns>
</member>
<member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1" />.
</summary>
<returns>A <see cref="T:System.Nullable`1" />. This method will return <c>null</c> at the end of an array.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1" />.
</summary>
<returns>A <see cref="T:System.Nullable`1" />. This method will return <c>null</c> at the end of an array.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonTextReader.ReadAsString">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.String" />.
</summary>
<returns>A <see cref="T:System.String" />. This method will return <c>null</c> at the end of an array.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1" />.
</summary>
<returns>A <see cref="T:System.String" />. This method will return <c>null</c> at the end of an array.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1" />.
</summary>
<returns>A <see cref="T:System.DateTimeOffset" />. This method will return <c>null</c> at the end of an array.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonTextReader.Close">
<summary>
Changes the state to closed.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo">
<summary>
Gets a value indicating whether the class can return line information.
</summary>
<returns>
<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
</returns>
</member>
<member name="P:Newtonsoft.Json.JsonTextReader.LineNumber">
<summary>
Gets the current line number.
</summary>
<value>
The current line number or 0 if no line information is available (for example, HasLineInfo returns false).
</value>
</member>
<member name="P:Newtonsoft.Json.JsonTextReader.LinePosition">
<summary>
Gets the current line position.
</summary>
<value>
The current line position or 0 if no line information is available (for example, HasLineInfo returns false).
</value>
</member>
<member name="T:Newtonsoft.Json.JsonPropertyAttribute">
<summary>
Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer" /> to always serialize the member with the specified name.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute" /> class.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute" /> class with the specified name.
</summary>
<param name="propertyName">Name of the property.</param>
</member>
<member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType">
<summary>
Gets or sets the converter used when serializing the property's collection items.
</summary>
<value>The collection's items converter.</value>
</member>
<member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling">
<summary>
Gets or sets the null value handling used when serializing this property.
</summary>
<value>The null value handling.</value>
</member>
<member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling">
<summary>
Gets or sets the default value handling used when serializing this property.
</summary>
<value>The default value handling.</value>
</member>
<member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling">
<summary>
Gets or sets the reference loop handling used when serializing this property.
</summary>
<value>The reference loop handling.</value>
</member>
<member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling">
<summary>
Gets or sets the object creation handling used when deserializing this property.
</summary>
<value>The object creation handling.</value>
</member>
<member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling">
<summary>
Gets or sets the type name handling used when serializing this property.
</summary>
<value>The type name handling.</value>
</member>
<member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference">
<summary>
Gets or sets whether this property's value is serialized as a reference.
</summary>
<value>Whether this property's value is serialized as a reference.</value>
</member>
<member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order">
<summary>
Gets or sets the order of serialization and deserialization of a member.
</summary>
<value>The numeric order of serialization or deserialization.</value>
</member>
<member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required">
<summary>
Gets or sets a value indicating whether this property is required.
</summary>
<value>
A value indicating whether this property is required.
</value>
</member>
<member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName">
<summary>
Gets or sets the name of the property.
</summary>
<value>The name of the property.</value>
</member>
<member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling">
<summary>
Gets or sets the the reference loop handling used when serializing the property's collection items.
</summary>
<value>The collection's items reference loop handling.</value>
</member>
<member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling">
<summary>
Gets or sets the the type name handling used when serializing the property's collection items.
</summary>
<value>The collection's items type name handling.</value>
</member>
<member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference">
<summary>
Gets or sets whether this property's collection items are serialized as a reference.
</summary>
<value>Whether this property's collection items are serialized as a reference.</value>
</member>
<member name="T:Newtonsoft.Json.JsonIgnoreAttribute">
<summary>
Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer" /> not to serialize the public field or public read/write property value.
</summary>
</member>
<member name="T:Newtonsoft.Json.JsonTextWriter">
<summary>
Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)">
<summary>
Creates an instance of the <c>JsonWriter</c> class using the specified <see cref="T:System.IO.TextWriter" />.
</summary>
<param name="textWriter">The <c>TextWriter</c> to write to.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.Flush">
<summary>
Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.Close">
<summary>
Closes this stream and the underlying stream.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject">
<summary>
Writes the beginning of a Json object.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray">
<summary>
Writes the beginning of a Json array.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)">
<summary>
Writes the start of a constructor with the given name.
</summary>
<param name="name">The name of the constructor.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
<summary>
Writes the specified end token.
</summary>
<param name="token">The end token to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)">
<summary>
Writes the property name of a name/value pair on a Json object.
</summary>
<param name="name">The name of the property.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String,System.Boolean)">
<summary>
Writes the property name of a name/value pair on a JSON object.
</summary>
<param name="name">The name of the property.</param>
<param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndent">
<summary>
Writes indent characters.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter">
<summary>
Writes the JSON value delimiter.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace">
<summary>
Writes an indent space.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Object)">
<summary>
Writes a <see cref="T:System.Object" /> value.
An error will raised if the value cannot be written as a single JSON token.
</summary>
<param name="value">The <see cref="T:System.Object" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteNull">
<summary>
Writes a null value.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefined">
<summary>
Writes an undefined value.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)">
<summary>
Writes raw JSON.
</summary>
<param name="json">The raw JSON to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)">
<summary>
Writes a <see cref="T:System.String" /> value.
</summary>
<param name="value">The <see cref="T:System.String" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)">
<summary>
Writes a <see cref="T:System.Int32" /> value.
</summary>
<param name="value">The <see cref="T:System.Int32" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)">
<summary>
Writes a <see cref="T:System.UInt32" /> value.
</summary>
<param name="value">The <see cref="T:System.UInt32" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)">
<summary>
Writes a <see cref="T:System.Int64" /> value.
</summary>
<param name="value">The <see cref="T:System.Int64" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)">
<summary>
Writes a <see cref="T:System.UInt64" /> value.
</summary>
<param name="value">The <see cref="T:System.UInt64" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)">
<summary>
Writes a <see cref="T:System.Single" /> value.
</summary>
<param name="value">The <see cref="T:System.Single" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Single})">
<summary>
Writes a <see cref="T:System.Nullable`1" /> value.
</summary>
<param name="value">The <see cref="T:System.Nullable`1" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)">
<summary>
Writes a <see cref="T:System.Double" /> value.
</summary>
<param name="value">The <see cref="T:System.Double" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Double})">
<summary>
Writes a <see cref="T:System.Nullable`1" /> value.
</summary>
<param name="value">The <see cref="T:System.Nullable`1" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)">
<summary>
Writes a <see cref="T:System.Boolean" /> value.
</summary>
<param name="value">The <see cref="T:System.Boolean" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)">
<summary>
Writes a <see cref="T:System.Int16" /> value.
</summary>
<param name="value">The <see cref="T:System.Int16" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)">
<summary>
Writes a <see cref="T:System.UInt16" /> value.
</summary>
<param name="value">The <see cref="T:System.UInt16" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)">
<summary>
Writes a <see cref="T:System.Char" /> value.
</summary>
<param name="value">The <see cref="T:System.Char" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)">
<summary>
Writes a <see cref="T:System.Byte" /> value.
</summary>
<param name="value">The <see cref="T:System.Byte" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)">
<summary>
Writes a <see cref="T:System.SByte" /> value.
</summary>
<param name="value">The <see cref="T:System.SByte" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)">
<summary>
Writes a <see cref="T:System.Decimal" /> value.
</summary>
<param name="value">The <see cref="T:System.Decimal" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)">
<summary>
Writes a <see cref="T:System.DateTime" /> value.
</summary>
<param name="value">The <see cref="T:System.DateTime" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])">
<summary>
Writes a <see cref="T:Byte[]" /> value.
</summary>
<param name="value">The <see cref="T:Byte[]" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)">
<summary>
Writes a <see cref="T:System.DateTimeOffset" /> value.
</summary>
<param name="value">The <see cref="T:System.DateTimeOffset" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)">
<summary>
Writes a <see cref="T:System.Guid" /> value.
</summary>
<param name="value">The <see cref="T:System.Guid" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)">
<summary>
Writes a <see cref="T:System.TimeSpan" /> value.
</summary>
<param name="value">The <see cref="T:System.TimeSpan" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)">
<summary>
Writes a <see cref="T:System.Uri" /> value.
</summary>
<param name="value">The <see cref="T:System.Uri" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)">
<summary>
Writes out a comment <code>/*...*/</code> containing the specified text.
</summary>
<param name="text">Text to place inside the comment.</param>
</member>
<member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)">
<summary>
Writes out the given white space.
</summary>
<param name="ws">The string of white space characters.</param>
</member>
<member name="P:Newtonsoft.Json.JsonTextWriter.Indentation">
<summary>
Gets or sets how many IndentChars to write for each level in the hierarchy when <see cref="T:Newtonsoft.Json.Formatting" /> is set to <c>Formatting.Indented</c>.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar">
<summary>
Gets or sets which character to use to quote attribute values.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar">
<summary>
Gets or sets which character to use for indenting when <see cref="T:Newtonsoft.Json.Formatting" /> is set to <c>Formatting.Indented</c>.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName">
<summary>
Gets or sets a value indicating whether object names will be surrounded with quotes.
</summary>
</member>
<member name="T:Newtonsoft.Json.JsonWriterException">
<summary>
The exception thrown when an error occurs while reading Json text.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonWriterException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException" /> class.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException" /> class
with a specified error message.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException" /> class
with a specified error message and a reference to the inner exception that is the cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
</member>
<member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException" /> class.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
<exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
</member>
<member name="P:Newtonsoft.Json.JsonWriterException.Path">
<summary>
Gets the path to the JSON where the error occurred.
</summary>
<value>The path to the JSON where the error occurred.</value>
</member>
<member name="T:Newtonsoft.Json.JsonReaderException">
<summary>
The exception thrown when an error occurs while reading Json text.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonReaderException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException" /> class.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException" /> class
with a specified error message.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
</member>
<member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException" /> class
with a specified error message and a reference to the inner exception that is the cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
</member>
<member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException" /> class.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
<exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
</member>
<member name="P:Newtonsoft.Json.JsonReaderException.LineNumber">
<summary>
Gets the line number indicating where the error occurred.
</summary>
<value>The line number indicating where the error occurred.</value>
</member>
<member name="P:Newtonsoft.Json.JsonReaderException.LinePosition">
<summary>
Gets the line position indicating where the error occurred.
</summary>
<value>The line position indicating where the error occurred.</value>
</member>
<member name="P:Newtonsoft.Json.JsonReaderException.Path">
<summary>
Gets the path to the JSON where the error occurred.
</summary>
<value>The path to the JSON where the error occurred.</value>
</member>
<member name="T:Newtonsoft.Json.JsonConverterCollection">
<summary>
Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter" />.
</summary>
</member>
<member name="T:Newtonsoft.Json.JsonConvert">
<summary>
Provides methods for converting between common language runtime types and JSON types.
</summary>
<example>
<code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" />
</example>
</member>
<member name="F:Newtonsoft.Json.JsonConvert.True">
<summary>
Represents JavaScript's boolean value true as a string. This field is read-only.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonConvert.False">
<summary>
Represents JavaScript's boolean value false as a string. This field is read-only.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonConvert.Null">
<summary>
Represents JavaScript's null as a string. This field is read-only.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonConvert.Undefined">
<summary>
Represents JavaScript's undefined as a string. This field is read-only.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">
<summary>
Represents JavaScript's positive infinity as a string. This field is read-only.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">
<summary>
Represents JavaScript's negative infinity as a string. This field is read-only.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonConvert.NaN">
<summary>
Represents JavaScript's NaN as a string. This field is read-only.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">
<summary>
Converts the <see cref="T:System.DateTime" /> to its JSON string representation.
</summary>
<param name="value">The value to convert.</param>
<returns>A JSON string representation of the <see cref="T:System.DateTime" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)">
<summary>
Converts the <see cref="T:System.DateTime" /> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling" /> specified.
</summary>
<param name="value">The value to convert.</param>
<param name="format">The format the date will be converted to.</param>
<param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param>
<returns>A JSON string representation of the <see cref="T:System.DateTime" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)">
<summary>
Converts the <see cref="T:System.DateTimeOffset" /> to its JSON string representation.
</summary>
<param name="value">The value to convert.</param>
<returns>A JSON string representation of the <see cref="T:System.DateTimeOffset" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)">
<summary>
Converts the <see cref="T:System.DateTimeOffset" /> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling" /> specified.
</summary>
<param name="value">The value to convert.</param>
<param name="format">The format the date will be converted to.</param>
<returns>A JSON string representation of the <see cref="T:System.DateTimeOffset" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">
<summary>
Converts the <see cref="T:System.Boolean" /> to its JSON string representation.
</summary>
<param name="value">The value to convert.</param>
<returns>A JSON string representation of the <see cref="T:System.Boolean" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">
<summary>
Converts the <see cref="T:System.Char" /> to its JSON string representation.
</summary>
<param name="value">The value to convert.</param>
<returns>A JSON string representation of the <see cref="T:System.Char" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">
<summary>
Converts the <see cref="T:System.Enum" /> to its JSON string representation.
</summary>
<param name="value">The value to convert.</param>
<returns>A JSON string representation of the <see cref="T:System.Enum" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">
<summary>
Converts the <see cref="T:System.Int32" /> to its JSON string representation.
</summary>
<param name="value">The value to convert.</param>
<returns>A JSON string representation of the <see cref="T:System.Int32" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">
<summary>
Converts the <see cref="T:System.Int16" /> to its JSON string representation.
</summary>
<param name="value">The value to convert.</param>
<returns>A JSON string representation of the <see cref="T:System.Int16" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">
<summary>
Converts the <see cref="T:System.UInt16" /> to its JSON string representation.
</summary>
<param name="value">The value to convert.</param>
<returns>A JSON string representation of the <see cref="T:System.UInt16" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">
<summary>
Converts the <see cref="T:System.UInt32" /> to its JSON string representation.
</summary>
<param name="value">The value to convert.</param>
<returns>A JSON string representation of the <see cref="T:System.UInt32" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">
<summary>
Converts the <see cref="T:System.Int64" /> to its JSON string representation.
</summary>
<param name="value">The value to convert.</param>
<returns>A JSON string representation of the <see cref="T:System.Int64" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">
<summary>
Converts the <see cref="T:System.UInt64" /> to its JSON string representation.
</summary>
<param name="value">The value to convert.</param>
<returns>A JSON string representation of the <see cref="T:System.UInt64" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">
<summary>
Converts the <see cref="T:System.Single" /> to its JSON string representation.
</summary>
<param name="value">The value to convert.</param>
<returns>A JSON string representation of the <see cref="T:System.Single" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">
<summary>
Converts the <see cref="T:System.Double" /> to its JSON string representation.
</summary>
<param name="value">The value to convert.</param>
<returns>A JSON string representation of the <see cref="T:System.Double" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">
<summary>
Converts the <see cref="T:System.Byte" /> to its JSON string representation.
</summary>
<param name="value">The value to convert.</param>
<returns>A JSON string representation of the <see cref="T:System.Byte" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">
<summary>
Converts the <see cref="T:System.SByte" /> to its JSON string representation.
</summary>
<param name="value">The value to convert.</param>
<returns>A JSON string representation of the <see cref="T:System.SByte" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">
<summary>
Converts the <see cref="T:System.Decimal" /> to its JSON string representation.
</summary>
<param name="value">The value to convert.</param>
<returns>A JSON string representation of the <see cref="T:System.SByte" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">
<summary>
Converts the <see cref="T:System.Guid" /> to its JSON string representation.
</summary>
<param name="value">The value to convert.</param>
<returns>A JSON string representation of the <see cref="T:System.Guid" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)">
<summary>
Converts the <see cref="T:System.TimeSpan" /> to its JSON string representation.
</summary>
<param name="value">The value to convert.</param>
<returns>A JSON string representation of the <see cref="T:System.TimeSpan" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)">
<summary>
Converts the <see cref="T:System.Uri" /> to its JSON string representation.
</summary>
<param name="value">The value to convert.</param>
<returns>A JSON string representation of the <see cref="T:System.Uri" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)">
<summary>
Converts the <see cref="T:System.String" /> to its JSON string representation.
</summary>
<param name="value">The value to convert.</param>
<returns>A JSON string representation of the <see cref="T:System.String" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)">
<summary>
Converts the <see cref="T:System.String" /> to its JSON string representation.
</summary>
<param name="value">The value to convert.</param>
<param name="delimiter">The string delimiter character.</param>
<returns>A JSON string representation of the <see cref="T:System.String" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)">
<summary>
Converts the <see cref="T:System.Object" /> to its JSON string representation.
</summary>
<param name="value">The value to convert.</param>
<returns>A JSON string representation of the <see cref="T:System.Object" />.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)">
<summary>
Serializes the specified object to a JSON string.
</summary>
<param name="value">The object to serialize.</param>
<returns>A JSON string representation of the object.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)">
<summary>
Serializes the specified object to a JSON string using formatting.
</summary>
<param name="value">The object to serialize.</param>
<param name="formatting">Indicates how the output is formatted.</param>
<returns>
A JSON string representation of the object.
</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])">
<summary>
Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter" />.
</summary>
<param name="value">The object to serialize.</param>
<param name="converters">A collection converters used while serializing.</param>
<returns>A JSON string representation of the object.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
<summary>
Serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter" />.
</summary>
<param name="value">The object to serialize.</param>
<param name="formatting">Indicates how the output is formatted.</param>
<param name="converters">A collection converters used while serializing.</param>
<returns>A JSON string representation of the object.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)">
<summary>
Serializes the specified object to a JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings" />.
</summary>
<param name="value">The object to serialize.</param>
<param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings" /> used to serialize the object.
If this is null, default serialization settings will be is used.</param>
<returns>
A JSON string representation of the object.
</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
<summary>
Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings" />.
</summary>
<param name="value">The object to serialize.</param>
<param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings" /> used to serialize the object.
If this is null, default serialization settings will be is used.</param>
<param name="type">
The type of the value being serialized.
This parameter is used when <see cref="T:Newtonsoft.Json.TypeNameHandling" /> is Auto to write out the type name if the type of the value does not match.
Specifing the type is optional.
</param>
<returns>
A JSON string representation of the object.
</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
<summary>
Serializes the specified object to a JSON string using formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings" />.
</summary>
<param name="value">The object to serialize.</param>
<param name="formatting">Indicates how the output is formatted.</param>
<param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings" /> used to serialize the object.
If this is null, default serialization settings will be is used.</param>
<returns>
A JSON string representation of the object.
</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
<summary>
Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings" />.
</summary>
<param name="value">The object to serialize.</param>
<param name="formatting">Indicates how the output is formatted.</param>
<param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings" /> used to serialize the object.
If this is null, default serialization settings will be is used.</param>
<param name="type">
The type of the value being serialized.
This parameter is used when <see cref="T:Newtonsoft.Json.TypeNameHandling" /> is Auto to write out the type name if the type of the value does not match.
Specifing the type is optional.
</param>
<returns>
A JSON string representation of the object.
</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)">
<summary>
Deserializes the JSON to a .NET object.
</summary>
<param name="value">The JSON to deserialize.</param>
<returns>The deserialized object from the Json string.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)">
<summary>
Deserializes the JSON to a .NET object using <see cref="T:Newtonsoft.Json.JsonSerializerSettings" />.
</summary>
<param name="value">The JSON to deserialize.</param>
<param name="settings">
The <see cref="T:Newtonsoft.Json.JsonSerializerSettings" /> used to deserialize the object.
If this is null, default serialization settings will be is used.
</param>
<returns>The deserialized object from the JSON string.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)">
<summary>
Deserializes the JSON to the specified .NET type.
</summary>
<param name="value">The JSON to deserialize.</param>
<param name="type">The <see cref="T:System.Type" /> of object being deserialized.</param>
<returns>The deserialized object from the Json string.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)">
<summary>
Deserializes the JSON to the specified .NET type.
</summary>
<typeparam name="T">The type of the object to deserialize to.</typeparam>
<param name="value">The JSON to deserialize.</param>
<returns>The deserialized object from the Json string.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)">
<summary>
Deserializes the JSON to the given anonymous type.
</summary>
<typeparam name="T">
The anonymous type to deserialize to. This can't be specified
traditionally and must be infered from the anonymous type passed
as a parameter.
</typeparam>
<param name="value">The JSON to deserialize.</param>
<param name="anonymousTypeObject">The anonymous type object.</param>
<returns>The deserialized anonymous type from the JSON string.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0,Newtonsoft.Json.JsonSerializerSettings)">
<summary>
Deserializes the JSON to the given anonymous type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings" />.
</summary>
<typeparam name="T">
The anonymous type to deserialize to. This can't be specified
traditionally and must be infered from the anonymous type passed
as a parameter.
</typeparam>
<param name="value">The JSON to deserialize.</param>
<param name="anonymousTypeObject">The anonymous type object.</param>
<param name="settings">
The <see cref="T:Newtonsoft.Json.JsonSerializerSettings" /> used to deserialize the object.
If this is null, default serialization settings will be is used.
</param>
<returns>The deserialized anonymous type from the JSON string.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])">
<summary>
Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter" />.
</summary>
<typeparam name="T">The type of the object to deserialize to.</typeparam>
<param name="value">The JSON to deserialize.</param>
<param name="converters">Converters to use while deserializing.</param>
<returns>The deserialized object from the JSON string.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
<summary>
Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings" />.
</summary>
<typeparam name="T">The type of the object to deserialize to.</typeparam>
<param name="value">The object to deserialize.</param>
<param name="settings">
The <see cref="T:Newtonsoft.Json.JsonSerializerSettings" /> used to deserialize the object.
If this is null, default serialization settings will be is used.
</param>
<returns>The deserialized object from the JSON string.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])">
<summary>
Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter" />.
</summary>
<param name="value">The JSON to deserialize.</param>
<param name="type">The type of the object to deserialize.</param>
<param name="converters">Converters to use while deserializing.</param>
<returns>The deserialized object from the JSON string.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
<summary>
Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings" />.
</summary>
<param name="value">The JSON to deserialize.</param>
<param name="type">The type of the object to deserialize to.</param>
<param name="settings">
The <see cref="T:Newtonsoft.Json.JsonSerializerSettings" /> used to deserialize the object.
If this is null, default serialization settings will be is used.
</param>
<returns>The deserialized object from the JSON string.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)">
<summary>
Populates the object with values from the JSON string.
</summary>
<param name="value">The JSON to populate values from.</param>
<param name="target">The target object to populate values onto.</param>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
<summary>
Populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings" />.
</summary>
<param name="value">The JSON to populate values from.</param>
<param name="target">The target object to populate values onto.</param>
<param name="settings">
The <see cref="T:Newtonsoft.Json.JsonSerializerSettings" /> used to deserialize the object.
If this is null, default serialization settings will be is used.
</param>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)">
<summary>
Serializes the XML node to a JSON string.
</summary>
<param name="node">The node to serialize.</param>
<returns>A JSON string of the XmlNode.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)">
<summary>
Serializes the XML node to a JSON string using formatting.
</summary>
<param name="node">The node to serialize.</param>
<param name="formatting">Indicates how the output is formatted.</param>
<returns>A JSON string of the XmlNode.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)">
<summary>
Serializes the XML node to a JSON string using formatting and omits the root object if <paramref name="omitRootObject" /> is <c>true</c>.
</summary>
<param name="node">The node to serialize.</param>
<param name="formatting">Indicates how the output is formatted.</param>
<param name="omitRootObject">Omits writing the root object.</param>
<returns>A JSON string of the XmlNode.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)">
<summary>
Deserializes the XmlNode from a JSON string.
</summary>
<param name="value">The JSON string.</param>
<returns>The deserialized XmlNode</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)">
<summary>
Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName" />.
</summary>
<param name="value">The JSON string.</param>
<param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
<returns>The deserialized XmlNode</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)">
<summary>
Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName" />
and writes a .NET array attribute for collections.
</summary>
<param name="value">The JSON string.</param>
<param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
<param name="writeArrayAttribute">
A flag to indicate whether to write the Json.NET array attribute.
This attribute helps preserve arrays when converting the written XML back to JSON.
</param>
<returns>The deserialized XmlNode</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)">
<summary>
Serializes the <see cref="T:System.Xml.Linq.XNode" /> to a JSON string.
</summary>
<param name="node">The node to convert to JSON.</param>
<returns>A JSON string of the XNode.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)">
<summary>
Serializes the <see cref="T:System.Xml.Linq.XNode" /> to a JSON string using formatting.
</summary>
<param name="node">The node to convert to JSON.</param>
<param name="formatting">Indicates how the output is formatted.</param>
<returns>A JSON string of the XNode.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)">
<summary>
Serializes the <see cref="T:System.Xml.Linq.XNode" /> to a JSON string using formatting and omits the root object if <paramref name="omitRootObject" /> is <c>true</c>.
</summary>
<param name="node">The node to serialize.</param>
<param name="formatting">Indicates how the output is formatted.</param>
<param name="omitRootObject">Omits writing the root object.</param>
<returns>A JSON string of the XNode.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)">
<summary>
Deserializes the <see cref="T:System.Xml.Linq.XNode" /> from a JSON string.
</summary>
<param name="value">The JSON string.</param>
<returns>The deserialized XNode</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)">
<summary>
Deserializes the <see cref="T:System.Xml.Linq.XNode" /> from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName" />.
</summary>
<param name="value">The JSON string.</param>
<param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
<returns>The deserialized XNode</returns>
</member>
<member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)">
<summary>
Deserializes the <see cref="T:System.Xml.Linq.XNode" /> from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName" />
and writes a .NET array attribute for collections.
</summary>
<param name="value">The JSON string.</param>
<param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
<param name="writeArrayAttribute">
A flag to indicate whether to write the Json.NET array attribute.
This attribute helps preserve arrays when converting the written XML back to JSON.
</param>
<returns>The deserialized XNode</returns>
</member>
<member name="P:Newtonsoft.Json.JsonConvert.DefaultSettings">
<summary>
Gets or sets a function that creates default <see cref="T:Newtonsoft.Json.JsonSerializerSettings" />.
Default settings are automatically used by serialization methods on <see cref="T:Newtonsoft.Json.JsonConvert" />,
and <see cref="M:Newtonsoft.Json.Linq.JToken.ToObject``1" /> and <see cref="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)" /> on <see cref="T:Newtonsoft.Json.Linq.JToken" />.
To serialize without using any default settings create a <see cref="T:Newtonsoft.Json.JsonSerializer" /> with
<see cref="M:Newtonsoft.Json.JsonSerializer.Create" />.
</summary>
</member>
<member name="T:Newtonsoft.Json.JsonSerializationException">
<summary>
The exception thrown when an error occurs during Json serialization or deserialization.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonSerializationException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException" /> class.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException" /> class
with a specified error message.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
</member>
<member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException" /> class
with a specified error message and a reference to the inner exception that is the cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
</member>
<member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException" /> class.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
<exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
</member>
<member name="T:Newtonsoft.Json.JsonSerializer">
<summary>
Serializes and deserializes objects into and from the JSON format.
The <see cref="T:Newtonsoft.Json.JsonSerializer" /> enables you to control how objects are encoded into JSON.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonSerializer.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer" /> class.
</summary>
</member>
<member name="M:Newtonsoft.Json.JsonSerializer.Create">
<summary>
Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer" /> instance.
The <see cref="T:Newtonsoft.Json.JsonSerializer" /> will not use default settings.
</summary>
<returns>
A new <see cref="T:Newtonsoft.Json.JsonSerializer" /> instance.
The <see cref="T:Newtonsoft.Json.JsonSerializer" /> will not use default settings.
</returns>
</member>
<member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)">
<summary>
Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer" /> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings" />.
The <see cref="T:Newtonsoft.Json.JsonSerializer" /> will not use default settings.
</summary>
<param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer" />.</param>
<returns>
A new <see cref="T:Newtonsoft.Json.JsonSerializer" /> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings" />.
The <see cref="T:Newtonsoft.Json.JsonSerializer" /> will not use default settings.
</returns>
</member>
<member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault">
<summary>
Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer" /> instance.
The <see cref="T:Newtonsoft.Json.JsonSerializer" /> will use default settings.
</summary>
<returns>
A new <see cref="T:Newtonsoft.Json.JsonSerializer" /> instance.
The <see cref="T:Newtonsoft.Json.JsonSerializer" /> will use default settings.
</returns>
</member>
<member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault(Newtonsoft.Json.JsonSerializerSettings)">
<summary>
Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer" /> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings" />.
The <see cref="T:Newtonsoft.Json.JsonSerializer" /> will use default settings.
</summary>
<param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer" />.</param>
<returns>
A new <see cref="T:Newtonsoft.Json.JsonSerializer" /> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings" />.
The <see cref="T:Newtonsoft.Json.JsonSerializer" /> will use default settings.
</returns>
</member>
<member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)">
<summary>
Populates the JSON values onto the target object.
</summary>
<param name="reader">The <see cref="T:System.IO.TextReader" /> that contains the JSON structure to reader values from.</param>
<param name="target">The target object to populate values onto.</param>
</member>
<member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)">
<summary>
Populates the JSON values onto the target object.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> that contains the JSON structure to reader values from.</param>
<param name="target">The target object to populate values onto.</param>
</member>
<member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)">
<summary>
Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader" />.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> that contains the JSON structure to deserialize.</param>
<returns>The <see cref="T:System.Object" /> being deserialized.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)">
<summary>
Deserializes the Json structure contained by the specified <see cref="T:System.IO.StringReader" />
into an instance of the specified type.
</summary>
<param name="reader">The <see cref="T:System.IO.TextReader" /> containing the object.</param>
<param name="objectType">The <see cref="T:System.Type" /> of object being deserialized.</param>
<returns>The instance of <paramref name="objectType" /> being deserialized.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)">
<summary>
Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader" />
into an instance of the specified type.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> containing the object.</param>
<typeparam name="T">The type of the object to deserialize.</typeparam>
<returns>The instance of <typeparamref name="T" /> being deserialized.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)">
<summary>
Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader" />
into an instance of the specified type.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> containing the object.</param>
<param name="objectType">The <see cref="T:System.Type" /> of object being deserialized.</param>
<returns>The instance of <paramref name="objectType" /> being deserialized.</returns>
</member>
<member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)">
<summary>
Serializes the specified <see cref="T:System.Object" /> and writes the Json structure
to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter" />.
</summary>
<param name="textWriter">The <see cref="T:System.IO.TextWriter" /> used to write the Json structure.</param>
<param name="value">The <see cref="T:System.Object" /> to serialize.</param>
</member>
<member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)">
<summary>
Serializes the specified <see cref="T:System.Object" /> and writes the Json structure
to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter" />.
</summary>
<param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter" /> used to write the Json structure.</param>
<param name="value">The <see cref="T:System.Object" /> to serialize.</param>
<param name="objectType">
The type of the value being serialized.
This parameter is used when <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling" /> is Auto to write out the type name if the type of the value does not match.
Specifing the type is optional.
</param>
</member>
<member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object,System.Type)">
<summary>
Serializes the specified <see cref="T:System.Object" /> and writes the Json structure
to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter" />.
</summary>
<param name="textWriter">The <see cref="T:System.IO.TextWriter" /> used to write the Json structure.</param>
<param name="value">The <see cref="T:System.Object" /> to serialize.</param>
<param name="objectType">
The type of the value being serialized.
This parameter is used when <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling" /> is Auto to write out the type name if the type of the value does not match.
Specifing the type is optional.
</param>
</member>
<member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)">
<summary>
Serializes the specified <see cref="T:System.Object" /> and writes the Json structure
to a <c>Stream</c> using the specified <see cref="T:Newtonsoft.Json.JsonWriter" />.
</summary>
<param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter" /> used to write the Json structure.</param>
<param name="value">The <see cref="T:System.Object" /> to serialize.</param>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver">
<summary>
Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver" /> used by the serializer when resolving references.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.Binder">
<summary>
Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder" /> used by the serializer when resolving type names.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.TraceWriter">
<summary>
Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter" /> used by the serializer when writing trace messages.
</summary>
<value>The trace writer.</value>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling">
<summary>
Gets or sets how type name writing and reading is handled by the serializer.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat">
<summary>
Gets or sets how a type name assembly is written and resolved by the serializer.
</summary>
<value>The type name assembly format.</value>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling">
<summary>
Gets or sets how object references are preserved by the serializer.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling">
<summary>
Get or set how reference loops (e.g. a class referencing itself) is handled.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling">
<summary>
Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling">
<summary>
Get or set how null values are handled during serialization and deserialization.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling">
<summary>
Get or set how null default are handled during serialization and deserialization.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling">
<summary>
Gets or sets how objects are created during deserialization.
</summary>
<value>The object creation handling.</value>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling">
<summary>
Gets or sets how constructors are used during deserialization.
</summary>
<value>The constructor handling.</value>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.Converters">
<summary>
Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter" /> that will be used during serialization.
</summary>
<value>Collection <see cref="T:Newtonsoft.Json.JsonConverter" /> that will be used during serialization.</value>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver">
<summary>
Gets or sets the contract resolver used by the serializer when
serializing .NET objects to JSON and vice versa.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.Context">
<summary>
Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext" /> used by the serializer when invoking serialization callback methods.
</summary>
<value>The context.</value>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.Formatting">
<summary>
Indicates how JSON text output is formatted.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.DateFormatHandling">
<summary>
Get or set how dates are written to JSON text.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling">
<summary>
Get or set how <see cref="T:System.DateTime" /> time zones are handling during serialization and deserialization.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.DateParseHandling">
<summary>
Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.FloatParseHandling">
<summary>
Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.FloatFormatHandling">
<summary>
Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN" />,
<see cref="F:System.Double.PositiveInfinity" /> and <see cref="F:System.Double.NegativeInfinity" />,
are written as JSON text.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.StringEscapeHandling">
<summary>
Get or set how strings are escaped when writing JSON text.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.DateFormatString">
<summary>
Get or set how <see cref="T:System.DateTime" /> and <see cref="T:System.DateTimeOffset" /> values are formatting when writing JSON text.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.Culture">
<summary>
Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture" />.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.MaxDepth">
<summary>
Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException" />.
</summary>
</member>
<member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent">
<summary>
Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.
</summary>
<value>
<c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.
</value>
</member>
<member name="E:Newtonsoft.Json.JsonSerializer.Error">
<summary>
Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer" /> errors during serialization and deserialization.
</summary>
</member>
<member name="T:Newtonsoft.Json.Linq.Extensions">
<summary>
Contains the LINQ to JSON extension methods.
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})">
<summary>
Returns a collection of tokens that contains the ancestors of every token in the source collection.
</summary>
<typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken" />.</typeparam>
<param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:Newtonsoft.Json.Linq.JToken" /> that contains the source collection.</param>
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:Newtonsoft.Json.Linq.JToken" /> that contains the ancestors of every node in the source collection.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">
<summary>
Returns a collection of tokens that contains the descendants of every token in the source collection.
</summary>
<typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer" />.</typeparam>
<param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:Newtonsoft.Json.Linq.JToken" /> that contains the source collection.</param>
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:Newtonsoft.Json.Linq.JToken" /> that contains the descendants of every node in the source collection.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})">
<summary>
Returns a collection of child properties of every object in the source collection.
</summary>
<param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:Newtonsoft.Json.Linq.JObject" /> that contains the source collection.</param>
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:Newtonsoft.Json.Linq.JProperty" /> that contains the properties of every object in the source collection.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
<summary>
Returns a collection of child values of every object in the source collection with the given key.
</summary>
<param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:Newtonsoft.Json.Linq.JToken" /> that contains the source collection.</param>
<param name="key">The token key.</param>
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:Newtonsoft.Json.Linq.JToken" /> that contains the values of every node in the source collection with the given key.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
<summary>
Returns a collection of child values of every object in the source collection.
</summary>
<param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:Newtonsoft.Json.Linq.JToken" /> that contains the source collection.</param>
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:Newtonsoft.Json.Linq.JToken" /> that contains the values of every node in the source collection.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
<summary>
Returns a collection of converted child values of every object in the source collection with the given key.
</summary>
<typeparam name="U">The type to convert the values to.</typeparam>
<param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:Newtonsoft.Json.Linq.JToken" /> that contains the source collection.</param>
<param name="key">The token key.</param>
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains the converted values of every node in the source collection with the given key.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
<summary>
Returns a collection of converted child values of every object in the source collection.
</summary>
<typeparam name="U">The type to convert the values to.</typeparam>
<param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:Newtonsoft.Json.Linq.JToken" /> that contains the source collection.</param>
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains the converted values of every node in the source collection.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
<summary>
Converts the value.
</summary>
<typeparam name="U">The type to convert the value to.</typeparam>
<param name="value">A <see cref="T:Newtonsoft.Json.Linq.JToken" /> cast as a <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:Newtonsoft.Json.Linq.JToken" />.</param>
<returns>A converted value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})">
<summary>
Converts the value.
</summary>
<typeparam name="T">The source collection type.</typeparam>
<typeparam name="U">The type to convert the value to.</typeparam>
<param name="value">A <see cref="T:Newtonsoft.Json.Linq.JToken" /> cast as a <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:Newtonsoft.Json.Linq.JToken" />.</param>
<returns>A converted value.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})">
<summary>
Returns a collection of child tokens of every array in the source collection.
</summary>
<typeparam name="T">The source collection type.</typeparam>
<param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:Newtonsoft.Json.Linq.JToken" /> that contains the source collection.</param>
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:Newtonsoft.Json.Linq.JToken" /> that contains the values of every node in the source collection.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})">
<summary>
Returns a collection of converted child tokens of every array in the source collection.
</summary>
<param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:Newtonsoft.Json.Linq.JToken" /> that contains the source collection.</param>
<typeparam name="U">The type to convert the values to.</typeparam>
<typeparam name="T">The source collection type.</typeparam>
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains the converted values of every node in the source collection.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
<summary>
Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1" />.
</summary>
<param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:Newtonsoft.Json.Linq.JToken" /> that contains the source collection.</param>
<returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1" />.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
<summary>
Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1" />.
</summary>
<typeparam name="T">The source collection type.</typeparam>
<param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:Newtonsoft.Json.Linq.JToken" /> that contains the source collection.</param>
<returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1" />.</returns>
</member>
<member name="T:Newtonsoft.Json.Linq.JContainer">
<summary>
Represents a token that can contain other tokens.
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)">
<summary>
Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew" /> event.
</summary>
<param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs" /> instance containing the event data.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
<summary>
Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged" /> event.
</summary>
<param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs" /> instance containing the event data.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JContainer.Children">
<summary>
Returns a collection of the child tokens of this token, in document order.
</summary>
<returns>
An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:Newtonsoft.Json.Linq.JToken" /> containing the child tokens of this <see cref="T:Newtonsoft.Json.Linq.JToken" />, in document order.
</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JContainer.Values``1">
<summary>
Returns a collection of the child values of this token, in document order.
</summary>
<typeparam name="T">The type to convert the values to.</typeparam>
<returns>
A <see cref="T:System.Collections.Generic.IEnumerable`1" /> containing the child values of this <see cref="T:Newtonsoft.Json.Linq.JToken" />, in document order.
</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JContainer.Descendants">
<summary>
Returns a collection of the descendant tokens for this token in document order.
</summary>
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> containing the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken" />.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)">
<summary>
Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="content">The content to be added.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)">
<summary>
Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="content">The content to be added.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter">
<summary>
Creates an <see cref="T:Newtonsoft.Json.JsonWriter" /> that can be used to add tokens to the <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<returns>An <see cref="T:Newtonsoft.Json.JsonWriter" /> that is ready to have content written to it.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)">
<summary>
Replaces the children nodes of this token with the specified content.
</summary>
<param name="content">The content.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll">
<summary>
Removes the child nodes from this token.
</summary>
</member>
<member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">
<summary>
Gets the container's children tokens.
</summary>
<value>The container's children tokens.</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JContainer.HasValues">
<summary>
Gets a value indicating whether this token has child tokens.
</summary>
<value>
<c>true</c> if this token has child values; otherwise, <c>false</c>.
</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JContainer.First">
<summary>
Get the first child token of this token.
</summary>
<value>
A <see cref="T:Newtonsoft.Json.Linq.JToken" /> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JContainer.Last">
<summary>
Get the last child token of this token.
</summary>
<value>
A <see cref="T:Newtonsoft.Json.Linq.JToken" /> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JContainer.Count">
<summary>
Gets the count of child JSON tokens.
</summary>
<value>The count of child JSON tokens</value>
</member>
<member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged">
<summary>
Occurs when the list changes or an item in the list changes.
</summary>
</member>
<member name="E:Newtonsoft.Json.Linq.JContainer.AddingNew">
<summary>
Occurs before an item is added to the collection.
</summary>
</member>
<member name="T:Newtonsoft.Json.Linq.JConstructor">
<summary>
Represents a JSON constructor.
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor" /> class.
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor" /> class from another <see cref="T:Newtonsoft.Json.Linq.JConstructor" /> object.
</summary>
<param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor" /> object to copy from.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor" /> class with the specified name and content.
</summary>
<param name="name">The constructor name.</param>
<param name="content">The contents of the constructor.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor" /> class with the specified name and content.
</summary>
<param name="name">The constructor name.</param>
<param name="content">The contents of the constructor.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor" /> class with the specified name.
</summary>
<param name="name">The constructor name.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
<summary>
Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter" />.
</summary>
<param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter" /> into which this method will write.</param>
<param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter" /> which will be used when writing the token.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)">
<summary>
Loads an <see cref="T:Newtonsoft.Json.Linq.JConstructor" /> from a <see cref="T:Newtonsoft.Json.JsonReader" />.
</summary>
<param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader" /> that will be read for the content of the <see cref="T:Newtonsoft.Json.Linq.JConstructor" />.</param>
<returns>A <see cref="T:Newtonsoft.Json.Linq.JConstructor" /> that contains the JSON that was read from the specified <see cref="T:Newtonsoft.Json.JsonReader" />.</returns>
</member>
<member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens">
<summary>
Gets the container's children tokens.
</summary>
<value>The container's children tokens.</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JConstructor.Name">
<summary>
Gets or sets the name of this constructor.
</summary>
<value>The constructor name.</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JConstructor.Type">
<summary>
Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<value>The type.</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)">
<summary>
Gets the <see cref="T:Newtonsoft.Json.Linq.JToken" /> with the specified key.
</summary>
<value>The <see cref="T:Newtonsoft.Json.Linq.JToken" /> with the specified key.</value>
</member>
<member name="T:Newtonsoft.Json.Linq.JEnumerable`1">
<summary>
Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken" /> objects.
</summary>
<typeparam name="T">The type of token</typeparam>
</member>
<member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty">
<summary>
An empty collection of <see cref="T:Newtonsoft.Json.Linq.JToken" /> objects.
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1" /> struct.
</summary>
<param name="enumerable">The enumerable.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator">
<summary>
Returns an enumerator that iterates through the collection.
</summary>
<returns>
A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.
</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object" /> is equal to this instance.
</summary>
<param name="obj">The <see cref="T:System.Object" /> to compare with this instance.</param>
<returns>
<c>true</c> if the specified <see cref="T:System.Object" /> is equal to this instance; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode">
<summary>
Returns a hash code for this instance.
</summary>
<returns>
A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
</returns>
</member>
<member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">
<summary>
Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1" /> with the specified key.
</summary>
<value>
</value>
</member>
<member name="T:Newtonsoft.Json.Linq.JObject">
<summary>
Represents a JSON object.
</summary>
<example>
<code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
</example>
</member>
<member name="M:Newtonsoft.Json.Linq.JObject.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject" /> class.
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject" /> class from another <see cref="T:Newtonsoft.Json.Linq.JObject" /> object.
</summary>
<param name="other">A <see cref="T:Newtonsoft.Json.Linq.JObject" /> object to copy from.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject" /> class with the specified content.
</summary>
<param name="content">The contents of the object.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject" /> class with the specified content.
</summary>
<param name="content">The contents of the object.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JObject.Properties">
<summary>
Gets an <see cref="T:System.Collections.Generic.IEnumerable`1" /> of this object's properties.
</summary>
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of this object's properties.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)">
<summary>
Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty" /> the specified name.
</summary>
<param name="name">The property name.</param>
<returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty" /> with the specified name or null.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues">
<summary>
Gets an <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1" /> of this object's property values.
</summary>
<returns>An <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1" /> of this object's property values.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)">
<summary>
Loads an <see cref="T:Newtonsoft.Json.Linq.JObject" /> from a <see cref="T:Newtonsoft.Json.JsonReader" />.
</summary>
<param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader" /> that will be read for the content of the <see cref="T:Newtonsoft.Json.Linq.JObject" />.</param>
<returns>A <see cref="T:Newtonsoft.Json.Linq.JObject" /> that contains the JSON that was read from the specified <see cref="T:Newtonsoft.Json.JsonReader" />.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)">
<summary>
Load a <see cref="T:Newtonsoft.Json.Linq.JObject" /> from a string that contains JSON.
</summary>
<param name="json">A <see cref="T:System.String" /> that contains JSON.</param>
<returns>A <see cref="T:Newtonsoft.Json.Linq.JObject" /> populated from the string that contains JSON.</returns>
<example>
<code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
</example>
</member>
<member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)">
<summary>
Creates a <see cref="T:Newtonsoft.Json.Linq.JObject" /> from an object.
</summary>
<param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject" />.</param>
<returns>A <see cref="T:Newtonsoft.Json.Linq.JObject" /> with the values of the specified object</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Creates a <see cref="T:Newtonsoft.Json.Linq.JArray" /> from an object.
</summary>
<param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray" />.</param>
<param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer" /> that will be used to read the object.</param>
<returns>A <see cref="T:Newtonsoft.Json.Linq.JArray" /> with the values of the specified object</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
<summary>
Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter" />.
</summary>
<param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter" /> into which this method will write.</param>
<param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter" /> which will be used when writing the token.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)">
<summary>
Gets the <see cref="T:Newtonsoft.Json.Linq.JToken" /> with the specified property name.
</summary>
<param name="propertyName">Name of the property.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JToken" /> with the specified property name.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)">
<summary>
Gets the <see cref="T:Newtonsoft.Json.Linq.JToken" /> with the specified property name.
The exact property name will be searched for first and if no matching property is found then
the <see cref="T:System.StringComparison" /> will be used to match a property.
</summary>
<param name="propertyName">Name of the property.</param>
<param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
<returns>The <see cref="T:Newtonsoft.Json.Linq.JToken" /> with the specified property name.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)">
<summary>
Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken" /> with the specified property name.
The exact property name will be searched for first and if no matching property is found then
the <see cref="T:System.StringComparison" /> will be used to match a property.
</summary>
<param name="propertyName">Name of the property.</param>
<param name="value">The value.</param>
<param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
<returns>true if a value was successfully retrieved; otherwise, false.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)">
<summary>
Adds the specified property name.
</summary>
<param name="propertyName">Name of the property.</param>
<param name="value">The value.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)">
<summary>
Removes the property with the specified name.
</summary>
<param name="propertyName">Name of the property.</param>
<returns>true if item was successfully removed; otherwise, false.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)">
<summary>
Tries the get value.
</summary>
<param name="propertyName">Name of the property.</param>
<param name="value">The value.</param>
<returns>true if a value was successfully retrieved; otherwise, false.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator">
<summary>
Returns an enumerator that iterates through the collection.
</summary>
<returns>
A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.
</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)">
<summary>
Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanged" /> event with the provided arguments.
</summary>
<param name="propertyName">Name of the property.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanging(System.String)">
<summary>
Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanging" /> event with the provided arguments.
</summary>
<param name="propertyName">Name of the property.</param>
</member>
<member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">
<summary>
Gets the container's children tokens.
</summary>
<value>The container's children tokens.</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JObject.Type">
<summary>
Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<value>The type.</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)">
<summary>
Gets the <see cref="T:Newtonsoft.Json.Linq.JToken" /> with the specified key.
</summary>
<value>The <see cref="T:Newtonsoft.Json.Linq.JToken" /> with the specified key.</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)">
<summary>
Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken" /> with the specified property name.
</summary>
<value>
</value>
</member>
<member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged">
<summary>
Occurs when a property value changes.
</summary>
</member>
<member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanging">
<summary>
Occurs when a property value is changing.
</summary>
</member>
<member name="T:Newtonsoft.Json.Linq.JArray">
<summary>
Represents a JSON array.
</summary>
<example>
<code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
</example>
</member>
<member name="M:Newtonsoft.Json.Linq.JArray.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray" /> class.
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray" /> class from another <see cref="T:Newtonsoft.Json.Linq.JArray" /> object.
</summary>
<param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray" /> object to copy from.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray" /> class with the specified content.
</summary>
<param name="content">The contents of the array.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray" /> class with the specified content.
</summary>
<param name="content">The contents of the array.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)">
<summary>
Loads an <see cref="T:Newtonsoft.Json.Linq.JArray" /> from a <see cref="T:Newtonsoft.Json.JsonReader" />.
</summary>
<param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader" /> that will be read for the content of the <see cref="T:Newtonsoft.Json.Linq.JArray" />.</param>
<returns>A <see cref="T:Newtonsoft.Json.Linq.JArray" /> that contains the JSON that was read from the specified <see cref="T:Newtonsoft.Json.JsonReader" />.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)">
<summary>
Load a <see cref="T:Newtonsoft.Json.Linq.JArray" /> from a string that contains JSON.
</summary>
<param name="json">A <see cref="T:System.String" /> that contains JSON.</param>
<returns>A <see cref="T:Newtonsoft.Json.Linq.JArray" /> populated from the string that contains JSON.</returns>
<example>
<code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
</example>
</member>
<member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)">
<summary>
Creates a <see cref="T:Newtonsoft.Json.Linq.JArray" /> from an object.
</summary>
<param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray" />.</param>
<returns>A <see cref="T:Newtonsoft.Json.Linq.JArray" /> with the values of the specified object</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Creates a <see cref="T:Newtonsoft.Json.Linq.JArray" /> from an object.
</summary>
<param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray" />.</param>
<param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer" /> that will be used to read the object.</param>
<returns>A <see cref="T:Newtonsoft.Json.Linq.JArray" /> with the values of the specified object</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
<summary>
Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter" />.
</summary>
<param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter" /> into which this method will write.</param>
<param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter" /> which will be used when writing the token.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)">
<summary>
Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1" />.
</summary>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1" />.</param>
<returns>
The index of <paramref name="item" /> if found in the list; otherwise, -1.
</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)">
<summary>
Inserts an item to the <see cref="T:System.Collections.Generic.IList`1" /> at the specified index.
</summary>
<param name="index">The zero-based index at which <paramref name="item" /> should be inserted.</param>
<param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1" />.</param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1" />.</exception>
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1" /> is read-only.</exception>
</member>
<member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)">
<summary>
Removes the <see cref="T:System.Collections.Generic.IList`1" /> item at the specified index.
</summary>
<param name="index">The zero-based index of the item to remove.</param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1" />.</exception>
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1" /> is read-only.</exception>
</member>
<member name="M:Newtonsoft.Json.Linq.JArray.GetEnumerator">
<summary>
Returns an enumerator that iterates through the collection.
</summary>
<returns>
A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.
</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)">
<summary>
Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1" />.
</summary>
<param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</exception>
</member>
<member name="M:Newtonsoft.Json.Linq.JArray.Clear">
<summary>
Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1" />.
</summary>
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only. </exception>
</member>
<member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)">
<summary>
Determines whether the <see cref="T:System.Collections.Generic.ICollection`1" /> contains a specific value.
</summary>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
<returns>
true if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, false.
</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JArray.CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)">
<summary>
Copies to.
</summary>
<param name="array">The array.</param>
<param name="arrayIndex">Index of the array.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)">
<summary>
Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1" />.
</summary>
<param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
<returns>
true if <paramref name="item" /> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, false. This method also returns false if <paramref name="item" /> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1" />.
</returns>
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</exception>
</member>
<member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens">
<summary>
Gets the container's children tokens.
</summary>
<value>The container's children tokens.</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JArray.Type">
<summary>
Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<value>The type.</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)">
<summary>
Gets the <see cref="T:Newtonsoft.Json.Linq.JToken" /> with the specified key.
</summary>
<value>The <see cref="T:Newtonsoft.Json.Linq.JToken" /> with the specified key.</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)">
<summary>
Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken" /> at the specified index.
</summary>
<value>
</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JArray.IsReadOnly">
<summary>
Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.
</summary>
<returns>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.</returns>
</member>
<member name="T:Newtonsoft.Json.Linq.JTokenReader">
<summary>
Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader" /> class.
</summary>
<param name="token">The token to read from.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes">
<summary>
Reads the next JSON token from the stream as a <see cref="T:Byte[]" />.
</summary>
<returns>
A <see cref="T:Byte[]" /> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.
</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1" />.
</summary>
<returns>A <see cref="T:System.Nullable`1" />. This method will return <c>null</c> at the end of an array.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1" />.
</summary>
<returns>A <see cref="T:System.Nullable`1" />. This method will return <c>null</c> at the end of an array.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.String" />.
</summary>
<returns>A <see cref="T:System.String" />. This method will return <c>null</c> at the end of an array.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1" />.
</summary>
<returns>A <see cref="T:System.String" />. This method will return <c>null</c> at the end of an array.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset">
<summary>
Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1" />.
</summary>
<returns>A <see cref="T:System.Nullable`1" />. This method will return <c>null</c> at the end of an array.</returns>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">
<summary>
Reads the next JSON token from the stream.
</summary>
<returns>
true if the next token was read successfully; false if there are no more tokens to read.
</returns>
</member>
<member name="T:Newtonsoft.Json.Linq.JTokenWriter">
<summary>
Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter" /> class writing to the given <see cref="T:Newtonsoft.Json.Linq.JContainer" />.
</summary>
<param name="container">The container being written to.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter" /> class.
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush">
<summary>
Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close">
<summary>
Closes this stream and the underlying stream.
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject">
<summary>
Writes the beginning of a Json object.
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray">
<summary>
Writes the beginning of a Json array.
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)">
<summary>
Writes the start of a constructor with the given name.
</summary>
<param name="name">The name of the constructor.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
<summary>
Writes the end.
</summary>
<param name="token">The token.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)">
<summary>
Writes the property name of a name/value pair on a Json object.
</summary>
<param name="name">The name of the property.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Object)">
<summary>
Writes a <see cref="T:System.Object" /> value.
An error will raised if the value cannot be written as a single JSON token.
</summary>
<param name="value">The <see cref="T:System.Object" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull">
<summary>
Writes a null value.
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined">
<summary>
Writes an undefined value.
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)">
<summary>
Writes raw JSON.
</summary>
<param name="json">The raw JSON to write.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)">
<summary>
Writes out a comment <code>/*...*/</code> containing the specified text.
</summary>
<param name="text">Text to place inside the comment.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)">
<summary>
Writes a <see cref="T:System.String" /> value.
</summary>
<param name="value">The <see cref="T:System.String" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)">
<summary>
Writes a <see cref="T:System.Int32" /> value.
</summary>
<param name="value">The <see cref="T:System.Int32" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)">
<summary>
Writes a <see cref="T:System.UInt32" /> value.
</summary>
<param name="value">The <see cref="T:System.UInt32" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)">
<summary>
Writes a <see cref="T:System.Int64" /> value.
</summary>
<param name="value">The <see cref="T:System.Int64" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)">
<summary>
Writes a <see cref="T:System.UInt64" /> value.
</summary>
<param name="value">The <see cref="T:System.UInt64" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)">
<summary>
Writes a <see cref="T:System.Single" /> value.
</summary>
<param name="value">The <see cref="T:System.Single" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)">
<summary>
Writes a <see cref="T:System.Double" /> value.
</summary>
<param name="value">The <see cref="T:System.Double" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)">
<summary>
Writes a <see cref="T:System.Boolean" /> value.
</summary>
<param name="value">The <see cref="T:System.Boolean" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)">
<summary>
Writes a <see cref="T:System.Int16" /> value.
</summary>
<param name="value">The <see cref="T:System.Int16" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)">
<summary>
Writes a <see cref="T:System.UInt16" /> value.
</summary>
<param name="value">The <see cref="T:System.UInt16" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)">
<summary>
Writes a <see cref="T:System.Char" /> value.
</summary>
<param name="value">The <see cref="T:System.Char" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)">
<summary>
Writes a <see cref="T:System.Byte" /> value.
</summary>
<param name="value">The <see cref="T:System.Byte" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)">
<summary>
Writes a <see cref="T:System.SByte" /> value.
</summary>
<param name="value">The <see cref="T:System.SByte" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)">
<summary>
Writes a <see cref="T:System.Decimal" /> value.
</summary>
<param name="value">The <see cref="T:System.Decimal" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)">
<summary>
Writes a <see cref="T:System.DateTime" /> value.
</summary>
<param name="value">The <see cref="T:System.DateTime" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)">
<summary>
Writes a <see cref="T:System.DateTimeOffset" /> value.
</summary>
<param name="value">The <see cref="T:System.DateTimeOffset" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])">
<summary>
Writes a <see cref="T:Byte[]" /> value.
</summary>
<param name="value">The <see cref="T:Byte[]" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)">
<summary>
Writes a <see cref="T:System.TimeSpan" /> value.
</summary>
<param name="value">The <see cref="T:System.TimeSpan" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)">
<summary>
Writes a <see cref="T:System.Guid" /> value.
</summary>
<param name="value">The <see cref="T:System.Guid" /> value to write.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)">
<summary>
Writes a <see cref="T:System.Uri" /> value.
</summary>
<param name="value">The <see cref="T:System.Uri" /> value to write.</param>
</member>
<member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token">
<summary>
Gets the token being writen.
</summary>
<value>The token being writen.</value>
</member>
<member name="T:Newtonsoft.Json.Linq.JProperty">
<summary>
Represents a JSON property.
</summary>
</member>
<member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty" /> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty" /> object.
</summary>
<param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty" /> object to copy from.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty" /> class.
</summary>
<param name="name">The property name.</param>
<param name="content">The property content.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty" /> class.
</summary>
<param name="name">The property name.</param>
<param name="content">The property content.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
<summary>
Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter" />.
</summary>
<param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter" /> into which this method will write.</param>
<param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter" /> which will be used when writing the token.</param>
</member>
<member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)">
<summary>
Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty" /> from a <see cref="T:Newtonsoft.Json.JsonReader" />.
</summary>
<param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader" /> that will be read for the content of the <see cref="T:Newtonsoft.Json.Linq.JProperty" />.</param>
<returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty" /> that contains the JSON that was read from the specified <see cref="T:Newtonsoft.Json.JsonReader" />.</returns>
</member>
<member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens">
<summary>
Gets the container's children tokens.
</summary>
<value>The container's children tokens.</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JProperty.Name">
<summary>
Gets the property name.
</summary>
<value>The property name.</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JProperty.Value">
<summary>
Gets or sets the property value.
</summary>
<value>The property value.</value>
</member>
<member name="P:Newtonsoft.Json.Linq.JProperty.Type">
<summary>
Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<value>The type.</value>
</member>
<member name="T:Newtonsoft.Json.Linq.JTokenType">
<summary>
Specifies the type of token.
</summary>
</member>
<member name="F:Newtonsoft.Json.Linq.JTokenType.None">
<summary>
No token type has been set.
</summary>
</member>
<member name="F:Newtonsoft.Json.Linq.JTokenType.Object">
<summary>
A JSON object.
</summary>
</member>
<member name="F:Newtonsoft.Json.Linq.JTokenType.Array">
<summary>
A JSON array.
</summary>
</member>
<member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor">
<summary>
A JSON constructor.
</summary>
</member>
<member name="F:Newtonsoft.Json.Linq.JTokenType.Property">
<summary>
A JSON object property.
</summary>
</member>
<member name="F:Newtonsoft.Json.Linq.JTokenType.Comment">
<summary>
A comment.
</summary>
</member>
<member name="F:Newtonsoft.Json.Linq.JTokenType.Integer">
<summary>
An integer value.
</summary>
</member>
<member name="F:Newtonsoft.Json.Linq.JTokenType.Float">
<summary>
A float value.
</summary>
</member>
<member name="F:Newtonsoft.Json.Linq.JTokenType.String">
<summary>
A string value.
</summary>
</member>
<member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean">
<summary>
A boolean value.
</summary>
</member>
<member name="F:Newtonsoft.Json.Linq.JTokenType.Null">
<summary>
A null value.
</summary>
</member>
<member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined">
<summary>
An undefined value.
</summary>
</member>
<member name="F:Newtonsoft.Json.Linq.JTokenType.Date">
<summary>
A date value.
</summary>
</member>
<member name="F:Newtonsoft.Json.Linq.JTokenType.Raw">
<summary>
A raw JSON value.
</summary>
</member>
<member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes">
<summary>
A collection of bytes value.
</summary>
</member>
<member name="F:Newtonsoft.Json.Linq.JTokenType.Guid">
<summary>
A Guid value.
</summary>
</member>
<member name="F:Newtonsoft.Json.Linq.JTokenType.Uri">
<summary>
A Uri value.
</summary>
</member>
<member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan">
<summary>
A TimeSpan value.
</summary>
</member>
<member name="T:Newtonsoft.Json.Schema.Extensions">
<summary>
Contains the JSON schema extension methods.
</summary>
</member>
<member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
<summary>
Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken" /> is valid.
</summary>
<param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken" /> to test.</param>
<param name="schema">The schema to test with.</param>
<returns>
<c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken" /> is valid; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)">
<summary>
Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken" /> is valid.
</summary>
<param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken" /> to test.</param>
<param name="schema">The schema to test with.</param>
<param name="errorMessages">When this method returns, contains any error messages generated while validating. </param>
<returns>
<c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken" /> is valid; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
<summary>
Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken" /> to test.</param>
<param name="schema">The schema to test with.</param>
</member>
<member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)">
<summary>
Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken" />.
</summary>
<param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken" /> to test.</param>
<param name="schema">The schema to test with.</param>
<param name="validationEventHandler">The validation event handler.</param>
</member>
<member name="T:Newtonsoft.Json.Schema.JsonSchemaException">
<summary>
Returns detailed information about the schema exception.
</summary>
</member>
<member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException" /> class.
</summary>
</member>
<member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException" /> class
with a specified error message.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
</member>
<member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException" /> class
with a specified error message and a reference to the inner exception that is the cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
</member>
<member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException" /> class.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
<exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber">
<summary>
Gets the line number indicating where the error occurred.
</summary>
<value>The line number indicating where the error occurred.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition">
<summary>
Gets the line position indicating where the error occurred.
</summary>
<value>The line position indicating where the error occurred.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchemaException.Path">
<summary>
Gets the path to the JSON where the error occurred.
</summary>
<value>The path to the JSON where the error occurred.</value>
</member>
<member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver">
<summary>
Resolves <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> from an id.
</summary>
</member>
<member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver" /> class.
</summary>
</member>
<member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)">
<summary>
Gets a <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> for the specified reference.
</summary>
<param name="reference">The id.</param>
<returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> for the specified reference.</returns>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas">
<summary>
Gets or sets the loaded schemas.
</summary>
<value>The loaded schemas.</value>
</member>
<member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling">
<summary>
Specifies undefined schema Id handling options for the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaGenerator" />.
</summary>
</member>
<member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None">
<summary>
Do not infer a schema Id.
</summary>
</member>
<member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName">
<summary>
Use the .NET type name as the schema Id.
</summary>
</member>
<member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName">
<summary>
Use the assembly qualified .NET type name as the schema Id.
</summary>
</member>
<member name="T:Newtonsoft.Json.Schema.ValidationEventArgs">
<summary>
Returns detailed information related to the <see cref="T:Newtonsoft.Json.Schema.ValidationEventHandler" />.
</summary>
</member>
<member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception">
<summary>
Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException" /> associated with the validation error.
</summary>
<value>The JsonSchemaException associated with the validation error.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Path">
<summary>
Gets the path of the JSON location where the validation error occurred.
</summary>
<value>The path of the JSON location where the validation error occurred.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Message">
<summary>
Gets the text description corresponding to the validation error.
</summary>
<value>The text description.</value>
</member>
<member name="T:Newtonsoft.Json.Schema.ValidationEventHandler">
<summary>
Represents the callback method that will handle JSON schema validation events and the <see cref="T:Newtonsoft.Json.Schema.ValidationEventArgs" />.
</summary>
</member>
<member name="T:Newtonsoft.Json.Serialization.IContractResolver">
<summary>
Used by <see cref="T:Newtonsoft.Json.JsonSerializer" /> to resolves a <see cref="T:Newtonsoft.Json.Serialization.JsonContract" /> for a given <see cref="T:System.Type" />.
</summary>
<example>
<code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverObject" title="IContractResolver Class" />
<code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverExample" title="IContractResolver Example" />
</example>
</member>
<member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)">
<summary>
Resolves the contract for a given type.
</summary>
<param name="type">The type to resolve a contract for.</param>
<returns>The contract for a given type.</returns>
</member>
<member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver">
<summary>
Used by <see cref="T:Newtonsoft.Json.JsonSerializer" /> to resolves a <see cref="T:Newtonsoft.Json.Serialization.JsonContract" /> for a given <see cref="T:System.Type" />.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver" /> class.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver" /> class.
</summary>
<param name="shareCache">
If set to <c>true</c> the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver" /> will use a cached shared with other resolvers of the same type.
Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected
behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly
recommended to reuse <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver" /> instances with the <see cref="T:Newtonsoft.Json.JsonSerializer" />.
</param>
</member>
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)">
<summary>
Resolves the contract for a given type.
</summary>
<param name="type">The type to resolve a contract for.</param>
<returns>The contract for a given type.</returns>
</member>
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)">
<summary>
Gets the serializable members for the type.
</summary>
<param name="objectType">The type to get serializable members for.</param>
<returns>The serializable members for the type.</returns>
</member>
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)">
<summary>
Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract" /> for the given type.
</summary>
<param name="objectType">Type of the object.</param>
<returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract" /> for the given type.</returns>
</member>
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)">
<summary>
Creates the constructor parameters.
</summary>
<param name="constructor">The constructor to create properties for.</param>
<param name="memberProperties">The type's member properties.</param>
<returns>Properties for the given <see cref="T:System.Reflection.ConstructorInfo" />.</returns>
</member>
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)">
<summary>
Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty" /> for the given <see cref="T:System.Reflection.ParameterInfo" />.
</summary>
<param name="matchingMemberProperty">The matching member property.</param>
<param name="parameterInfo">The constructor parameter.</param>
<returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty" /> for the given <see cref="T:System.Reflection.ParameterInfo" />.</returns>
</member>
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)">
<summary>
Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter" /> for the contract.
</summary>
<param name="objectType">Type of the object.</param>
<returns>The contract's default <see cref="T:Newtonsoft.Json.JsonConverter" />.</returns>
</member>
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)">
<summary>
Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract" /> for the given type.
</summary>
<param name="objectType">Type of the object.</param>
<returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract" /> for the given type.</returns>
</member>
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)">
<summary>
Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract" /> for the given type.
</summary>
<param name="objectType">Type of the object.</param>
<returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract" /> for the given type.</returns>
</member>
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)">
<summary>
Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract" /> for the given type.
</summary>
<param name="objectType">Type of the object.</param>
<returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract" /> for the given type.</returns>
</member>
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)">
<summary>
Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract" /> for the given type.
</summary>
<param name="objectType">Type of the object.</param>
<returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract" /> for the given type.</returns>
</member>
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)">
<summary>
Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract" /> for the given type.
</summary>
<param name="objectType">Type of the object.</param>
<returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract" /> for the given type.</returns>
</member>
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)">
<summary>
Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract" /> for the given type.
</summary>
<param name="objectType">Type of the object.</param>
<returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract" /> for the given type.</returns>
</member>
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)">
<summary>
Determines which contract type is created for the given type.
</summary>
<param name="objectType">Type of the object.</param>
<returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonContract" /> for the given type.</returns>
</member>
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)">
<summary>
Creates properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract" />.
</summary>
<param name="type">The type to create properties for.</param>
/// <param name="memberSerialization">The member serialization mode for the type.</param><returns>Properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract" />.</returns></member>
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)">
<summary>
Creates the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider" /> used by the serializer to get and set values from a member.
</summary>
<param name="member">The member.</param>
<returns>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider" /> used by the serializer to get and set values from a member.</returns>
</member>
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)">
<summary>
Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty" /> for the given <see cref="T:System.Reflection.MemberInfo" />.
</summary>
<param name="memberSerialization">The member's parent <see cref="T:Newtonsoft.Json.MemberSerialization" />.</param>
<param name="member">The member to create a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty" /> for.</param>
<returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty" /> for the given <see cref="T:System.Reflection.MemberInfo" />.</returns>
</member>
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)">
<summary>
Resolves the name of the property.
</summary>
<param name="propertyName">Name of the property.</param>
<returns>Name of the property.</returns>
</member>
<member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)">
<summary>
Gets the resolved name of the property.
</summary>
<param name="propertyName">Name of the property.</param>
<returns>Name of the property.</returns>
</member>
<member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration">
<summary>
Gets a value indicating whether members are being get and set using dynamic code generation.
This value is determined by the runtime permissions available.
</summary>
<value>
<c>true</c> if using dynamic code generation; otherwise, <c>false</c>.
</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags">
<summary>
Gets or sets the default members search flags.
</summary>
<value>The default members search flags.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers">
<summary>
Gets or sets a value indicating whether compiler generated members should be serialized.
</summary>
<value>
<c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.
</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface">
<summary>
Gets or sets a value indicating whether to ignore the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface when serializing and deserializing types.
</summary>
<value>
<c>true</c> if the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute">
<summary>
Gets or sets a value indicating whether to ignore the <see cref="T:System.SerializableAttribute" /> attribute when serializing and deserializing types.
</summary>
<value>
<c>true</c> if the <see cref="T:System.SerializableAttribute" /> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
</value>
</member>
<member name="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver">
<summary>
Resolves member mappings for a type, camel casing property names.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver" /> class.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)">
<summary>
Resolves the name of the property.
</summary>
<param name="propertyName">Name of the property.</param>
<returns>The property name camel cased.</returns>
</member>
<member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder">
<summary>
The default serialization binder used when resolving and loading classes from type names.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)">
<summary>
When overridden in a derived class, controls the binding of a serialized object to a type.
</summary>
<param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly" /> name of the serialized object.</param>
<param name="typeName">Specifies the <see cref="T:System.Type" /> name of the serialized object.</param>
<returns>
The type of the object the formatter creates a new instance of.
</returns>
</member>
<member name="T:Newtonsoft.Json.Serialization.ErrorContext">
<summary>
Provides information surrounding an error.
</summary>
</member>
<member name="P:Newtonsoft.Json.Serialization.ErrorContext.Error">
<summary>
Gets the error.
</summary>
<value>The error.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject">
<summary>
Gets the original object that caused the error.
</summary>
<value>The original object that caused the error.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.ErrorContext.Member">
<summary>
Gets the member that caused the error.
</summary>
<value>The member that caused the error.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.ErrorContext.Path">
<summary>
Gets the path of the JSON location where the error occurred.
</summary>
<value>The path of the JSON location where the error occurred.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.ErrorContext.Handled">
<summary>
Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.ErrorContext" /> is handled.
</summary>
<value>
<c>true</c> if handled; otherwise, <c>false</c>.</value>
</member>
<member name="T:Newtonsoft.Json.Serialization.JsonArrayContract">
<summary>
Contract details for a <see cref="T:System.Type" /> used by the <see cref="T:Newtonsoft.Json.JsonSerializer" />.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract" /> class.
</summary>
<param name="underlyingType">The underlying type for the contract.</param>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType">
<summary>
Gets the <see cref="T:System.Type" /> of the collection items.
</summary>
<value>The <see cref="T:System.Type" /> of the collection items.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray">
<summary>
Gets a value indicating whether the collection type is a multidimensional array.
</summary>
<value>
<c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>
</member>
<member name="T:Newtonsoft.Json.Serialization.SerializationCallback">
<summary>
Handles <see cref="T:Newtonsoft.Json.JsonSerializer" /> serialization callback events.
</summary>
<param name="o">The object that raised the callback event.</param>
<param name="context">The streaming context.</param>
</member>
<member name="T:Newtonsoft.Json.Serialization.SerializationErrorCallback">
<summary>
Handles <see cref="T:Newtonsoft.Json.JsonSerializer" /> serialization error callback events.
</summary>
<param name="o">The object that raised the callback event.</param>
<param name="context">The streaming context.</param>
<param name="errorContext">The error context.</param>
</member>
<member name="T:Newtonsoft.Json.Serialization.ExtensionDataSetter">
<summary>
Sets extension data for an object during deserialization.
</summary>
<param name="o">The object to set extension data on.</param>
<param name="key">The extension data key.</param>
<param name="value">The extension data value.</param>
</member>
<member name="T:Newtonsoft.Json.Serialization.ExtensionDataGetter">
<summary>
Gets extension data for an object during serialization.
</summary>
<param name="o">The object to set extension data on.</param>
</member>
<member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract">
<summary>
Contract details for a <see cref="T:System.Type" /> used by the <see cref="T:Newtonsoft.Json.JsonSerializer" />.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract" /> class.
</summary>
<param name="underlyingType">The underlying type for the contract.</param>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver">
<summary>
Gets or sets the property name resolver.
</summary>
<value>The property name resolver.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType">
<summary>
Gets the <see cref="T:System.Type" /> of the dictionary keys.
</summary>
<value>The <see cref="T:System.Type" /> of the dictionary keys.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType">
<summary>
Gets the <see cref="T:System.Type" /> of the dictionary values.
</summary>
<value>The <see cref="T:System.Type" /> of the dictionary values.</value>
</member>
<member name="T:Newtonsoft.Json.Serialization.JsonProperty">
<summary>
Maps a JSON property to a .NET member or constructor parameter.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString">
<summary>
Returns a <see cref="T:System.String" /> that represents this instance.
</summary>
<returns>
A <see cref="T:System.String" /> that represents this instance.
</returns>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName">
<summary>
Gets or sets the name of the property.
</summary>
<value>The name of the property.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
<summary>
Gets or sets the type that declared this property.
</summary>
<value>The type that declared this property.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
<summary>
Gets or sets the order of serialization and deserialization of a member.
</summary>
<value>The numeric order of serialization or deserialization.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName">
<summary>
Gets or sets the name of the underlying member or parameter.
</summary>
<value>The name of the underlying member or parameter.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider">
<summary>
Gets the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider" /> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty" /> during serialization.
</summary>
<value>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider" /> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty" /> during serialization.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType">
<summary>
Gets or sets the type of the property.
</summary>
<value>The type of the property.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter">
<summary>
Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter" /> for the property.
If set this converter takes presidence over the contract converter for the property type.
</summary>
<value>The converter.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter">
<summary>
Gets or sets the member converter.
</summary>
<value>The member converter.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored">
<summary>
Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty" /> is ignored.
</summary>
<value>
<c>true</c> if ignored; otherwise, <c>false</c>.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable">
<summary>
Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty" /> is readable.
</summary>
<value>
<c>true</c> if readable; otherwise, <c>false</c>.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable">
<summary>
Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty" /> is writable.
</summary>
<value>
<c>true</c> if writable; otherwise, <c>false</c>.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute">
<summary>
Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty" /> has a member attribute.
</summary>
<value>
<c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue">
<summary>
Gets the default value.
</summary>
<value>The default value.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required">
<summary>
Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty" /> is required.
</summary>
<value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty" /> is required.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference">
<summary>
Gets or sets a value indicating whether this property preserves object references.
</summary>
<value>
<c>true</c> if this instance is reference; otherwise, <c>false</c>.
</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling">
<summary>
Gets or sets the property null value handling.
</summary>
<value>The null value handling.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling">
<summary>
Gets or sets the property default value handling.
</summary>
<value>The default value handling.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling">
<summary>
Gets or sets the property reference loop handling.
</summary>
<value>The reference loop handling.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling">
<summary>
Gets or sets the property object creation handling.
</summary>
<value>The object creation handling.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling">
<summary>
Gets or sets or sets the type name handling.
</summary>
<value>The type name handling.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize">
<summary>
Gets or sets a predicate used to determine whether the property should be serialize.
</summary>
<value>A predicate used to determine whether the property should be serialize.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified">
<summary>
Gets or sets a predicate used to determine whether the property should be serialized.
</summary>
<value>A predicate used to determine whether the property should be serialized.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified">
<summary>
Gets or sets an action used to set whether the property has been deserialized.
</summary>
<value>An action used to set whether the property has been deserialized.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter">
<summary>
Gets or sets the converter used when serializing the property's collection items.
</summary>
<value>The collection's items converter.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference">
<summary>
Gets or sets whether this property's collection items are serialized as a reference.
</summary>
<value>Whether this property's collection items are serialized as a reference.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling">
<summary>
Gets or sets the the type name handling used when serializing the property's collection items.
</summary>
<value>The collection's items type name handling.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling">
<summary>
Gets or sets the the reference loop handling used when serializing the property's collection items.
</summary>
<value>The collection's items reference loop handling.</value>
</member>
<member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection">
<summary>
A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty" /> objects.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection" /> class.
</summary>
<param name="type">The type.</param>
</member>
<member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)">
<summary>
When implemented in a derived class, extracts the key from the specified element.
</summary>
<param name="item">The element from which to extract the key.</param>
<returns>The key for the specified element.</returns>
</member>
<member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)">
<summary>
Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty" /> object.
</summary>
<param name="property">The property to add to the collection.</param>
</member>
<member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)">
<summary>
Gets the closest matching <see cref="T:Newtonsoft.Json.Serialization.JsonProperty" /> object.
First attempts to get an exact case match of propertyName and then
a case insensitive match.
</summary>
<param name="propertyName">Name of the property.</param>
<returns>A matching property if found.</returns>
</member>
<member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)">
<summary>
Gets a property by property name.
</summary>
<param name="propertyName">The name of the property to get.</param>
<param name="comparisonType">Type property name string comparison.</param>
<returns>A matching property if found.</returns>
</member>
<member name="T:Newtonsoft.Json.MissingMemberHandling">
<summary>
Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer" />.
</summary>
</member>
<member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore">
<summary>
Ignore a missing member and do not attempt to deserialize it.
</summary>
</member>
<member name="F:Newtonsoft.Json.MissingMemberHandling.Error">
<summary>
Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException" /> when a missing member is encountered during deserialization.
</summary>
</member>
<member name="T:Newtonsoft.Json.NullValueHandling">
<summary>
Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer" />.
</summary>
<example>
<code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingObject" title="NullValueHandling Class" />
<code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingExample" title="NullValueHandling Ignore Example" />
</example>
</member>
<member name="F:Newtonsoft.Json.NullValueHandling.Include">
<summary>
Include null values when serializing and deserializing objects.
</summary>
</member>
<member name="F:Newtonsoft.Json.NullValueHandling.Ignore">
<summary>
Ignore null values when serializing and deserializing objects.
</summary>
</member>
<member name="T:Newtonsoft.Json.ReferenceLoopHandling">
<summary>
Specifies reference loop handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer" />.
</summary>
</member>
<member name="F:Newtonsoft.Json.ReferenceLoopHandling.Error">
<summary>
Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException" /> when a loop is encountered.
</summary>
</member>
<member name="F:Newtonsoft.Json.ReferenceLoopHandling.Ignore">
<summary>
Ignore loop references and do not serialize.
</summary>
</member>
<member name="F:Newtonsoft.Json.ReferenceLoopHandling.Serialize">
<summary>
Serialize loop references.
</summary>
</member>
<member name="T:Newtonsoft.Json.Schema.JsonSchema">
<summary>
An in-memory representation of a JSON Schema.
</summary>
</member>
<member name="M:Newtonsoft.Json.Schema.JsonSchema.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> class.
</summary>
</member>
<member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)">
<summary>
Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> from the specified <see cref="T:Newtonsoft.Json.JsonReader" />.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> containing the JSON Schema to read.</param>
<returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> object representing the JSON Schema.</returns>
</member>
<member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)">
<summary>
Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> from the specified <see cref="T:Newtonsoft.Json.JsonReader" />.
</summary>
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> containing the JSON Schema to read.</param>
<param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver" /> to use when resolving schema references.</param>
<returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> object representing the JSON Schema.</returns>
</member>
<member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)">
<summary>
Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> from a string that contains schema JSON.
</summary>
<param name="json">A <see cref="T:System.String" /> that contains JSON.</param>
<returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> populated from the string that contains JSON.</returns>
</member>
<member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)">
<summary>
Parses the specified json.
</summary>
<param name="json">The json.</param>
<param name="resolver">The resolver.</param>
<returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> populated from the string that contains JSON.</returns>
</member>
<member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)">
<summary>
Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter" />.
</summary>
<param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter" /> into which this method will write.</param>
</member>
<member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)">
<summary>
Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter" /> using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver" />.
</summary>
<param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter" /> into which this method will write.</param>
<param name="resolver">The resolver used.</param>
</member>
<member name="M:Newtonsoft.Json.Schema.JsonSchema.ToString">
<summary>
Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.
</summary>
<returns>
A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.
</returns>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.Id">
<summary>
Gets or sets the id.
</summary>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.Title">
<summary>
Gets or sets the title.
</summary>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.Required">
<summary>
Gets or sets whether the object is required.
</summary>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly">
<summary>
Gets or sets whether the object is read only.
</summary>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.Hidden">
<summary>
Gets or sets whether the object is visible to users.
</summary>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.Transient">
<summary>
Gets or sets whether the object is transient.
</summary>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.Description">
<summary>
Gets or sets the description of the object.
</summary>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.Type">
<summary>
Gets or sets the types of values allowed by the object.
</summary>
<value>The type.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.Pattern">
<summary>
Gets or sets the pattern.
</summary>
<value>The pattern.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength">
<summary>
Gets or sets the minimum length.
</summary>
<value>The minimum length.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength">
<summary>
Gets or sets the maximum length.
</summary>
<value>The maximum length.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy">
<summary>
Gets or sets a number that the value should be divisble by.
</summary>
<value>A number that the value should be divisble by.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.Minimum">
<summary>
Gets or sets the minimum.
</summary>
<value>The minimum.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.Maximum">
<summary>
Gets or sets the maximum.
</summary>
<value>The maximum.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum">
<summary>
Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute.
</summary>
<value>A flag indicating whether the value can not equal the number defined by the "minimum" attribute.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum">
<summary>
Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute.
</summary>
<value>A flag indicating whether the value can not equal the number defined by the "maximum" attribute.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems">
<summary>
Gets or sets the minimum number of items.
</summary>
<value>The minimum number of items.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems">
<summary>
Gets or sets the maximum number of items.
</summary>
<value>The maximum number of items.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.Items">
<summary>
Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> of items.
</summary>
<value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> of items.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.PositionalItemsValidation">
<summary>
Gets or sets a value indicating whether items in an array are validated using the <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> instance at their array position from <see cref="P:Newtonsoft.Json.Schema.JsonSchema.Items" />.
</summary>
<value>
<c>true</c> if items are validated using their array position; otherwise, <c>false</c>.
</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalItems">
<summary>
Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> of additional items.
</summary>
<value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> of additional items.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalItems">
<summary>
Gets or sets a value indicating whether additional items are allowed.
</summary>
<value>
<c>true</c> if additional items are allowed; otherwise, <c>false</c>.
</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.UniqueItems">
<summary>
Gets or sets whether the array items must be unique.
</summary>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.Properties">
<summary>
Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> of properties.
</summary>
<value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> of properties.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties">
<summary>
Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> of additional properties.
</summary>
<value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> of additional properties.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties">
<summary>
Gets or sets the pattern properties.
</summary>
<value>The pattern properties.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties">
<summary>
Gets or sets a value indicating whether additional properties are allowed.
</summary>
<value>
<c>true</c> if additional properties are allowed; otherwise, <c>false</c>.
</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.Requires">
<summary>
Gets or sets the required property if this property is present.
</summary>
<value>The required property if this property is present.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.Enum">
<summary>
Gets or sets the a collection of valid enum values allowed.
</summary>
<value>A collection of valid enum values allowed.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.Disallow">
<summary>
Gets or sets disallowed types.
</summary>
<value>The disallow types.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.Default">
<summary>
Gets or sets the default value.
</summary>
<value>The default value.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.Extends">
<summary>
Gets or sets the collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> that this schema extends.
</summary>
<value>The collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> that this schema extends.</value>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchema.Format">
<summary>
Gets or sets the format.
</summary>
<value>The format.</value>
</member>
<member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator">
<summary>
Generates a <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> from a specified <see cref="T:System.Type" />.
</summary>
</member>
<member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)">
<summary>
Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> from the specified type.
</summary>
<param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> from.</param>
<returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> generated from the specified type.</returns>
</member>
<member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)">
<summary>
Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> from the specified type.
</summary>
<param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> from.</param>
<param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver" /> used to resolve schema references.</param>
<returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> generated from the specified type.</returns>
</member>
<member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)">
<summary>
Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> from the specified type.
</summary>
<param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> from.</param>
<param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> will be nullable.</param>
<returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> generated from the specified type.</returns>
</member>
<member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)">
<summary>
Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> from the specified type.
</summary>
<param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> from.</param>
<param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver" /> used to resolve schema references.</param>
<param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> will be nullable.</param>
<returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema" /> generated from the specified type.</returns>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling">
<summary>
Gets or sets how undefined schemas are handled by the serializer.
</summary>
</member>
<member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver">
<summary>
Gets or sets the contract resolver.
</summary>
<value>The contract resolver.</value>
</member>
<member name="T:Newtonsoft.Json.Schema.JsonSchemaType">
<summary>
The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema" />.
</summary>
</member>
<member name="F:Newtonsoft.Json.Schema.JsonSchemaType.None">
<summary>
No type specified.
</summary>
</member>
<member name="F:Newtonsoft.Json.Schema.JsonSchemaType.String">
<summary>
String type.
</summary>
</member>
<member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Float">
<summary>
Float type.
</summary>
</member>
<member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Integer">
<summary>
Integer type.
</summary>
</member>
<member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean">
<summary>
Boolean type.
</summary>
</member>
<member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Object">
<summary>
Object type.
</summary>
</member>
<member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Array">
<summary>
Array type.
</summary>
</member>
<member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Null">
<summary>
Null type.
</summary>
</member>
<member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Any">
<summary>
Any type.
</summary>
</member>
<member name="T:Newtonsoft.Json.Serialization.JsonObjectContract">
<summary>
Contract details for a <see cref="T:System.Type" /> used by the <see cref="T:Newtonsoft.Json.JsonSerializer" />.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract" /> class.
</summary>
<param name="underlyingType">The underlying type for the contract.</param>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization">
<summary>
Gets or sets the object member serialization.
</summary>
<value>The member object serialization.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired">
<summary>
Gets or sets a value that indicates whether the object's properties are required.
</summary>
<value>
A value indicating whether the object's properties are required.
</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties">
<summary>
Gets the object's properties.
</summary>
<value>The object's properties.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters">
<summary>
Gets the constructor parameters required for any non-default constructor
</summary>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor">
<summary>
Gets or sets the override constructor used to create the object.
This is set when a constructor is marked up using the
JsonConstructor attribute.
</summary>
<value>The override constructor.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor">
<summary>
Gets or sets the parametrized constructor used to create the object.
</summary>
<value>The parametrized constructor.</value>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataSetter">
<summary>
Gets or sets the extension data setter.
</summary>
</member>
<member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataGetter">
<summary>
Gets or sets the extension data getter.
</summary>
</member>
<member name="T:Newtonsoft.Json.Serialization.JsonStringContract">
<summary>
Contract details for a <see cref="T:System.Type" /> used by the <see cref="T:Newtonsoft.Json.JsonSerializer" />.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract" /> class.
</summary>
<param name="underlyingType">The underlying type for the contract.</param>
</member>
<member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider">
<summary>
Get and set values for a <see cref="T:System.Reflection.MemberInfo" /> using reflection.
</summary>
</member>
<member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)">
<summary>
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider" /> class.
</summary>
<param name="memberInfo">The member info.</param>
</member>
<member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)">
<summary>
Sets the value.
</summary>
<param name="target">The target to set the value on.</param>
<param name="value">The value to set on the target.</param>
</member>
<member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)">
<summary>
Gets the value.
</summary>
<param name="target">The target to get the value from.</param>
<returns>The value.</returns>
</member>
<member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute">
<summary>
When applied to a method, specifies that the method is called when an error occurs serializing an object.
</summary>
</member>
<member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">
<summary>
Represents a method that constructs an object.
</summary>
<typeparam name="T">The object type to create.</typeparam>
</member>
<member name="T:Newtonsoft.Json.TypeNameHandling">
<summary>
Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer" />.
</summary>
</member>
<member name="F:Newtonsoft.Json.TypeNameHandling.None">
<summary>
Do not include the .NET type name when serializing types.
</summary>
</member>
<member name="F:Newtonsoft.Json.TypeNameHandling.Objects">
<summary>
Include the .NET type name when serializing into a JSON object structure.
</summary>
</member>
<member name="F:Newtonsoft.Json.TypeNameHandling.Arrays">
<summary>
Include the .NET type name when serializing into a JSON array structure.
</summary>
</member>
<member name="F:Newtonsoft.Json.TypeNameHandling.All">
<summary>
Always include the .NET type name when serializing.
</summary>
</member>
<member name="F:Newtonsoft.Json.TypeNameHandling.Auto">
<summary>
Include the .NET type name when the type of the object being serialized is not the same as its declared type.
</summary>
</member>
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.Convert(System.Object,System.Globalization.CultureInfo,System.Type)">
<summary>
Converts the value to the specified type.
</summary>
<param name="initialValue">The value to convert.</param>
<param name="culture">The culture to use when converting.</param>
<param name="targetType">The type to convert the value to.</param>
<returns>The converted type.</returns>
</member>
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)">
<summary>
Converts the value to the specified type.
</summary>
<param name="initialValue">The value to convert.</param>
<param name="culture">The culture to use when converting.</param>
<param name="targetType">The type to convert the value to.</param>
<param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
<returns>
<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
<summary>
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.
</summary>
<param name="initialValue">The value to convert.</param>
<param name="culture">The culture to use when converting.</param>
<param name="targetType">The type to convert or cast the value to.</param>
<returns>
The converted type. If conversion was unsuccessful, the initial value
is returned if assignable to the target type.
</returns>
</member>
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">
<summary>
Gets a dictionary of the names and values of an Enum type.
</summary>
<returns>
</returns>
</member>
<member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">
<summary>
Gets a dictionary of the names and values of an Enum type.
</summary>
<param name="enumType">The enum type to get names and values for.</param>
<returns>
</returns>
</member>
<member name="T:Newtonsoft.Json.JsonToken">
<summary>
Specifies the type of Json token.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonToken.None">
<summary>
This is returned by the <see cref="T:Newtonsoft.Json.JsonReader" /> if a <see cref="M:Newtonsoft.Json.JsonReader.Read" /> method has not been called.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonToken.StartObject">
<summary>
An object start token.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonToken.StartArray">
<summary>
An array start token.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonToken.StartConstructor">
<summary>
A constructor start token.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonToken.PropertyName">
<summary>
An object property name.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonToken.Comment">
<summary>
A comment.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonToken.Raw">
<summary>
Raw JSON.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonToken.Integer">
<summary>
An integer.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonToken.Float">
<summary>
A float.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonToken.String">
<summary>
A string.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonToken.Boolean">
<summary>
A boolean.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonToken.Null">
<summary>
A null token.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonToken.Undefined">
<summary>
An undefined token.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonToken.EndObject">
<summary>
An object end token.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonToken.EndArray">
<summary>
An array end token.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonToken.EndConstructor">
<summary>
A constructor end token.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonToken.Date">
<summary>
A Date.
</summary>
</member>
<member name="F:Newtonsoft.Json.JsonToken.Bytes">
<summary>
Byte data.
</summary>
</member>
<member name="T:Newtonsoft.Json.Utilities.StringBuffer">
<summary>
Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.
</summary>
</member>
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
<summary>
Determines whether the collection is null or empty.
</summary>
<param name="collection">The collection.</param>
<returns>
<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
<summary>
Adds the elements of the specified collection to the specified generic IList.
</summary>
<param name="initial">The list to add to.</param>
<param name="collection">The collection of elements to add.</param>
</member>
<member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
<summary>
Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.
</summary>
<typeparam name="TSource">The type of the elements of source.</typeparam>
<param name="list">A sequence in which to locate a value.</param>
<param name="value">The object to locate in the sequence</param>
<param name="comparer">An equality comparer to compare values.</param>
<returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, 1.</returns>
</member>
<member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">
<summary>
Gets the type of the typed collection's items.
</summary>
<param name="type">The type.</param>
<returns>The type of the typed collection's items.</returns>
</member>
<member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
<summary>
Gets the member's underlying type.
</summary>
<param name="member">The member.</param>
<returns>The underlying type of the member.</returns>
</member>
<member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)">
<summary>
Determines whether the member is an indexed property.
</summary>
<param name="member">The member.</param>
<returns>
<c>true</c> if the member is an indexed property; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)">
<summary>
Determines whether the property is an indexed property.
</summary>
<param name="property">The property.</param>
<returns>
<c>true</c> if the property is an indexed property; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)">
<summary>
Gets the member's value on the object.
</summary>
<param name="member">The member.</param>
<param name="target">The target object.</param>
<returns>The member's value on the object.</returns>
</member>
<member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)">
<summary>
Sets the member's value on the target object.
</summary>
<param name="member">The member.</param>
<param name="target">The target.</param>
<param name="value">The value.</param>
</member>
<member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)">
<summary>
Determines whether the specified MemberInfo can be read.
</summary>
<param name="member">The MemberInfo to determine whether can be read.</param>
/// <param name="nonPublic">if set to <c>true</c> then allow the member to be gotten non-publicly.</param><returns><c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.
</returns></member>
<member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)">
<summary>
Determines whether the specified MemberInfo can be set.
</summary>
<param name="member">The MemberInfo to determine whether can be set.</param>
<param name="nonPublic">if set to <c>true</c> then allow the member to be set non-publicly.</param>
<param name="canSetReadOnly">if set to <c>true</c> then allow the member to be set if read-only.</param>
<returns>
<c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
<summary>
Determines whether the string is all white space. Empty string will return false.
</summary>
<param name="s">The string to test whether it is all white space.</param>
<returns>
<c>true</c> if the string is all white space; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)">
<summary>
Nulls an empty string.
</summary>
<param name="s">The string.</param>
<returns>Null if the string was null, otherwise the string unchanged.</returns>
</member>
<member name="T:Newtonsoft.Json.WriteState">
<summary>
Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter" />.
</summary>
</member>
<member name="F:Newtonsoft.Json.WriteState.Error">
<summary>
An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter" /> in an invalid state.
You may call the <see cref="M:Newtonsoft.Json.JsonWriter.Close" /> method to put the <see cref="T:Newtonsoft.Json.JsonWriter" /> in the <c>Closed</c> state.
Any other <see cref="T:Newtonsoft.Json.JsonWriter" /> method calls results in an <see cref="T:System.InvalidOperationException" /> being thrown.
</summary>
</member>
<member name="F:Newtonsoft.Json.WriteState.Closed">
<summary>
The <see cref="M:Newtonsoft.Json.JsonWriter.Close" /> method has been called.
</summary>
</member>
<member name="F:Newtonsoft.Json.WriteState.Object">
<summary>
An object is being written.
</summary>
</member>
<member name="F:Newtonsoft.Json.WriteState.Array">
<summary>
A array is being written.
</summary>
</member>
<member name="F:Newtonsoft.Json.WriteState.Constructor">
<summary>
A constructor is being written.
</summary>
</member>
<member name="F:Newtonsoft.Json.WriteState.Property">
<summary>
A property is being written.
</summary>
</member>
<member name="F:Newtonsoft.Json.WriteState.Start">
<summary>
A write method has not been called.
</summary>
</member>
</members>
</doc>