update youtube-explode

This commit is contained in:
Mike Nolan 2021-12-31 09:28:34 -06:00
parent 77589ba607
commit 6338810e28
511 changed files with 2991 additions and 1017282 deletions

View File

@ -1,5 +1,5 @@
<Properties StartupConfiguration="{E26F8159-6B4B-4660-A7A4-D0333DFEF0DD}|Default" NuGet.AddPackagesDialog.IncludePrerelease="True">
<MonoDevelop.Ide.Workbench ActiveDocument="TYTD.Api/Server/Models/InfoType.cs">
<MonoDevelop.Ide.Workbench ActiveDocument="Program.cs">
<Files>
<File FileName="TYTD.Api/Server/Models/InfoType.cs" Line="20" Column="16" />
<File FileName="TYTD.Api/Server/Functions/Downloader.cs" Line="18" Column="1" />
@ -19,9 +19,13 @@
<Pad Id="ProjectPad">
<State name="__root__">
<Node name="youtube-downloader" expanded="True">
<Node name="TYTD.Api" expanded="True" />
<Node name="TYTD.Api" expanded="True">
<Node name="Server" expanded="True">
<Node name="Models" expanded="True" />
</Node>
</Node>
<Node name="youtube-downloader" expanded="True">
<Node name="Packages" selected="True" />
<Node name="Program.cs" selected="True" />
</Node>
</Node>
</State>

View File

@ -14,7 +14,6 @@ using Newtonsoft.Json;
using System.Net;
using System.Threading.Tasks;
using TYTD.Server.Functions;
using YoutubeExplode.Extensions;
using YoutubeExplode.Videos;
using YoutubeExplode;
using YoutubeExplode.Videos.Streams;
@ -128,7 +127,7 @@ namespace TYTD
private static async Task<StreamManifest> GetManifest(YoutubeClient arg1, VideoId arg2)
{
return await arg1.Videos.Streams.GetManifestAndFixStreamUrlsAsync(arg2);
return await arg1.Videos.Streams.GetManifestAsync(arg2);
}
#region Generic

BIN
bin/Release/AngleSharp.dll Normal file → Executable file

Binary file not shown.

791
bin/Release/AngleSharp.xml Normal file → Executable file

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,883 +0,0 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Flurl</name>
</assembly>
<members>
<member name="T:Flurl.GeneratedExtensions">
<summary>
Fluent URL-building extension methods on String and Uri.
</summary>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegment(System.String,System.Object,System.Boolean)">
<summary>
Creates a new Url object from the string and appends a segment to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="url">This URL.</param>
<param name="segment">The segment to append</param>
<param name="fullyEncode">If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters).</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegments(System.String,System.Object[])">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="url">This URL.</param>
<param name="segments">The segments to append</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegments(System.String,System.Collections.Generic.IEnumerable{System.Object})">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="url">This URL.</param>
<param name="segments">The segments to append</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemovePathSegment(System.String)">
<summary>
Removes the last path segment from the URL.
</summary>
<param name="url">This URL.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemovePath(System.String)">
<summary>
Removes the entire path component of the URL.
</summary>
<param name="url">This URL.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.String,System.String,System.Object,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="url">This URL.</param>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.String,System.String,System.String,System.Boolean,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="url">This URL.</param>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="isEncoded">Set to true to indicate the value is already URL-encoded. Defaults to false.</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing).</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.String,System.String)">
<summary>
Creates a new Url object from the string and adds a parameter without a value to the query, removing any existing value.
</summary>
<param name="url">This URL.</param>
<param name="name">Name of query parameter</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.String,System.Object,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string, parses values object into name/value pairs, and adds them to the query, overwriting any that already exist.
</summary>
<param name="url">This URL.</param>
<param name="values">Typically an anonymous object, ie: new { x = 1, y = 2 }</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.String,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Creates a new Url object from the string and adds multiple parameters without values to the query.
</summary>
<param name="url">This URL.</param>
<param name="names">Names of query parameters.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.String,System.String[])">
<summary>
Creates a new Url object from the string and adds multiple parameters without values to the query.
</summary>
<param name="url">This URL.</param>
<param name="names">Names of query parameters</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParam(System.String,System.String)">
<summary>
Creates a new Url object from the string and removes a name/value pair from the query by name.
</summary>
<param name="url">This URL.</param>
<param name="name">Query string parameter name to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParams(System.String,System.String[])">
<summary>
Creates a new Url object from the string and removes multiple name/value pairs from the query by name.
</summary>
<param name="url">This URL.</param>
<param name="names">Query string parameter names to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParams(System.String,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Creates a new Url object from the string and removes multiple name/value pairs from the query by name.
</summary>
<param name="url">This URL.</param>
<param name="names">Query string parameter names to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQuery(System.String)">
<summary>
Removes the entire query component of the URL.
</summary>
<param name="url">This URL.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetFragment(System.String,System.String)">
<summary>
Set the URL fragment fluently.
</summary>
<param name="url">This URL.</param>
<param name="fragment">The part of the URL after #</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveFragment(System.String)">
<summary>
Removes the URL fragment including the #.
</summary>
<param name="url">This URL.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.ResetToRoot(System.String)">
<summary>
Trims the URL to its root, including the scheme, any user info, host, and port (if specified).
</summary>
<param name="url">This URL.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegment(System.Uri,System.Object,System.Boolean)">
<summary>
Creates a new Url object from the string and appends a segment to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="uri">This System.Uri.</param>
<param name="segment">The segment to append</param>
<param name="fullyEncode">If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters).</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegments(System.Uri,System.Object[])">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="uri">This System.Uri.</param>
<param name="segments">The segments to append</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegments(System.Uri,System.Collections.Generic.IEnumerable{System.Object})">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="uri">This System.Uri.</param>
<param name="segments">The segments to append</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemovePathSegment(System.Uri)">
<summary>
Removes the last path segment from the URL.
</summary>
<param name="uri">This System.Uri.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemovePath(System.Uri)">
<summary>
Removes the entire path component of the URL.
</summary>
<param name="uri">This System.Uri.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.Uri,System.String,System.Object,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="uri">This System.Uri.</param>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.Uri,System.String,System.String,System.Boolean,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="uri">This System.Uri.</param>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="isEncoded">Set to true to indicate the value is already URL-encoded. Defaults to false.</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing).</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.Uri,System.String)">
<summary>
Creates a new Url object from the string and adds a parameter without a value to the query, removing any existing value.
</summary>
<param name="uri">This System.Uri.</param>
<param name="name">Name of query parameter</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.Uri,System.Object,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string, parses values object into name/value pairs, and adds them to the query, overwriting any that already exist.
</summary>
<param name="uri">This System.Uri.</param>
<param name="values">Typically an anonymous object, ie: new { x = 1, y = 2 }</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.Uri,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Creates a new Url object from the string and adds multiple parameters without values to the query.
</summary>
<param name="uri">This System.Uri.</param>
<param name="names">Names of query parameters.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.Uri,System.String[])">
<summary>
Creates a new Url object from the string and adds multiple parameters without values to the query.
</summary>
<param name="uri">This System.Uri.</param>
<param name="names">Names of query parameters</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParam(System.Uri,System.String)">
<summary>
Creates a new Url object from the string and removes a name/value pair from the query by name.
</summary>
<param name="uri">This System.Uri.</param>
<param name="name">Query string parameter name to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParams(System.Uri,System.String[])">
<summary>
Creates a new Url object from the string and removes multiple name/value pairs from the query by name.
</summary>
<param name="uri">This System.Uri.</param>
<param name="names">Query string parameter names to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParams(System.Uri,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Creates a new Url object from the string and removes multiple name/value pairs from the query by name.
</summary>
<param name="uri">This System.Uri.</param>
<param name="names">Query string parameter names to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQuery(System.Uri)">
<summary>
Removes the entire query component of the URL.
</summary>
<param name="uri">This System.Uri.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetFragment(System.Uri,System.String)">
<summary>
Set the URL fragment fluently.
</summary>
<param name="uri">This System.Uri.</param>
<param name="fragment">The part of the URL after #</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveFragment(System.Uri)">
<summary>
Removes the URL fragment including the #.
</summary>
<param name="uri">This System.Uri.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.ResetToRoot(System.Uri)">
<summary>
Trims the URL to its root, including the scheme, any user info, host, and port (if specified).
</summary>
<param name="uri">This System.Uri.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="T:Flurl.NullValueHandling">
<summary>
Describes how to handle null values in query parameters.
</summary>
</member>
<member name="F:Flurl.NullValueHandling.NameOnly">
<summary>
Set as name without value in query string.
</summary>
</member>
<member name="F:Flurl.NullValueHandling.Remove">
<summary>
Don't add to query string, remove any existing value.
</summary>
</member>
<member name="F:Flurl.NullValueHandling.Ignore">
<summary>
Don't add to query string, but leave any existing value unchanged.
</summary>
</member>
<member name="T:Flurl.QueryParamCollection">
<summary>
Represents a URL query as a collection of name/value pairs. Insertion order is preserved.
</summary>
</member>
<member name="M:Flurl.QueryParamCollection.#ctor(System.String)">
<summary>
Returns a new instance of QueryParamCollection
</summary>
<param name="query">Optional query string to parse.</param>
</member>
<member name="M:Flurl.QueryParamCollection.ToString">
<summary>
Returns serialized, encoded query string. Insertion order is preserved.
</summary>
<returns></returns>
</member>
<member name="M:Flurl.QueryParamCollection.ToString(System.Boolean)">
<summary>
Returns serialized, encoded query string. Insertion order is preserved.
</summary>
<returns></returns>
</member>
<member name="M:Flurl.QueryParamCollection.Add(System.String,System.Object,System.Boolean,Flurl.NullValueHandling)">
<summary>
Appends a query parameter. If value is a collection type (array, IEnumerable, etc.), multiple parameters are added, i.e. x=1&amp;x=2.
To overwrite existing parameters of the same name, use AddOrReplace instead.
</summary>
<param name="name">Name of the parameter.</param>
<param name="value">Value of the parameter. If it's a collection, multiple parameters of the same name are added.</param>
<param name="isEncoded">If true, assume value(s) already URL-encoded.</param>
<param name="nullValueHandling">Describes how to handle null values.</param>
</member>
<member name="M:Flurl.QueryParamCollection.AddOrReplace(System.String,System.Object,System.Boolean,Flurl.NullValueHandling)">
<summary>
Replaces existing query parameter(s) or appends to the end. If value is a collection type (array, IEnumerable, etc.),
multiple parameters are added, i.e. x=1&amp;x=2. If any of the same name already exist, they are overwritten one by one
(preserving order) and any remaining are appended to the end. If fewer values are specified than already exist,
remaining existing values are removed.
</summary>
<param name="name">Name of the parameter.</param>
<param name="value">Value of the parameter. If it's a collection, multiple parameters of the same name are added/replaced.</param>
<param name="isEncoded">If true, assume value(s) already URL-encoded.</param>
<param name="nullValueHandling">Describes how to handle null values.</param>
</member>
<member name="M:Flurl.QueryParamCollection.Remove(System.String)">
<summary>
Removes all query parameters of the given name.
</summary>
</member>
<member name="M:Flurl.QueryParamCollection.Clear">
<summary>
Clears all query parameters from this collection.
</summary>
</member>
<member name="M:Flurl.QueryParamCollection.GetEnumerator">
<inheritdoc />>
</member>
<member name="P:Flurl.QueryParamCollection.Count">
<inheritdoc />>
</member>
<member name="P:Flurl.QueryParamCollection.Item(System.Int32)">
<inheritdoc />>
</member>
<member name="M:Flurl.QueryParamCollection.FirstOrDefault(System.String)">
<inheritdoc />>
</member>
<member name="M:Flurl.QueryParamCollection.TryGetFirst(System.String,System.Object@)">
<inheritdoc />>
</member>
<member name="M:Flurl.QueryParamCollection.GetAll(System.String)">
<inheritdoc />>
</member>
<member name="M:Flurl.QueryParamCollection.Contains(System.String)">
<inheritdoc />>
</member>
<member name="M:Flurl.QueryParamCollection.Contains(System.String,System.Object)">
<inheritdoc />>
</member>
<member name="T:Flurl.QueryParamValue">
<summary>
Represents a query parameter value with the ability to track whether it was already encoded when created.
</summary>
</member>
<member name="T:Flurl.Url">
<summary>
A mutable object for fluently building and parsing URLs.
</summary>
</member>
<member name="P:Flurl.Url.Scheme">
<summary>
The scheme of the URL, i.e. "http". Does not include ":" delimiter. Empty string if the URL is relative.
</summary>
</member>
<member name="P:Flurl.Url.UserInfo">
<summary>
i.e. "user:pass" in "https://user:pass@www.site.com". Empty string if not present.
</summary>
</member>
<member name="P:Flurl.Url.Host">
<summary>
i.e. "www.site.com" in "https://www.site.com:8080/path". Does not include user info or port.
</summary>
</member>
<member name="P:Flurl.Url.Port">
<summary>
Port number of the URL. Null if not explicitly specified.
</summary>
</member>
<member name="P:Flurl.Url.Authority">
<summary>
i.e. "www.site.com:8080" in "https://www.site.com:8080/path". Includes both user info and port, if included.
</summary>
</member>
<member name="P:Flurl.Url.Root">
<summary>
i.e. "https://www.site.com:8080" in "https://www.site.com:8080/path" (everything before the path).
</summary>
</member>
<member name="P:Flurl.Url.Path">
<summary>
i.e. "/path" in "https://www.site.com/path". Empty string if not present. Leading and trailing "/" retained exactly as specified by user.
</summary>
</member>
<member name="P:Flurl.Url.PathSegments">
<summary>
The "/"-delimited segments of the path, not including leading or trailing "/" characters.
</summary>
</member>
<member name="P:Flurl.Url.Query">
<summary>
i.e. "x=1&amp;y=2" in "https://www.site.com/path?x=1&amp;y=2". Does not include "?".
</summary>
</member>
<member name="P:Flurl.Url.QueryParams">
<summary>
Query parsed to name/value pairs.
</summary>
</member>
<member name="P:Flurl.Url.Fragment">
<summary>
i.e. "frag" in "https://www.site.com/path?x=y#frag". Does not include "#".
</summary>
</member>
<member name="P:Flurl.Url.IsRelative">
<summary>
True if URL does not start with a non-empty scheme. i.e. true for "https://www.site.com", false for "//www.site.com".
</summary>
</member>
<member name="P:Flurl.Url.IsSecureScheme">
<summary>
True if Url is absolute and scheme is https or wss.
</summary>
</member>
<member name="M:Flurl.Url.#ctor(System.String)">
<summary>
Constructs a Url object from a string.
</summary>
<param name="baseUrl">The URL to use as a starting point.</param>
</member>
<member name="M:Flurl.Url.#ctor(System.Uri)">
<summary>
Constructs a Url object from a System.Uri.
</summary>
<param name="uri">The System.Uri (required)</param>
<exception cref="T:System.ArgumentNullException"><paramref name="uri"/> is <see langword="null" />.</exception>
</member>
<member name="M:Flurl.Url.Parse(System.String)">
<summary>
Parses a URL string into a Flurl.Url object.
</summary>
</member>
<member name="M:Flurl.Url.ParseQueryParams(System.String)">
<summary>
Parses a URL query to a QueryParamCollection.
</summary>
<param name="query">The URL query to parse.</param>
</member>
<member name="M:Flurl.Url.ParsePathSegments(System.String)">
<summary>
Splits the given path into segments, encoding illegal characters, "?", and "#".
</summary>
<param name="path">The path to split.</param>
<returns></returns>
</member>
<member name="M:Flurl.Url.AppendPathSegment(System.Object,System.Boolean)">
<summary>
Appends a segment to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="segment">The segment to append</param>
<param name="fullyEncode">If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters).</param>
<returns>the Url object with the segment appended</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="segment"/> is <see langword="null" />.</exception>
</member>
<member name="M:Flurl.Url.AppendPathSegments(System.Object[])">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a seperator.
</summary>
<param name="segments">The segments to append</param>
<returns>the Url object with the segments appended</returns>
</member>
<member name="M:Flurl.Url.AppendPathSegments(System.Collections.Generic.IEnumerable{System.Object})">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a seperator.
</summary>
<param name="segments">The segments to append</param>
<returns>the Url object with the segments appended</returns>
</member>
<member name="M:Flurl.Url.RemovePathSegment">
<summary>
Removes the last path segment from the URL.
</summary>
<returns>The Url object.</returns>
</member>
<member name="M:Flurl.Url.RemovePath">
<summary>
Removes the entire path component of the URL, including the leading slash.
</summary>
<returns>The Url object.</returns>
</member>
<member name="M:Flurl.Url.SetQueryParam(System.String,System.Object,Flurl.NullValueHandling)">
<summary>
Adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>The Url object with the query parameter added</returns>
</member>
<member name="M:Flurl.Url.SetQueryParam(System.String,System.String,System.Boolean,Flurl.NullValueHandling)">
<summary>
Adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="isEncoded">Set to true to indicate the value is already URL-encoded</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>The Url object with the query parameter added</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="name"/> is <see langword="null" />.</exception>
</member>
<member name="M:Flurl.Url.SetQueryParam(System.String)">
<summary>
Adds a parameter without a value to the query, removing any existing value.
</summary>
<param name="name">Name of query parameter</param>
<returns>The Url object with the query parameter added</returns>
</member>
<member name="M:Flurl.Url.SetQueryParams(System.Object,Flurl.NullValueHandling)">
<summary>
Parses values (usually an anonymous object or dictionary) into name/value pairs and adds them to the query, overwriting any that already exist.
</summary>
<param name="values">Typically an anonymous object, ie: new { x = 1, y = 2 }</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>The Url object with the query parameters added</returns>
</member>
<member name="M:Flurl.Url.SetQueryParams(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Adds multiple parameters without values to the query.
</summary>
<param name="names">Names of query parameters.</param>
<returns>The Url object with the query parameter added</returns>
</member>
<member name="M:Flurl.Url.SetQueryParams(System.String[])">
<summary>
Adds multiple parameters without values to the query.
</summary>
<param name="names">Names of query parameters</param>
<returns>The Url object with the query parameter added.</returns>
</member>
<member name="M:Flurl.Url.RemoveQueryParam(System.String)">
<summary>
Removes a name/value pair from the query by name.
</summary>
<param name="name">Query string parameter name to remove</param>
<returns>The Url object with the query parameter removed</returns>
</member>
<member name="M:Flurl.Url.RemoveQueryParams(System.String[])">
<summary>
Removes multiple name/value pairs from the query by name.
</summary>
<param name="names">Query string parameter names to remove</param>
<returns>The Url object.</returns>
</member>
<member name="M:Flurl.Url.RemoveQueryParams(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Removes multiple name/value pairs from the query by name.
</summary>
<param name="names">Query string parameter names to remove</param>
<returns>The Url object with the query parameters removed</returns>
</member>
<member name="M:Flurl.Url.RemoveQuery">
<summary>
Removes the entire query component of the URL.
</summary>
<returns>The Url object.</returns>
</member>
<member name="M:Flurl.Url.SetFragment(System.String)">
<summary>
Set the URL fragment fluently.
</summary>
<param name="fragment">The part of the URL after #</param>
<returns>The Url object with the new fragment set</returns>
</member>
<member name="M:Flurl.Url.RemoveFragment">
<summary>
Removes the URL fragment including the #.
</summary>
<returns>The Url object with the fragment removed</returns>
</member>
<member name="M:Flurl.Url.ResetToRoot">
<summary>
Resets the URL to its root, including the scheme, any user info, host, and port (if specified).
</summary>
<returns>The Url object trimmed to its root.</returns>
</member>
<member name="M:Flurl.Url.Reset">
<summary>
Resets the URL to its original state as set in the constructor.
</summary>
</member>
<member name="M:Flurl.Url.Clone">
<summary>
Creates a copy of this Url.
</summary>
</member>
<member name="M:Flurl.Url.ToString(System.Boolean)">
<summary>
Converts this Url object to its string representation.
</summary>
<param name="encodeSpaceAsPlus">Indicates whether to encode spaces with the "+" character instead of "%20"</param>
<returns></returns>
</member>
<member name="M:Flurl.Url.ToString">
<summary>
Converts this Url object to its string representation.
</summary>
<returns></returns>
</member>
<member name="M:Flurl.Url.ToUri">
<summary>
Converts this Url object to System.Uri
</summary>
<returns>The System.Uri object</returns>
</member>
<member name="M:Flurl.Url.op_Implicit(Flurl.Url)~System.String">
<summary>
Implicit conversion from Url to String.
</summary>
<param name="url">The Url object</param>
<returns>The string</returns>
</member>
<member name="M:Flurl.Url.op_Implicit(System.String)~Flurl.Url">
<summary>
Implicit conversion from String to Url.
</summary>
<param name="url">The String representation of the URL</param>
<returns>The string</returns>
</member>
<member name="M:Flurl.Url.op_Implicit(System.Uri)~Flurl.Url">
<summary>
Implicit conversion from System.Uri to Flurl.Url.
</summary>
<returns>The string</returns>
</member>
<member name="M:Flurl.Url.Equals(System.Object)">
<summary>
True if obj is an instance of Url and its string representation is equal to this instance's string representation.
</summary>
<param name="obj">The object to compare to this instance.</param>
<returns></returns>
</member>
<member name="M:Flurl.Url.GetHashCode">
<summary>
Returns the hashcode for this Url.
</summary>
</member>
<member name="M:Flurl.Url.Combine(System.String[])">
<summary>
Basically a Path.Combine for URLs. Ensures exactly one '/' separates each segment,
and exactly on '&amp;' separates each query parameter.
URL-encodes illegal characters but not reserved characters.
</summary>
<param name="parts">URL parts to combine.</param>
</member>
<member name="M:Flurl.Url.Decode(System.String,System.Boolean)">
<summary>
Decodes a URL-encoded string.
</summary>
<param name="s">The URL-encoded string.</param>
<param name="interpretPlusAsSpace">If true, any '+' character will be decoded to a space.</param>
<returns></returns>
</member>
<member name="M:Flurl.Url.Encode(System.String,System.Boolean)">
<summary>
URL-encodes a string, including reserved characters such as '/' and '?'.
</summary>
<param name="s">The string to encode.</param>
<param name="encodeSpaceAsPlus">If true, spaces will be encoded as + signs. Otherwise, they'll be encoded as %20.</param>
<returns>The encoded URL.</returns>
</member>
<member name="M:Flurl.Url.EncodeIllegalCharacters(System.String,System.Boolean)">
<summary>
URL-encodes characters in a string that are neither reserved nor unreserved. Avoids encoding reserved characters such as '/' and '?'. Avoids encoding '%' if it begins a %-hex-hex sequence (i.e. avoids double-encoding).
</summary>
<param name="s">The string to encode.</param>
<param name="encodeSpaceAsPlus">If true, spaces will be encoded as + signs. Otherwise, they'll be encoded as %20.</param>
<returns>The encoded URL.</returns>
</member>
<member name="M:Flurl.Url.IsValid(System.String)">
<summary>
Checks if a string is a well-formed absolute URL.
</summary>
<param name="url">The string to check</param>
<returns>true if the string is a well-formed absolute URL</returns>
</member>
<member name="T:Flurl.Util.CommonExtensions">
<summary>
CommonExtensions for objects.
</summary>
</member>
<member name="M:Flurl.Util.CommonExtensions.ToKeyValuePairs(System.Object)">
<summary>
Returns a key-value-pairs representation of the object.
For strings, URL query string format assumed and pairs are parsed from that.
For objects that already implement IEnumerable&lt;KeyValuePair&gt;, the object itself is simply returned.
For all other objects, all publicly readable properties are extracted and returned as pairs.
</summary>
<param name="obj">The object to parse into key-value pairs</param>
<returns></returns>
<exception cref="T:System.ArgumentNullException"><paramref name="obj"/> is <see langword="null" />.</exception>
</member>
<member name="M:Flurl.Util.CommonExtensions.ToInvariantString(System.Object)">
<summary>
Returns a string that represents the current object, using CultureInfo.InvariantCulture where possible.
Dates are represented in IS0 8601.
</summary>
</member>
<member name="M:Flurl.Util.CommonExtensions.SplitOnFirstOccurence(System.String,System.String)">
<summary>
Splits at the first occurrence of the given separator.
</summary>
<param name="s">The string to split.</param>
<param name="separator">The separator to split on.</param>
<returns>Array of at most 2 strings. (1 if separator is not found.)</returns>
</member>
<member name="M:Flurl.Util.CommonExtensions.Merge``2(System.Collections.Generic.IDictionary{``0,``1},System.Collections.Generic.IDictionary{``0,``1})">
<summary>
Merges the key/value pairs from d2 into d1, without overwriting those already set in d1.
</summary>
</member>
<member name="M:Flurl.Util.CommonExtensions.StripQuotes(System.String)">
<summary>
Strips any single quotes or double quotes from the beginning and end of a string.
</summary>
</member>
<member name="M:Flurl.Util.CommonExtensions.IsIP(System.String)">
<summary>
True if the given string is a valid IPv4 address.
</summary>
</member>
<member name="T:Flurl.Util.INameValueListBase`1">
<summary>
Defines common methods for INameValueList and IReadOnlyNameValueList.
</summary>
</member>
<member name="M:Flurl.Util.INameValueListBase`1.FirstOrDefault(System.String)">
<summary>
Returns the first Value of the given Name if one exists, otherwise null or default value.
</summary>
</member>
<member name="M:Flurl.Util.INameValueListBase`1.TryGetFirst(System.String,`0@)">
<summary>
Gets the first Value of the given Name, if one exists.
</summary>
<returns>true if any item of the given name is found, otherwise false.</returns>
</member>
<member name="M:Flurl.Util.INameValueListBase`1.GetAll(System.String)">
<summary>
Gets all Values of the given Name.
</summary>
</member>
<member name="M:Flurl.Util.INameValueListBase`1.Contains(System.String)">
<summary>
True if any items with the given Name exist.
</summary>
</member>
<member name="M:Flurl.Util.INameValueListBase`1.Contains(System.String,`0)">
<summary>
True if any item with the given Name and Value exists.
</summary>
</member>
<member name="T:Flurl.Util.INameValueList`1">
<summary>
Defines an ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical.
</summary>
</member>
<member name="M:Flurl.Util.INameValueList`1.Add(System.String,`0)">
<summary>
Adds a new Name/Value pair.
</summary>
</member>
<member name="M:Flurl.Util.INameValueList`1.AddOrReplace(System.String,`0)">
<summary>
Replaces the first occurrence of the given Name with the given Value and removes any others,
or adds a new Name/Value pair if none exist.
</summary>
</member>
<member name="M:Flurl.Util.INameValueList`1.Remove(System.String)">
<summary>
Removes all items of the given Name.
</summary>
<returns>true if any item of the given name is found, otherwise false.</returns>
</member>
<member name="T:Flurl.Util.IReadOnlyNameValueList`1">
<summary>
Defines a read-only ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical.
</summary>
</member>
<member name="T:Flurl.Util.NameValueList`1">
<summary>
An ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical.
Useful for things where a dictionary would work great if not for those pesky edge cases (headers, cookies, etc).
</summary>
</member>
<member name="M:Flurl.Util.NameValueList`1.#ctor(System.Boolean)">
<summary>
Instantiates a new empty NameValueList.
</summary>
</member>
<member name="M:Flurl.Util.NameValueList`1.#ctor(System.Collections.Generic.IEnumerable{System.ValueTuple{System.String,`0}},System.Boolean)">
<summary>
Instantiates a new NameValueList with the Name/Value pairs provided.
</summary>
</member>
<member name="M:Flurl.Util.NameValueList`1.Add(System.String,`0)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.AddOrReplace(System.String,`0)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.Remove(System.String)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.FirstOrDefault(System.String)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.TryGetFirst(System.String,`0@)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.GetAll(System.String)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.Contains(System.String)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.Contains(System.String,`0)">
<inheritdoc />
</member>
</members>
</doc>

Binary file not shown.

File diff suppressed because it is too large Load Diff

BIN
bin/Release/MimeTypesMap.dll Normal file → Executable file

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Text.Encoding.CodePages</name>
</assembly>
<members>
<member name="T:System.Text.CodePagesEncodingProvider">
<summary>Provides access to an encoding provider for code pages that otherwise are available only in the desktop .NET Framework.</summary>
</member>
<member name="M:System.Text.CodePagesEncodingProvider.GetEncoding(System.Int32)">
<summary>Returns the encoding associated with the specified code page identifier.</summary>
<param name="codepage">The code page identifier of the preferred encoding which the encoding provider may support.</param>
<returns>The encoding associated with the specified code page identifier, or <see langword="null" /> if the provider does not support the requested codepage encoding.</returns>
</member>
<member name="M:System.Text.CodePagesEncodingProvider.GetEncoding(System.String)">
<summary>Returns the encoding associated with the specified code page name.</summary>
<param name="name">The code page name of the preferred encoding which the encoding provider may support.</param>
<returns>The encoding associated with the specified code page, or <see langword="null" /> if the provider does not support the requested encoding.</returns>
</member>
<member name="M:System.Text.CodePagesEncodingProvider.GetEncodings">
<summary>Returns an array that contains all the encodings that are supported by the <see cref="T:System.Text.CodePagesEncodingProvider" />.</summary>
<returns>An array that contains all the supported encodings.</returns>
</member>
<member name="P:System.Text.CodePagesEncodingProvider.Instance">
<summary>Gets an encoding provider for code pages supported in the desktop .NET Framework but not in the current .NET Framework platform.</summary>
<returns>An encoding provider that allows access to encodings not supported on the current .NET Framework platform.</returns>
</member>
</members>
</doc>

Binary file not shown.

BIN
bin/Release/YoutubeExplode.dll Normal file → Executable file

Binary file not shown.

30
bin/Release/YoutubeExplode.xml Normal file → Executable file
View File

@ -663,6 +663,11 @@
Initializes an instance of <see cref="T:YoutubeExplode.Search.SearchClient"/>.
</summary>
</member>
<member name="M:YoutubeExplode.Search.SearchClient.GetResultBatchesAsync(System.String,YoutubeExplode.Search.SearchFilter,System.Threading.CancellationToken)">
<summary>
Enumerates batches of search results returned by the specified query.
</summary>
</member>
<member name="M:YoutubeExplode.Search.SearchClient.GetResultBatchesAsync(System.String,System.Threading.CancellationToken)">
<summary>
Enumerates batches of search results returned by the specified query.
@ -688,6 +693,31 @@
Enumerates channel search results returned by the specified query.
</summary>
</member>
<member name="T:YoutubeExplode.Search.SearchFilter">
<summary>
Filter applied to a YouTube search query.
</summary>
</member>
<member name="F:YoutubeExplode.Search.SearchFilter.None">
<summary>
No filter applied.
</summary>
</member>
<member name="F:YoutubeExplode.Search.SearchFilter.Video">
<summary>
Only search for videos.
</summary>
</member>
<member name="F:YoutubeExplode.Search.SearchFilter.Playlist">
<summary>
Only search for playlists.
</summary>
</member>
<member name="F:YoutubeExplode.Search.SearchFilter.Channel">
<summary>
Only search for channels.
</summary>
</member>
<member name="T:YoutubeExplode.Search.VideoSearchResult">
<summary>
Metadata associated with a YouTube video returned by a search query.

Binary file not shown.

View File

@ -1 +1 @@
74d899a896c1a9bdf9c9464d0b89077aa6c3c944
86258721c083b2dc3445d3e49869600975273fa0

View File

@ -670,18 +670,12 @@
/home/mike/tytd-server/bin/Release/System.Xml.XPath.XDocument.dll
/home/mike/tytd-server/bin/Release/AngleSharp.dll
/home/mike/tytd-server/bin/Release/AsyncEnumerable.dll
/home/mike/tytd-server/bin/Release/Common.Logging.Core.dll
/home/mike/tytd-server/bin/Release/Common.Logging.dll
/home/mike/tytd-server/bin/Release/CookiesTxtParser.dll
/home/mike/tytd-server/bin/Release/ExposedObject.dll
/home/mike/tytd-server/bin/Release/Flurl.dll
/home/mike/tytd-server/bin/Release/Jurassic.dll
/home/mike/tytd-server/bin/Release/Microsoft.Bcl.AsyncInterfaces.dll
/home/mike/tytd-server/bin/Release/MimeTypesMap.dll
/home/mike/tytd-server/bin/Release/Newtonsoft.Json.dll
/home/mike/tytd-server/bin/Release/SimpleBase.dll
/home/mike/tytd-server/bin/Release/SimpleHTTP.dll
/home/mike/tytd-server/bin/Release/Stef.Validation.dll
/home/mike/tytd-server/bin/Release/System.Buffers.dll
/home/mike/tytd-server/bin/Release/System.Memory.dll
/home/mike/tytd-server/bin/Release/System.Numerics.Vectors.dll
@ -692,7 +686,6 @@
/home/mike/tytd-server/bin/Release/System.Threading.Tasks.Extensions.dll
/home/mike/tytd-server/bin/Release/TYTD.Api.dll
/home/mike/tytd-server/bin/Release/YoutubeExplode.dll
/home/mike/tytd-server/bin/Release/YoutubeExplode.Extensions.dll
/home/mike/tytd-server/bin/Release/Newtonsoft.Json.xml
/home/mike/tytd-server/bin/Release/System.Buffers.xml
/home/mike/tytd-server/bin/Release/System.Numerics.Vectors.xml
@ -706,15 +699,9 @@
/home/mike/tytd-server/bin/Release/YoutubeExplode.xml
/home/mike/tytd-server/bin/Release/SimpleHTTP.xml
/home/mike/tytd-server/bin/Release/AsyncEnumerable.xml
/home/mike/tytd-server/bin/Release/Common.Logging.Core.pdb
/home/mike/tytd-server/bin/Release/Common.Logging.pdb
/home/mike/tytd-server/bin/Release/Common.Logging.xml
/home/mike/tytd-server/bin/Release/SimpleBase.pdb
/home/mike/tytd-server/bin/Release/ExposedObject.pdb
/home/mike/tytd-server/bin/Release/Jurassic.xml
/home/mike/tytd-server/bin/Release/Flurl.pdb
/home/mike/tytd-server/bin/Release/Flurl.xml
/home/mike/tytd-server/obj/x86/Release/youtube-downloader.csprojAssemblyReference.cache
/home/mike/tytd-server/obj/x86/Release/youtube-downloader.csproj.CoreCompileInputs.cache
/home/mike/tytd-server/obj/x86/Release/youtube-downloader.csproj.CopyComplete
/home/mike/tytd-server/obj/x86/Release/youtube-downloader.exe
/home/mike/tytd-server/bin/Release/System.Text.Encoding.CodePages.xml

View File

@ -1,37 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="AngleSharp" version="0.14.0" targetFramework="net47" />
<package id="AngleSharp" version="0.16.1" targetFramework="net47" />
<package id="AsyncEnumerator" version="4.0.2" targetFramework="net47" />
<package id="Common.Logging" version="3.4.1" targetFramework="net47" />
<package id="Common.Logging.Core" version="3.4.1" targetFramework="net47" />
<package id="CookiesTxtParser" version="1.0.1" targetFramework="net47" />
<package id="ExposedObject" version="2.1.0" targetFramework="net47" />
<package id="Flurl" version="3.0.2" targetFramework="net47" />
<package id="Jurassic" version="3.2.4" targetFramework="net47" />
<package id="Microsoft.Bcl.AsyncInterfaces" version="6.0.0" targetFramework="net47" />
<package id="Microsoft.CSharp" version="4.0.1" targetFramework="net47" />
<package id="MimeTypesMap" version="1.0.2" targetFramework="net47" />
<package id="Microsoft.CSharp" version="4.7.0" targetFramework="net47" />
<package id="MimeTypesMap" version="1.0.8" targetFramework="net47" />
<package id="Newtonsoft.Json" version="13.0.1" targetFramework="net47" />
<package id="SimpleBase" version="1.3.1" targetFramework="net47" />
<package id="Simple-HTTP" version="1.0.6" targetFramework="net47" />
<package id="Stef.Validation" version="0.0.4" targetFramework="net47" />
<package id="System.Buffers" version="4.5.1" targetFramework="net47" />
<package id="System.IO" version="4.3.0" targetFramework="net47" />
<package id="System.Memory" version="4.5.4" targetFramework="net47" />
<package id="System.Net.Http" version="4.3.3" targetFramework="net47" />
<package id="System.Net.Http" version="4.3.4" targetFramework="net47" />
<package id="System.Numerics.Vectors" version="4.5.0" targetFramework="net47" />
<package id="System.Reflection.Emit.Lightweight" version="4.3.0" targetFramework="net47" />
<package id="System.Runtime" version="4.3.0" targetFramework="net47" />
<package id="System.Runtime" version="4.3.1" targetFramework="net47" />
<package id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" targetFramework="net47" />
<package id="System.Security.Cryptography.Algorithms" version="4.3.0" targetFramework="net47" />
<package id="System.Security.Cryptography.Algorithms" version="4.3.1" targetFramework="net47" />
<package id="System.Security.Cryptography.Encoding" version="4.3.0" targetFramework="net47" />
<package id="System.Security.Cryptography.Primitives" version="4.3.0" targetFramework="net47" />
<package id="System.Security.Cryptography.X509Certificates" version="4.3.0" targetFramework="net47" />
<package id="System.Text.Encoding.CodePages" version="4.5.0" targetFramework="net47" />
<package id="System.Security.Cryptography.X509Certificates" version="4.3.2" targetFramework="net47" />
<package id="System.Text.Encoding.CodePages" version="5.0.0" targetFramework="net47" />
<package id="System.Text.Encodings.Web" version="6.0.0" targetFramework="net47" />
<package id="System.Text.Json" version="6.0.0" targetFramework="net47" />
<package id="System.Text.Json" version="6.0.1" targetFramework="net47" />
<package id="System.Threading.Tasks.Extensions" version="4.5.4" targetFramework="net47" />
<package id="System.ValueTuple" version="4.5.0" targetFramework="net47" />
<package id="YoutubeExplode" version="6.0.5" targetFramework="net47" />
<package id="YoutubeExplode.Extensions" version="0.0.2" targetFramework="net47" />
<package id="YoutubeExplode" version="6.0.7" targetFramework="net47" />
</packages>

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,907 +0,0 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Common.Logging.Core</name>
</assembly>
<members>
<member name="T:Common.Logging.Factory.StringFormatMethodAttribute">
<summary>
Indicates that the marked method builds string by format pattern and (optional) arguments.
Parameter, which contains format string, should be given in constructor. The format string
should be in <see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])"/>-like form
</summary>
<example><code>
[StringFormatMethod("message")]
public void ShowError(string message, params object[] args) { /* do something */ }
public void Foo() {
ShowError("Failed: {0}"); // Warning: Non-existing argument in format string
}
</code></example>
</member>
<member name="M:Common.Logging.Factory.StringFormatMethodAttribute.#ctor(System.String)">
<param name="formatParameterName">
Specifies which parameter of an annotated method should be treated as format-string
</param>
</member>
<member name="P:Common.Logging.Factory.StringFormatMethodAttribute.FormatParameterName">
<summary>
The name of the string parameter being formatted
</summary>
</member>
<member name="T:Common.Logging.FormatMessageHandler">
<summary>
The type of method that is passed into e.g. <see cref="M:Common.Logging.ILog.Debug(System.Action{Common.Logging.FormatMessageHandler})"/>
and allows the callback method to "submit" it's message to the underlying output system.
</summary>
<param name="format">the format argument as in <see cref="M:System.String.Format(System.String,System.Object[])"/></param>
<param name="args">the argument list as in <see cref="M:System.String.Format(System.String,System.Object[])"/></param>
<seealso cref="T:Common.Logging.ILog"/>
<author>Erich Eichinger</author>
</member>
<member name="T:Common.Logging.IConfigurationReader">
<summary>
Interface for basic operations to read .NET application configuration information.
</summary>
<remarks>Provides a simple abstraction to handle BCL API differences between .NET 1.x and 2.0. Also
useful for testing scenarios.</remarks>
<author>Mark Pollack</author>
</member>
<member name="M:Common.Logging.IConfigurationReader.GetSection(System.String)">
<summary>
Parses the configuration section and returns the resulting object.
</summary>
<remarks>
<p>
Primary purpose of this method is to allow us to parse and
load configuration sections using the same API regardless
of the .NET framework version.
</p>
See also <c>System.Configuration.ConfigurationManager</c>
</remarks>
<param name="sectionName">Name of the configuration section.</param>
<returns>Object created by a corresponding IConfigurationSectionHandler.</returns>
</member>
<member name="T:Common.Logging.ILog">
<summary>
A simple logging interface abstracting logging APIs.
</summary>
<remarks>
<para>
Implementations should defer calling a message's <see cref="M:System.Object.ToString"/> until the message really needs
to be logged to avoid performance penalties.
</para>
<para>
Each <see cref="T:Common.Logging.ILog"/> log method offers to pass in a <see cref="T:System.Action`1"/> instead of the actual message.
Using this style has the advantage to defer possibly expensive message argument evaluation and formatting (and formatting arguments!) until the message gets
actually logged. If the message is not logged at all (e.g. due to <see cref="T:Common.Logging.LogLevel"/> settings),
you won't have to pay the peformance penalty of creating the message.
</para>
</remarks>
<example>
The example below demonstrates using callback style for creating the message, where the call to the
<see cref="M:System.Random.NextDouble"/> and the underlying <see cref="M:System.String.Format(System.String,System.Object[])"/> only happens, if level <see cref="F:Common.Logging.LogLevel.Debug"/> is enabled:
<code>
Log.Debug( m=&gt;m(&quot;result is {0}&quot;, random.NextDouble()) );
Log.Debug(delegate(m) { m(&quot;result is {0}&quot;, random.NextDouble()); });
</code>
</example>
<seealso cref="T:System.Action`1"/>
<author>Mark Pollack</author>
<author>Bruno Baia</author>
<author>Erich Eichinger</author>
</member>
<member name="M:Common.Logging.ILog.Trace(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Trace(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Trace"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.TraceFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.TraceFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.TraceFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.TraceFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Trace(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Trace(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Trace(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Trace(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Debug"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.DebugFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.DebugFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.DebugFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.DebugFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack Debug.</param>
</member>
<member name="M:Common.Logging.ILog.Info(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Info(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Info"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.InfoFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.InfoFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.InfoFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.InfoFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Info(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Info(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Info(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Info(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack Info.</param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Warn"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.WarnFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.WarnFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.WarnFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.WarnFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack Warn.</param>
</member>
<member name="M:Common.Logging.ILog.Error(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Error(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Error"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.ErrorFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.ErrorFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.ErrorFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.ErrorFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Error(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Error(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Error(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Error(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack Error.</param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.FatalFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.FatalFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.FatalFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.FatalFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack Fatal.</param>
</member>
<member name="P:Common.Logging.ILog.IsTraceEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.IsDebugEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.IsErrorEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.IsFatalEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.IsInfoEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.IsWarnEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.GlobalVariablesContext">
<summary>
Returns the global context for variables
</summary>
</member>
<member name="P:Common.Logging.ILog.ThreadVariablesContext">
<summary>
Returns the thread-specific context for variables
</summary>
</member>
<member name="P:Common.Logging.ILog.NestedThreadVariablesContext">
<summary>
Returns the thread-specific context for nested variables (for NDC, eg.)
</summary>
</member>
<member name="T:Common.Logging.ILoggerFactoryAdapter">
<summary>
LoggerFactoryAdapter interface is used internally by LogManager
Only developers wishing to write new Common.Logging adapters need to
worry about this interface.
</summary>
<author>Gilles Bayon</author>
</member>
<member name="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.Type)">
<summary>
Get a ILog instance by type.
</summary>
<param name="type">The type to use for the logger</param>
<returns></returns>
</member>
<member name="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.String)">
<summary>
Get a ILog instance by key.
</summary>
<param name="key">The key of the logger</param>
<returns></returns>
</member>
<member name="T:Common.Logging.ILogManager">
<summary>
Interface for LogManager
</summary>
</member>
<member name="P:Common.Logging.ILogManager.COMMON_LOGGING_SECTION">
<summary>
The key of the default configuration section to read settings from.
</summary>
<remarks>
You can always change the source of your configuration settings by setting another <see cref="T:Common.Logging.IConfigurationReader"/> instance
on <see cref="P:Common.Logging.ILogManager.ConfigurationReader"/>.
</remarks>
</member>
<member name="M:Common.Logging.ILogManager.Reset">
<summary>
Reset the <see cref="N:Common.Logging" /> infrastructure to its default settings. This means, that configuration settings
will be re-read from section <c>&lt;common/logging&gt;</c> of your <c>app.config</c>.
</summary>
<remarks>
This is mainly used for unit testing, you wouldn't normally use this in your applications.<br/>
<b>Note:</b><see cref="T:Common.Logging.ILog"/> instances already handed out from this LogManager are not(!) affected.
Resetting LogManager only affects new instances being handed out.
</remarks>
</member>
<member name="M:Common.Logging.ILogManager.Reset(Common.Logging.IConfigurationReader)">
<summary>
Reset the <see cref="N:Common.Logging" /> infrastructure to its default settings. This means, that configuration settings
will be re-read from section <c>&lt;common/logging&gt;</c> of your <c>app.config</c>.
</summary>
<remarks>
This is mainly used for unit testing, you wouldn't normally use this in your applications.<br/>
<b>Note:</b><see cref="T:Common.Logging.ILog"/> instances already handed out from this LogManager are not(!) affected.
Resetting LogManager only affects new instances being handed out.
</remarks>
<param name="reader">
the <see cref="T:Common.Logging.IConfigurationReader"/> instance to obtain settings for
re-initializing the LogManager.
</param>
</member>
<member name="P:Common.Logging.ILogManager.ConfigurationReader">
<summary>
Gets the configuration reader used to initialize the LogManager.
</summary>
<remarks>Primarily used for testing purposes but maybe useful to obtain configuration
information from some place other than the .NET application configuration file.</remarks>
<value>The configuration reader.</value>
</member>
<member name="P:Common.Logging.ILogManager.Adapter">
<summary>
Gets or sets the adapter.
</summary>
<value>The adapter.</value>
</member>
<member name="M:Common.Logging.ILogManager.GetCurrentClassLogger">
<summary>
Gets the logger by calling <see cref="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.Type)"/>
on the currently configured <see cref="P:Common.Logging.ILogManager.Adapter"/> using the type of the calling class.
</summary>
<remarks>
This method needs to inspect the StackTrace in order to determine the calling
class. This of course comes with a performance penalty, thus you shouldn't call it too
often in your application.
</remarks>
<seealso cref="M:Common.Logging.ILogManager.GetLogger(System.Type)"/>
<returns>the logger instance obtained from the current <see cref="P:Common.Logging.ILogManager.Adapter"/></returns>
</member>
<member name="M:Common.Logging.ILogManager.GetLogger``1">
<summary>
Gets the logger by calling <see cref="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.Type)"/>
on the currently configured <see cref="P:Common.Logging.ILogManager.Adapter"/> using the specified type.
</summary>
<returns>the logger instance obtained from the current <see cref="P:Common.Logging.ILogManager.Adapter"/></returns>
</member>
<member name="M:Common.Logging.ILogManager.GetLogger(System.Type)">
<summary>
Gets the logger by calling <see cref="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.Type)"/>
on the currently configured <see cref="P:Common.Logging.ILogManager.Adapter"/> using the specified type.
</summary>
<param name="type">The type.</param>
<returns>the logger instance obtained from the current <see cref="P:Common.Logging.ILogManager.Adapter"/></returns>
</member>
<member name="M:Common.Logging.ILogManager.GetLogger(System.String)">
<summary>
Gets the logger by calling <see cref="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.String)"/>
on the currently configured <see cref="P:Common.Logging.ILogManager.Adapter"/> using the specified key.
</summary>
<param name="key">The key.</param>
<returns>the logger instance obtained from the current <see cref="P:Common.Logging.ILogManager.Adapter"/></returns>
</member>
<member name="T:Common.Logging.INestedVariablesContext">
<summary>
A context for logger variables
</summary>
</member>
<member name="M:Common.Logging.INestedVariablesContext.Push(System.String)">
<summary>Pushes a new context message into this stack.</summary>
<param name="text">The new context message text.</param>
<returns>
An <see cref="T:System.IDisposable" /> that can be used to clean up the context stack.
</returns>
</member>
<member name="M:Common.Logging.INestedVariablesContext.Pop">
<summary>Removes the top context from this stack.</summary>
<returns>The message in the context that was removed from the top of this stack.</returns>
</member>
<member name="M:Common.Logging.INestedVariablesContext.Clear">
<summary>
Remove all items from nested context
</summary>
</member>
<member name="P:Common.Logging.INestedVariablesContext.HasItems">
<summary>
Returns true if there is at least one item in the nested context; false, if empty
</summary>
</member>
<member name="T:Common.Logging.IVariablesContext">
<summary>
A context for logger variables
</summary>
</member>
<member name="M:Common.Logging.IVariablesContext.Set(System.String,System.Object)">
<summary>
Sets the value of a new or existing variable within the context
</summary>
<param name="key">The key of the variable that is to be added</param>
<param name="value">The value to add</param>
</member>
<member name="M:Common.Logging.IVariablesContext.Get(System.String)">
<summary>
Gets the value of a variable within the context
</summary>
<param name="key">The key of the variable to get</param>
<returns>The value or null if not found</returns>
</member>
<member name="M:Common.Logging.IVariablesContext.Contains(System.String)">
<summary>
Checks if a variable is set within the context
</summary>
<param name="key">The key of the variable to check for</param>
<returns>True if the variable is set</returns>
</member>
<member name="M:Common.Logging.IVariablesContext.Remove(System.String)">
<summary>
Removes a variable from the context by key
</summary>
<param name="key">The key of the variable to remove</param>
</member>
<member name="M:Common.Logging.IVariablesContext.Clear">
<summary>
Clears the context variables
</summary>
</member>
<member name="T:Common.Logging.LogLevel">
<summary>
The 7 possible logging levels
</summary>
<author>Gilles Bayon</author>
</member>
<member name="F:Common.Logging.LogLevel.All">
<summary>
All logging levels
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Trace">
<summary>
A trace logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Debug">
<summary>
A debug logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Info">
<summary>
A info logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Warn">
<summary>
A warn logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Error">
<summary>
An error logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Fatal">
<summary>
A fatal logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Off">
<summary>
Do not log anything.
</summary>
</member>
</members>
</doc>

View File

@ -1,907 +0,0 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Common.Logging.Core</name>
</assembly>
<members>
<member name="T:Common.Logging.FormatMessageHandler">
<summary>
The type of method that is passed into e.g. <see cref="M:Common.Logging.ILog.Debug(System.Action{Common.Logging.FormatMessageHandler})"/>
and allows the callback method to "submit" it's message to the underlying output system.
</summary>
<param name="format">the format argument as in <see cref="M:System.String.Format(System.String,System.Object[])"/></param>
<param name="args">the argument list as in <see cref="M:System.String.Format(System.String,System.Object[])"/></param>
<seealso cref="T:Common.Logging.ILog"/>
<author>Erich Eichinger</author>
</member>
<member name="T:Common.Logging.IConfigurationReader">
<summary>
Interface for basic operations to read .NET application configuration information.
</summary>
<remarks>Provides a simple abstraction to handle BCL API differences between .NET 1.x and 2.0. Also
useful for testing scenarios.</remarks>
<author>Mark Pollack</author>
</member>
<member name="M:Common.Logging.IConfigurationReader.GetSection(System.String)">
<summary>
Parses the configuration section and returns the resulting object.
</summary>
<remarks>
<p>
Primary purpose of this method is to allow us to parse and
load configuration sections using the same API regardless
of the .NET framework version.
</p>
See also <c>System.Configuration.ConfigurationManager</c>
</remarks>
<param name="sectionName">Name of the configuration section.</param>
<returns>Object created by a corresponding IConfigurationSectionHandler.</returns>
</member>
<member name="T:Common.Logging.ILog">
<summary>
A simple logging interface abstracting logging APIs.
</summary>
<remarks>
<para>
Implementations should defer calling a message's <see cref="M:System.Object.ToString"/> until the message really needs
to be logged to avoid performance penalties.
</para>
<para>
Each <see cref="T:Common.Logging.ILog"/> log method offers to pass in a <see cref="T:System.Action`1"/> instead of the actual message.
Using this style has the advantage to defer possibly expensive message argument evaluation and formatting (and formatting arguments!) until the message gets
actually logged. If the message is not logged at all (e.g. due to <see cref="T:Common.Logging.LogLevel"/> settings),
you won't have to pay the peformance penalty of creating the message.
</para>
</remarks>
<example>
The example below demonstrates using callback style for creating the message, where the call to the
<see cref="!:Random.NextDouble"/> and the underlying <see cref="M:System.String.Format(System.String,System.Object[])"/> only happens, if level <see cref="F:Common.Logging.LogLevel.Debug"/> is enabled:
<code>
Log.Debug( m=&gt;m(&quot;result is {0}&quot;, random.NextDouble()) );
Log.Debug(delegate(m) { m(&quot;result is {0}&quot;, random.NextDouble()); });
</code>
</example>
<seealso cref="T:System.Action`1"/>
<author>Mark Pollack</author>
<author>Bruno Baia</author>
<author>Erich Eichinger</author>
</member>
<member name="M:Common.Logging.ILog.Trace(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Trace(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Trace"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.TraceFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.TraceFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.TraceFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.TraceFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Trace(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Trace(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Trace(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Trace(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Debug"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.DebugFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.DebugFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.DebugFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.DebugFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack Debug.</param>
</member>
<member name="M:Common.Logging.ILog.Info(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Info(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Info"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.InfoFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.InfoFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.InfoFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.InfoFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Info(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Info(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Info(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Info(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack Info.</param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Warn"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.WarnFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.WarnFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.WarnFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.WarnFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack Warn.</param>
</member>
<member name="M:Common.Logging.ILog.Error(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Error(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Error"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.ErrorFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.ErrorFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.ErrorFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.ErrorFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Error(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Error(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Error(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Error(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack Error.</param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.FatalFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.FatalFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.FatalFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.FatalFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack Fatal.</param>
</member>
<member name="P:Common.Logging.ILog.IsTraceEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.IsDebugEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.IsErrorEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.IsFatalEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.IsInfoEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.IsWarnEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.GlobalVariablesContext">
<summary>
Returns the global context for variables
</summary>
</member>
<member name="P:Common.Logging.ILog.ThreadVariablesContext">
<summary>
Returns the thread-specific context for variables
</summary>
</member>
<member name="P:Common.Logging.ILog.NestedThreadVariablesContext">
<summary>
Returns the thread-specific context for nested variables (for NDC, eg.)
</summary>
</member>
<member name="T:Common.Logging.ILoggerFactoryAdapter">
<summary>
LoggerFactoryAdapter interface is used internally by LogManager
Only developers wishing to write new Common.Logging adapters need to
worry about this interface.
</summary>
<author>Gilles Bayon</author>
</member>
<member name="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.Type)">
<summary>
Get a ILog instance by type.
</summary>
<param name="type">The type to use for the logger</param>
<returns></returns>
</member>
<member name="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.String)">
<summary>
Get a ILog instance by key.
</summary>
<param name="key">The key of the logger</param>
<returns></returns>
</member>
<member name="T:Common.Logging.ILogManager">
<summary>
Interface for LogManager
</summary>
</member>
<member name="P:Common.Logging.ILogManager.COMMON_LOGGING_SECTION">
<summary>
The key of the default configuration section to read settings from.
</summary>
<remarks>
You can always change the source of your configuration settings by setting another <see cref="T:Common.Logging.IConfigurationReader"/> instance
on <see cref="P:Common.Logging.ILogManager.ConfigurationReader"/>.
</remarks>
</member>
<member name="M:Common.Logging.ILogManager.Reset">
<summary>
Reset the <see cref="N:Common.Logging" /> infrastructure to its default settings. This means, that configuration settings
will be re-read from section <c>&lt;common/logging&gt;</c> of your <c>app.config</c>.
</summary>
<remarks>
This is mainly used for unit testing, you wouldn't normally use this in your applications.<br/>
<b>Note:</b><see cref="T:Common.Logging.ILog"/> instances already handed out from this LogManager are not(!) affected.
Resetting LogManager only affects new instances being handed out.
</remarks>
</member>
<member name="M:Common.Logging.ILogManager.Reset(Common.Logging.IConfigurationReader)">
<summary>
Reset the <see cref="N:Common.Logging" /> infrastructure to its default settings. This means, that configuration settings
will be re-read from section <c>&lt;common/logging&gt;</c> of your <c>app.config</c>.
</summary>
<remarks>
This is mainly used for unit testing, you wouldn't normally use this in your applications.<br/>
<b>Note:</b><see cref="T:Common.Logging.ILog"/> instances already handed out from this LogManager are not(!) affected.
Resetting LogManager only affects new instances being handed out.
</remarks>
<param name="reader">
the <see cref="T:Common.Logging.IConfigurationReader"/> instance to obtain settings for
re-initializing the LogManager.
</param>
</member>
<member name="P:Common.Logging.ILogManager.ConfigurationReader">
<summary>
Gets the configuration reader used to initialize the LogManager.
</summary>
<remarks>Primarily used for testing purposes but maybe useful to obtain configuration
information from some place other than the .NET application configuration file.</remarks>
<value>The configuration reader.</value>
</member>
<member name="P:Common.Logging.ILogManager.Adapter">
<summary>
Gets or sets the adapter.
</summary>
<value>The adapter.</value>
</member>
<member name="M:Common.Logging.ILogManager.GetCurrentClassLogger">
<summary>
Gets the logger by calling <see cref="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.Type)"/>
on the currently configured <see cref="P:Common.Logging.ILogManager.Adapter"/> using the type of the calling class.
</summary>
<remarks>
This method needs to inspect the StackTrace in order to determine the calling
class. This of course comes with a performance penalty, thus you shouldn't call it too
often in your application.
</remarks>
<seealso cref="M:Common.Logging.ILogManager.GetLogger(System.Type)"/>
<returns>the logger instance obtained from the current <see cref="P:Common.Logging.ILogManager.Adapter"/></returns>
</member>
<member name="M:Common.Logging.ILogManager.GetLogger``1">
<summary>
Gets the logger by calling <see cref="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.Type)"/>
on the currently configured <see cref="P:Common.Logging.ILogManager.Adapter"/> using the specified type.
</summary>
<returns>the logger instance obtained from the current <see cref="P:Common.Logging.ILogManager.Adapter"/></returns>
</member>
<member name="M:Common.Logging.ILogManager.GetLogger(System.Type)">
<summary>
Gets the logger by calling <see cref="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.Type)"/>
on the currently configured <see cref="P:Common.Logging.ILogManager.Adapter"/> using the specified type.
</summary>
<param name="type">The type.</param>
<returns>the logger instance obtained from the current <see cref="P:Common.Logging.ILogManager.Adapter"/></returns>
</member>
<member name="M:Common.Logging.ILogManager.GetLogger(System.String)">
<summary>
Gets the logger by calling <see cref="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.String)"/>
on the currently configured <see cref="P:Common.Logging.ILogManager.Adapter"/> using the specified key.
</summary>
<param name="key">The key.</param>
<returns>the logger instance obtained from the current <see cref="P:Common.Logging.ILogManager.Adapter"/></returns>
</member>
<member name="T:Common.Logging.INestedVariablesContext">
<summary>
A context for logger variables
</summary>
</member>
<member name="M:Common.Logging.INestedVariablesContext.Push(System.String)">
<summary>Pushes a new context message into this stack.</summary>
<param name="text">The new context message text.</param>
<returns>
An <see cref="T:System.IDisposable" /> that can be used to clean up the context stack.
</returns>
</member>
<member name="M:Common.Logging.INestedVariablesContext.Pop">
<summary>Removes the top context from this stack.</summary>
<returns>The message in the context that was removed from the top of this stack.</returns>
</member>
<member name="M:Common.Logging.INestedVariablesContext.Clear">
<summary>
Remove all items from nested context
</summary>
</member>
<member name="P:Common.Logging.INestedVariablesContext.HasItems">
<summary>
Returns true if there is at least one item in the nested context; false, if empty
</summary>
</member>
<member name="T:Common.Logging.IVariablesContext">
<summary>
A context for logger variables
</summary>
</member>
<member name="M:Common.Logging.IVariablesContext.Set(System.String,System.Object)">
<summary>
Sets the value of a new or existing variable within the context
</summary>
<param name="key">The key of the variable that is to be added</param>
<param name="value">The value to add</param>
</member>
<member name="M:Common.Logging.IVariablesContext.Get(System.String)">
<summary>
Gets the value of a variable within the context
</summary>
<param name="key">The key of the variable to get</param>
<returns>The value or null if not found</returns>
</member>
<member name="M:Common.Logging.IVariablesContext.Contains(System.String)">
<summary>
Checks if a variable is set within the context
</summary>
<param name="key">The key of the variable to check for</param>
<returns>True if the variable is set</returns>
</member>
<member name="M:Common.Logging.IVariablesContext.Remove(System.String)">
<summary>
Removes a variable from the context by key
</summary>
<param name="key">The key of the variable to remove</param>
</member>
<member name="M:Common.Logging.IVariablesContext.Clear">
<summary>
Clears the context variables
</summary>
</member>
<member name="T:Common.Logging.LogLevel">
<summary>
The 7 possible logging levels
</summary>
<author>Gilles Bayon</author>
</member>
<member name="F:Common.Logging.LogLevel.All">
<summary>
All logging levels
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Trace">
<summary>
A trace logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Debug">
<summary>
A debug logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Info">
<summary>
A info logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Warn">
<summary>
A warn logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Error">
<summary>
An error logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Fatal">
<summary>
A fatal logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Off">
<summary>
Do not log anything.
</summary>
</member>
<member name="T:Common.Logging.Factory.StringFormatMethodAttribute">
<summary>
Indicates that the marked method builds string by format pattern and (optional) arguments.
Parameter, which contains format string, should be given in constructor. The format string
should be in <see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])"/>-like form
</summary>
<example><code>
[StringFormatMethod("message")]
public void ShowError(string message, params object[] args) { /* do something */ }
public void Foo() {
ShowError("Failed: {0}"); // Warning: Non-existing argument in format string
}
</code></example>
</member>
<member name="M:Common.Logging.Factory.StringFormatMethodAttribute.#ctor(System.String)">
<param name="formatParameterName">
Specifies which parameter of an annotated method should be treated as format-string
</param>
</member>
<member name="P:Common.Logging.Factory.StringFormatMethodAttribute.FormatParameterName">
<summary>
The name of the string parameter being formatted
</summary>
</member>
</members>
</doc>

View File

@ -1,907 +0,0 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Common.Logging.Core</name>
</assembly>
<members>
<member name="T:Common.Logging.Factory.StringFormatMethodAttribute">
<summary>
Indicates that the marked method builds string by format pattern and (optional) arguments.
Parameter, which contains format string, should be given in constructor. The format string
should be in <see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])"/>-like form
</summary>
<example><code>
[StringFormatMethod("message")]
public void ShowError(string message, params object[] args) { /* do something */ }
public void Foo() {
ShowError("Failed: {0}"); // Warning: Non-existing argument in format string
}
</code></example>
</member>
<member name="M:Common.Logging.Factory.StringFormatMethodAttribute.#ctor(System.String)">
<param name="formatParameterName">
Specifies which parameter of an annotated method should be treated as format-string
</param>
</member>
<member name="P:Common.Logging.Factory.StringFormatMethodAttribute.FormatParameterName">
<summary>
The name of the string parameter being formatted
</summary>
</member>
<member name="T:Common.Logging.FormatMessageHandler">
<summary>
The type of method that is passed into e.g. <see cref="M:Common.Logging.ILog.Debug(System.Action{Common.Logging.FormatMessageHandler})"/>
and allows the callback method to "submit" it's message to the underlying output system.
</summary>
<param name="format">the format argument as in <see cref="M:System.String.Format(System.String,System.Object[])"/></param>
<param name="args">the argument list as in <see cref="M:System.String.Format(System.String,System.Object[])"/></param>
<seealso cref="T:Common.Logging.ILog"/>
<author>Erich Eichinger</author>
</member>
<member name="T:Common.Logging.IConfigurationReader">
<summary>
Interface for basic operations to read .NET application configuration information.
</summary>
<remarks>Provides a simple abstraction to handle BCL API differences between .NET 1.x and 2.0. Also
useful for testing scenarios.</remarks>
<author>Mark Pollack</author>
</member>
<member name="M:Common.Logging.IConfigurationReader.GetSection(System.String)">
<summary>
Parses the configuration section and returns the resulting object.
</summary>
<remarks>
<p>
Primary purpose of this method is to allow us to parse and
load configuration sections using the same API regardless
of the .NET framework version.
</p>
See also <c>System.Configuration.ConfigurationManager</c>
</remarks>
<param name="sectionName">Name of the configuration section.</param>
<returns>Object created by a corresponding IConfigurationSectionHandler.</returns>
</member>
<member name="T:Common.Logging.ILog">
<summary>
A simple logging interface abstracting logging APIs.
</summary>
<remarks>
<para>
Implementations should defer calling a message's <see cref="M:System.Object.ToString"/> until the message really needs
to be logged to avoid performance penalties.
</para>
<para>
Each <see cref="T:Common.Logging.ILog"/> log method offers to pass in a <see cref="T:System.Action`1"/> instead of the actual message.
Using this style has the advantage to defer possibly expensive message argument evaluation and formatting (and formatting arguments!) until the message gets
actually logged. If the message is not logged at all (e.g. due to <see cref="T:Common.Logging.LogLevel"/> settings),
you won't have to pay the peformance penalty of creating the message.
</para>
</remarks>
<example>
The example below demonstrates using callback style for creating the message, where the call to the
<see cref="M:System.Random.NextDouble"/> and the underlying <see cref="M:System.String.Format(System.String,System.Object[])"/> only happens, if level <see cref="F:Common.Logging.LogLevel.Debug"/> is enabled:
<code>
Log.Debug( m=&gt;m(&quot;result is {0}&quot;, random.NextDouble()) );
Log.Debug(delegate(m) { m(&quot;result is {0}&quot;, random.NextDouble()); });
</code>
</example>
<seealso cref="T:System.Action`1"/>
<author>Mark Pollack</author>
<author>Bruno Baia</author>
<author>Erich Eichinger</author>
</member>
<member name="M:Common.Logging.ILog.Trace(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Trace(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Trace"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.TraceFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.TraceFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.TraceFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.TraceFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Trace(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Trace(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Trace(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Trace(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Trace"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Debug"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.DebugFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.DebugFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.DebugFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.DebugFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Debug(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Debug"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack Debug.</param>
</member>
<member name="M:Common.Logging.ILog.Info(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Info(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Info"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.InfoFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.InfoFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.InfoFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.InfoFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Info(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Info(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Info(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Info(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Info"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack Info.</param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Warn"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.WarnFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.WarnFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.WarnFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.WarnFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Warn(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Warn"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack Warn.</param>
</member>
<member name="M:Common.Logging.ILog.Error(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Error(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Error"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.ErrorFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.ErrorFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.ErrorFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.ErrorFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Error(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Error(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Error(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Error(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Error"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack Error.</param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.Object)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
<param name="message">The message object to log.</param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.Object,System.Exception)">
<summary>
Log a message object with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level including
the stack trace of the <see cref="T:System.Exception"/> passed
as a parameter.
</summary>
<param name="message">The message object to log.</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.FatalFormat(System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.FatalFormat(System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args">the list of format arguments</param>
</member>
<member name="M:Common.Logging.ILog.FatalFormat(System.IFormatProvider,System.String,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.FatalFormat(System.IFormatProvider,System.String,System.Exception,System.Object[])">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="format">The format of the message object to log.<see cref="M:System.String.Format(System.String,System.Object[])"/> </param>
<param name="exception">The exception to log.</param>
<param name="args"></param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack trace.</param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler})">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
</member>
<member name="M:Common.Logging.ILog.Fatal(System.IFormatProvider,System.Action{Common.Logging.FormatMessageHandler},System.Exception)">
<summary>
Log a message with the <see cref="F:Common.Logging.LogLevel.Fatal"/> level using a callback to obtain the message
</summary>
<remarks>
Using this method avoids the cost of creating a message and evaluating message arguments
that probably won't be logged due to loglevel settings.
</remarks>
<param name="formatProvider">An <see cref="T:System.IFormatProvider"/> that supplies culture-specific formatting information.</param>
<param name="formatMessageCallback">A callback used by the logger to obtain the message if log level is matched</param>
<param name="exception">The exception to log, including its stack Fatal.</param>
</member>
<member name="P:Common.Logging.ILog.IsTraceEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Trace"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.IsDebugEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Debug"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.IsErrorEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Error"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.IsFatalEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Fatal"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.IsInfoEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Info"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.IsWarnEnabled">
<summary>
Checks if this logger is enabled for the <see cref="F:Common.Logging.LogLevel.Warn"/> level.
</summary>
</member>
<member name="P:Common.Logging.ILog.GlobalVariablesContext">
<summary>
Returns the global context for variables
</summary>
</member>
<member name="P:Common.Logging.ILog.ThreadVariablesContext">
<summary>
Returns the thread-specific context for variables
</summary>
</member>
<member name="P:Common.Logging.ILog.NestedThreadVariablesContext">
<summary>
Returns the thread-specific context for nested variables (for NDC, eg.)
</summary>
</member>
<member name="T:Common.Logging.ILoggerFactoryAdapter">
<summary>
LoggerFactoryAdapter interface is used internally by LogManager
Only developers wishing to write new Common.Logging adapters need to
worry about this interface.
</summary>
<author>Gilles Bayon</author>
</member>
<member name="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.Type)">
<summary>
Get a ILog instance by type.
</summary>
<param name="type">The type to use for the logger</param>
<returns></returns>
</member>
<member name="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.String)">
<summary>
Get a ILog instance by key.
</summary>
<param name="key">The key of the logger</param>
<returns></returns>
</member>
<member name="T:Common.Logging.ILogManager">
<summary>
Interface for LogManager
</summary>
</member>
<member name="P:Common.Logging.ILogManager.COMMON_LOGGING_SECTION">
<summary>
The key of the default configuration section to read settings from.
</summary>
<remarks>
You can always change the source of your configuration settings by setting another <see cref="T:Common.Logging.IConfigurationReader"/> instance
on <see cref="P:Common.Logging.ILogManager.ConfigurationReader"/>.
</remarks>
</member>
<member name="M:Common.Logging.ILogManager.Reset">
<summary>
Reset the <see cref="N:Common.Logging" /> infrastructure to its default settings. This means, that configuration settings
will be re-read from section <c>&lt;common/logging&gt;</c> of your <c>app.config</c>.
</summary>
<remarks>
This is mainly used for unit testing, you wouldn't normally use this in your applications.<br/>
<b>Note:</b><see cref="T:Common.Logging.ILog"/> instances already handed out from this LogManager are not(!) affected.
Resetting LogManager only affects new instances being handed out.
</remarks>
</member>
<member name="M:Common.Logging.ILogManager.Reset(Common.Logging.IConfigurationReader)">
<summary>
Reset the <see cref="N:Common.Logging" /> infrastructure to its default settings. This means, that configuration settings
will be re-read from section <c>&lt;common/logging&gt;</c> of your <c>app.config</c>.
</summary>
<remarks>
This is mainly used for unit testing, you wouldn't normally use this in your applications.<br/>
<b>Note:</b><see cref="T:Common.Logging.ILog"/> instances already handed out from this LogManager are not(!) affected.
Resetting LogManager only affects new instances being handed out.
</remarks>
<param name="reader">
the <see cref="T:Common.Logging.IConfigurationReader"/> instance to obtain settings for
re-initializing the LogManager.
</param>
</member>
<member name="P:Common.Logging.ILogManager.ConfigurationReader">
<summary>
Gets the configuration reader used to initialize the LogManager.
</summary>
<remarks>Primarily used for testing purposes but maybe useful to obtain configuration
information from some place other than the .NET application configuration file.</remarks>
<value>The configuration reader.</value>
</member>
<member name="P:Common.Logging.ILogManager.Adapter">
<summary>
Gets or sets the adapter.
</summary>
<value>The adapter.</value>
</member>
<member name="M:Common.Logging.ILogManager.GetCurrentClassLogger">
<summary>
Gets the logger by calling <see cref="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.Type)"/>
on the currently configured <see cref="P:Common.Logging.ILogManager.Adapter"/> using the type of the calling class.
</summary>
<remarks>
This method needs to inspect the StackTrace in order to determine the calling
class. This of course comes with a performance penalty, thus you shouldn't call it too
often in your application.
</remarks>
<seealso cref="M:Common.Logging.ILogManager.GetLogger(System.Type)"/>
<returns>the logger instance obtained from the current <see cref="P:Common.Logging.ILogManager.Adapter"/></returns>
</member>
<member name="M:Common.Logging.ILogManager.GetLogger``1">
<summary>
Gets the logger by calling <see cref="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.Type)"/>
on the currently configured <see cref="P:Common.Logging.ILogManager.Adapter"/> using the specified type.
</summary>
<returns>the logger instance obtained from the current <see cref="P:Common.Logging.ILogManager.Adapter"/></returns>
</member>
<member name="M:Common.Logging.ILogManager.GetLogger(System.Type)">
<summary>
Gets the logger by calling <see cref="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.Type)"/>
on the currently configured <see cref="P:Common.Logging.ILogManager.Adapter"/> using the specified type.
</summary>
<param name="type">The type.</param>
<returns>the logger instance obtained from the current <see cref="P:Common.Logging.ILogManager.Adapter"/></returns>
</member>
<member name="M:Common.Logging.ILogManager.GetLogger(System.String)">
<summary>
Gets the logger by calling <see cref="M:Common.Logging.ILoggerFactoryAdapter.GetLogger(System.String)"/>
on the currently configured <see cref="P:Common.Logging.ILogManager.Adapter"/> using the specified key.
</summary>
<param name="key">The key.</param>
<returns>the logger instance obtained from the current <see cref="P:Common.Logging.ILogManager.Adapter"/></returns>
</member>
<member name="T:Common.Logging.INestedVariablesContext">
<summary>
A context for logger variables
</summary>
</member>
<member name="M:Common.Logging.INestedVariablesContext.Push(System.String)">
<summary>Pushes a new context message into this stack.</summary>
<param name="text">The new context message text.</param>
<returns>
An <see cref="T:System.IDisposable" /> that can be used to clean up the context stack.
</returns>
</member>
<member name="M:Common.Logging.INestedVariablesContext.Pop">
<summary>Removes the top context from this stack.</summary>
<returns>The message in the context that was removed from the top of this stack.</returns>
</member>
<member name="M:Common.Logging.INestedVariablesContext.Clear">
<summary>
Remove all items from nested context
</summary>
</member>
<member name="P:Common.Logging.INestedVariablesContext.HasItems">
<summary>
Returns true if there is at least one item in the nested context; false, if empty
</summary>
</member>
<member name="T:Common.Logging.IVariablesContext">
<summary>
A context for logger variables
</summary>
</member>
<member name="M:Common.Logging.IVariablesContext.Set(System.String,System.Object)">
<summary>
Sets the value of a new or existing variable within the context
</summary>
<param name="key">The key of the variable that is to be added</param>
<param name="value">The value to add</param>
</member>
<member name="M:Common.Logging.IVariablesContext.Get(System.String)">
<summary>
Gets the value of a variable within the context
</summary>
<param name="key">The key of the variable to get</param>
<returns>The value or null if not found</returns>
</member>
<member name="M:Common.Logging.IVariablesContext.Contains(System.String)">
<summary>
Checks if a variable is set within the context
</summary>
<param name="key">The key of the variable to check for</param>
<returns>True if the variable is set</returns>
</member>
<member name="M:Common.Logging.IVariablesContext.Remove(System.String)">
<summary>
Removes a variable from the context by key
</summary>
<param name="key">The key of the variable to remove</param>
</member>
<member name="M:Common.Logging.IVariablesContext.Clear">
<summary>
Clears the context variables
</summary>
</member>
<member name="T:Common.Logging.LogLevel">
<summary>
The 7 possible logging levels
</summary>
<author>Gilles Bayon</author>
</member>
<member name="F:Common.Logging.LogLevel.All">
<summary>
All logging levels
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Trace">
<summary>
A trace logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Debug">
<summary>
A debug logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Info">
<summary>
A info logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Warn">
<summary>
A warn logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Error">
<summary>
An error logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Fatal">
<summary>
A fatal logging level
</summary>
</member>
<member name="F:Common.Logging.LogLevel.Off">
<summary>
Do not log anything.
</summary>
</member>
</members>
</doc>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Binary file not shown.

View File

@ -1,883 +0,0 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Flurl</name>
</assembly>
<members>
<member name="T:Flurl.GeneratedExtensions">
<summary>
Fluent URL-building extension methods on String and Uri.
</summary>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegment(System.String,System.Object,System.Boolean)">
<summary>
Creates a new Url object from the string and appends a segment to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="url">This URL.</param>
<param name="segment">The segment to append</param>
<param name="fullyEncode">If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters).</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegments(System.String,System.Object[])">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="url">This URL.</param>
<param name="segments">The segments to append</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegments(System.String,System.Collections.Generic.IEnumerable{System.Object})">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="url">This URL.</param>
<param name="segments">The segments to append</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemovePathSegment(System.String)">
<summary>
Removes the last path segment from the URL.
</summary>
<param name="url">This URL.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemovePath(System.String)">
<summary>
Removes the entire path component of the URL.
</summary>
<param name="url">This URL.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.String,System.String,System.Object,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="url">This URL.</param>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.String,System.String,System.String,System.Boolean,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="url">This URL.</param>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="isEncoded">Set to true to indicate the value is already URL-encoded. Defaults to false.</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing).</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.String,System.String)">
<summary>
Creates a new Url object from the string and adds a parameter without a value to the query, removing any existing value.
</summary>
<param name="url">This URL.</param>
<param name="name">Name of query parameter</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.String,System.Object,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string, parses values object into name/value pairs, and adds them to the query, overwriting any that already exist.
</summary>
<param name="url">This URL.</param>
<param name="values">Typically an anonymous object, ie: new { x = 1, y = 2 }</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.String,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Creates a new Url object from the string and adds multiple parameters without values to the query.
</summary>
<param name="url">This URL.</param>
<param name="names">Names of query parameters.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.String,System.String[])">
<summary>
Creates a new Url object from the string and adds multiple parameters without values to the query.
</summary>
<param name="url">This URL.</param>
<param name="names">Names of query parameters</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParam(System.String,System.String)">
<summary>
Creates a new Url object from the string and removes a name/value pair from the query by name.
</summary>
<param name="url">This URL.</param>
<param name="name">Query string parameter name to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParams(System.String,System.String[])">
<summary>
Creates a new Url object from the string and removes multiple name/value pairs from the query by name.
</summary>
<param name="url">This URL.</param>
<param name="names">Query string parameter names to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParams(System.String,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Creates a new Url object from the string and removes multiple name/value pairs from the query by name.
</summary>
<param name="url">This URL.</param>
<param name="names">Query string parameter names to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQuery(System.String)">
<summary>
Removes the entire query component of the URL.
</summary>
<param name="url">This URL.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetFragment(System.String,System.String)">
<summary>
Set the URL fragment fluently.
</summary>
<param name="url">This URL.</param>
<param name="fragment">The part of the URL after #</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveFragment(System.String)">
<summary>
Removes the URL fragment including the #.
</summary>
<param name="url">This URL.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.ResetToRoot(System.String)">
<summary>
Trims the URL to its root, including the scheme, any user info, host, and port (if specified).
</summary>
<param name="url">This URL.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegment(System.Uri,System.Object,System.Boolean)">
<summary>
Creates a new Url object from the string and appends a segment to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="uri">This System.Uri.</param>
<param name="segment">The segment to append</param>
<param name="fullyEncode">If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters).</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegments(System.Uri,System.Object[])">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="uri">This System.Uri.</param>
<param name="segments">The segments to append</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegments(System.Uri,System.Collections.Generic.IEnumerable{System.Object})">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="uri">This System.Uri.</param>
<param name="segments">The segments to append</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemovePathSegment(System.Uri)">
<summary>
Removes the last path segment from the URL.
</summary>
<param name="uri">This System.Uri.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemovePath(System.Uri)">
<summary>
Removes the entire path component of the URL.
</summary>
<param name="uri">This System.Uri.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.Uri,System.String,System.Object,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="uri">This System.Uri.</param>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.Uri,System.String,System.String,System.Boolean,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="uri">This System.Uri.</param>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="isEncoded">Set to true to indicate the value is already URL-encoded. Defaults to false.</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing).</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.Uri,System.String)">
<summary>
Creates a new Url object from the string and adds a parameter without a value to the query, removing any existing value.
</summary>
<param name="uri">This System.Uri.</param>
<param name="name">Name of query parameter</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.Uri,System.Object,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string, parses values object into name/value pairs, and adds them to the query, overwriting any that already exist.
</summary>
<param name="uri">This System.Uri.</param>
<param name="values">Typically an anonymous object, ie: new { x = 1, y = 2 }</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.Uri,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Creates a new Url object from the string and adds multiple parameters without values to the query.
</summary>
<param name="uri">This System.Uri.</param>
<param name="names">Names of query parameters.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.Uri,System.String[])">
<summary>
Creates a new Url object from the string and adds multiple parameters without values to the query.
</summary>
<param name="uri">This System.Uri.</param>
<param name="names">Names of query parameters</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParam(System.Uri,System.String)">
<summary>
Creates a new Url object from the string and removes a name/value pair from the query by name.
</summary>
<param name="uri">This System.Uri.</param>
<param name="name">Query string parameter name to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParams(System.Uri,System.String[])">
<summary>
Creates a new Url object from the string and removes multiple name/value pairs from the query by name.
</summary>
<param name="uri">This System.Uri.</param>
<param name="names">Query string parameter names to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParams(System.Uri,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Creates a new Url object from the string and removes multiple name/value pairs from the query by name.
</summary>
<param name="uri">This System.Uri.</param>
<param name="names">Query string parameter names to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQuery(System.Uri)">
<summary>
Removes the entire query component of the URL.
</summary>
<param name="uri">This System.Uri.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetFragment(System.Uri,System.String)">
<summary>
Set the URL fragment fluently.
</summary>
<param name="uri">This System.Uri.</param>
<param name="fragment">The part of the URL after #</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveFragment(System.Uri)">
<summary>
Removes the URL fragment including the #.
</summary>
<param name="uri">This System.Uri.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.ResetToRoot(System.Uri)">
<summary>
Trims the URL to its root, including the scheme, any user info, host, and port (if specified).
</summary>
<param name="uri">This System.Uri.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="T:Flurl.NullValueHandling">
<summary>
Describes how to handle null values in query parameters.
</summary>
</member>
<member name="F:Flurl.NullValueHandling.NameOnly">
<summary>
Set as name without value in query string.
</summary>
</member>
<member name="F:Flurl.NullValueHandling.Remove">
<summary>
Don't add to query string, remove any existing value.
</summary>
</member>
<member name="F:Flurl.NullValueHandling.Ignore">
<summary>
Don't add to query string, but leave any existing value unchanged.
</summary>
</member>
<member name="T:Flurl.QueryParamCollection">
<summary>
Represents a URL query as a collection of name/value pairs. Insertion order is preserved.
</summary>
</member>
<member name="M:Flurl.QueryParamCollection.#ctor(System.String)">
<summary>
Returns a new instance of QueryParamCollection
</summary>
<param name="query">Optional query string to parse.</param>
</member>
<member name="M:Flurl.QueryParamCollection.ToString">
<summary>
Returns serialized, encoded query string. Insertion order is preserved.
</summary>
<returns></returns>
</member>
<member name="M:Flurl.QueryParamCollection.ToString(System.Boolean)">
<summary>
Returns serialized, encoded query string. Insertion order is preserved.
</summary>
<returns></returns>
</member>
<member name="M:Flurl.QueryParamCollection.Add(System.String,System.Object,System.Boolean,Flurl.NullValueHandling)">
<summary>
Appends a query parameter. If value is a collection type (array, IEnumerable, etc.), multiple parameters are added, i.e. x=1&amp;x=2.
To overwrite existing parameters of the same name, use AddOrReplace instead.
</summary>
<param name="name">Name of the parameter.</param>
<param name="value">Value of the parameter. If it's a collection, multiple parameters of the same name are added.</param>
<param name="isEncoded">If true, assume value(s) already URL-encoded.</param>
<param name="nullValueHandling">Describes how to handle null values.</param>
</member>
<member name="M:Flurl.QueryParamCollection.AddOrReplace(System.String,System.Object,System.Boolean,Flurl.NullValueHandling)">
<summary>
Replaces existing query parameter(s) or appends to the end. If value is a collection type (array, IEnumerable, etc.),
multiple parameters are added, i.e. x=1&amp;x=2. If any of the same name already exist, they are overwritten one by one
(preserving order) and any remaining are appended to the end. If fewer values are specified than already exist,
remaining existing values are removed.
</summary>
<param name="name">Name of the parameter.</param>
<param name="value">Value of the parameter. If it's a collection, multiple parameters of the same name are added/replaced.</param>
<param name="isEncoded">If true, assume value(s) already URL-encoded.</param>
<param name="nullValueHandling">Describes how to handle null values.</param>
</member>
<member name="M:Flurl.QueryParamCollection.Remove(System.String)">
<summary>
Removes all query parameters of the given name.
</summary>
</member>
<member name="M:Flurl.QueryParamCollection.Clear">
<summary>
Clears all query parameters from this collection.
</summary>
</member>
<member name="M:Flurl.QueryParamCollection.GetEnumerator">
<inheritdoc />>
</member>
<member name="P:Flurl.QueryParamCollection.Count">
<inheritdoc />>
</member>
<member name="P:Flurl.QueryParamCollection.Item(System.Int32)">
<inheritdoc />>
</member>
<member name="M:Flurl.QueryParamCollection.FirstOrDefault(System.String)">
<inheritdoc />>
</member>
<member name="M:Flurl.QueryParamCollection.TryGetFirst(System.String,System.Object@)">
<inheritdoc />>
</member>
<member name="M:Flurl.QueryParamCollection.GetAll(System.String)">
<inheritdoc />>
</member>
<member name="M:Flurl.QueryParamCollection.Contains(System.String)">
<inheritdoc />>
</member>
<member name="M:Flurl.QueryParamCollection.Contains(System.String,System.Object)">
<inheritdoc />>
</member>
<member name="T:Flurl.QueryParamValue">
<summary>
Represents a query parameter value with the ability to track whether it was already encoded when created.
</summary>
</member>
<member name="T:Flurl.Url">
<summary>
A mutable object for fluently building and parsing URLs.
</summary>
</member>
<member name="P:Flurl.Url.Scheme">
<summary>
The scheme of the URL, i.e. "http". Does not include ":" delimiter. Empty string if the URL is relative.
</summary>
</member>
<member name="P:Flurl.Url.UserInfo">
<summary>
i.e. "user:pass" in "https://user:pass@www.site.com". Empty string if not present.
</summary>
</member>
<member name="P:Flurl.Url.Host">
<summary>
i.e. "www.site.com" in "https://www.site.com:8080/path". Does not include user info or port.
</summary>
</member>
<member name="P:Flurl.Url.Port">
<summary>
Port number of the URL. Null if not explicitly specified.
</summary>
</member>
<member name="P:Flurl.Url.Authority">
<summary>
i.e. "www.site.com:8080" in "https://www.site.com:8080/path". Includes both user info and port, if included.
</summary>
</member>
<member name="P:Flurl.Url.Root">
<summary>
i.e. "https://www.site.com:8080" in "https://www.site.com:8080/path" (everything before the path).
</summary>
</member>
<member name="P:Flurl.Url.Path">
<summary>
i.e. "/path" in "https://www.site.com/path". Empty string if not present. Leading and trailing "/" retained exactly as specified by user.
</summary>
</member>
<member name="P:Flurl.Url.PathSegments">
<summary>
The "/"-delimited segments of the path, not including leading or trailing "/" characters.
</summary>
</member>
<member name="P:Flurl.Url.Query">
<summary>
i.e. "x=1&amp;y=2" in "https://www.site.com/path?x=1&amp;y=2". Does not include "?".
</summary>
</member>
<member name="P:Flurl.Url.QueryParams">
<summary>
Query parsed to name/value pairs.
</summary>
</member>
<member name="P:Flurl.Url.Fragment">
<summary>
i.e. "frag" in "https://www.site.com/path?x=y#frag". Does not include "#".
</summary>
</member>
<member name="P:Flurl.Url.IsRelative">
<summary>
True if URL does not start with a non-empty scheme. i.e. true for "https://www.site.com", false for "//www.site.com".
</summary>
</member>
<member name="P:Flurl.Url.IsSecureScheme">
<summary>
True if Url is absolute and scheme is https or wss.
</summary>
</member>
<member name="M:Flurl.Url.#ctor(System.String)">
<summary>
Constructs a Url object from a string.
</summary>
<param name="baseUrl">The URL to use as a starting point.</param>
</member>
<member name="M:Flurl.Url.#ctor(System.Uri)">
<summary>
Constructs a Url object from a System.Uri.
</summary>
<param name="uri">The System.Uri (required)</param>
<exception cref="T:System.ArgumentNullException"><paramref name="uri"/> is <see langword="null" />.</exception>
</member>
<member name="M:Flurl.Url.Parse(System.String)">
<summary>
Parses a URL string into a Flurl.Url object.
</summary>
</member>
<member name="M:Flurl.Url.ParseQueryParams(System.String)">
<summary>
Parses a URL query to a QueryParamCollection.
</summary>
<param name="query">The URL query to parse.</param>
</member>
<member name="M:Flurl.Url.ParsePathSegments(System.String)">
<summary>
Splits the given path into segments, encoding illegal characters, "?", and "#".
</summary>
<param name="path">The path to split.</param>
<returns></returns>
</member>
<member name="M:Flurl.Url.AppendPathSegment(System.Object,System.Boolean)">
<summary>
Appends a segment to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="segment">The segment to append</param>
<param name="fullyEncode">If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters).</param>
<returns>the Url object with the segment appended</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="segment"/> is <see langword="null" />.</exception>
</member>
<member name="M:Flurl.Url.AppendPathSegments(System.Object[])">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a seperator.
</summary>
<param name="segments">The segments to append</param>
<returns>the Url object with the segments appended</returns>
</member>
<member name="M:Flurl.Url.AppendPathSegments(System.Collections.Generic.IEnumerable{System.Object})">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a seperator.
</summary>
<param name="segments">The segments to append</param>
<returns>the Url object with the segments appended</returns>
</member>
<member name="M:Flurl.Url.RemovePathSegment">
<summary>
Removes the last path segment from the URL.
</summary>
<returns>The Url object.</returns>
</member>
<member name="M:Flurl.Url.RemovePath">
<summary>
Removes the entire path component of the URL, including the leading slash.
</summary>
<returns>The Url object.</returns>
</member>
<member name="M:Flurl.Url.SetQueryParam(System.String,System.Object,Flurl.NullValueHandling)">
<summary>
Adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>The Url object with the query parameter added</returns>
</member>
<member name="M:Flurl.Url.SetQueryParam(System.String,System.String,System.Boolean,Flurl.NullValueHandling)">
<summary>
Adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="isEncoded">Set to true to indicate the value is already URL-encoded</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>The Url object with the query parameter added</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="name"/> is <see langword="null" />.</exception>
</member>
<member name="M:Flurl.Url.SetQueryParam(System.String)">
<summary>
Adds a parameter without a value to the query, removing any existing value.
</summary>
<param name="name">Name of query parameter</param>
<returns>The Url object with the query parameter added</returns>
</member>
<member name="M:Flurl.Url.SetQueryParams(System.Object,Flurl.NullValueHandling)">
<summary>
Parses values (usually an anonymous object or dictionary) into name/value pairs and adds them to the query, overwriting any that already exist.
</summary>
<param name="values">Typically an anonymous object, ie: new { x = 1, y = 2 }</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>The Url object with the query parameters added</returns>
</member>
<member name="M:Flurl.Url.SetQueryParams(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Adds multiple parameters without values to the query.
</summary>
<param name="names">Names of query parameters.</param>
<returns>The Url object with the query parameter added</returns>
</member>
<member name="M:Flurl.Url.SetQueryParams(System.String[])">
<summary>
Adds multiple parameters without values to the query.
</summary>
<param name="names">Names of query parameters</param>
<returns>The Url object with the query parameter added.</returns>
</member>
<member name="M:Flurl.Url.RemoveQueryParam(System.String)">
<summary>
Removes a name/value pair from the query by name.
</summary>
<param name="name">Query string parameter name to remove</param>
<returns>The Url object with the query parameter removed</returns>
</member>
<member name="M:Flurl.Url.RemoveQueryParams(System.String[])">
<summary>
Removes multiple name/value pairs from the query by name.
</summary>
<param name="names">Query string parameter names to remove</param>
<returns>The Url object.</returns>
</member>
<member name="M:Flurl.Url.RemoveQueryParams(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Removes multiple name/value pairs from the query by name.
</summary>
<param name="names">Query string parameter names to remove</param>
<returns>The Url object with the query parameters removed</returns>
</member>
<member name="M:Flurl.Url.RemoveQuery">
<summary>
Removes the entire query component of the URL.
</summary>
<returns>The Url object.</returns>
</member>
<member name="M:Flurl.Url.SetFragment(System.String)">
<summary>
Set the URL fragment fluently.
</summary>
<param name="fragment">The part of the URL after #</param>
<returns>The Url object with the new fragment set</returns>
</member>
<member name="M:Flurl.Url.RemoveFragment">
<summary>
Removes the URL fragment including the #.
</summary>
<returns>The Url object with the fragment removed</returns>
</member>
<member name="M:Flurl.Url.ResetToRoot">
<summary>
Resets the URL to its root, including the scheme, any user info, host, and port (if specified).
</summary>
<returns>The Url object trimmed to its root.</returns>
</member>
<member name="M:Flurl.Url.Reset">
<summary>
Resets the URL to its original state as set in the constructor.
</summary>
</member>
<member name="M:Flurl.Url.Clone">
<summary>
Creates a copy of this Url.
</summary>
</member>
<member name="M:Flurl.Url.ToString(System.Boolean)">
<summary>
Converts this Url object to its string representation.
</summary>
<param name="encodeSpaceAsPlus">Indicates whether to encode spaces with the "+" character instead of "%20"</param>
<returns></returns>
</member>
<member name="M:Flurl.Url.ToString">
<summary>
Converts this Url object to its string representation.
</summary>
<returns></returns>
</member>
<member name="M:Flurl.Url.ToUri">
<summary>
Converts this Url object to System.Uri
</summary>
<returns>The System.Uri object</returns>
</member>
<member name="M:Flurl.Url.op_Implicit(Flurl.Url)~System.String">
<summary>
Implicit conversion from Url to String.
</summary>
<param name="url">The Url object</param>
<returns>The string</returns>
</member>
<member name="M:Flurl.Url.op_Implicit(System.String)~Flurl.Url">
<summary>
Implicit conversion from String to Url.
</summary>
<param name="url">The String representation of the URL</param>
<returns>The string</returns>
</member>
<member name="M:Flurl.Url.op_Implicit(System.Uri)~Flurl.Url">
<summary>
Implicit conversion from System.Uri to Flurl.Url.
</summary>
<returns>The string</returns>
</member>
<member name="M:Flurl.Url.Equals(System.Object)">
<summary>
True if obj is an instance of Url and its string representation is equal to this instance's string representation.
</summary>
<param name="obj">The object to compare to this instance.</param>
<returns></returns>
</member>
<member name="M:Flurl.Url.GetHashCode">
<summary>
Returns the hashcode for this Url.
</summary>
</member>
<member name="M:Flurl.Url.Combine(System.String[])">
<summary>
Basically a Path.Combine for URLs. Ensures exactly one '/' separates each segment,
and exactly on '&amp;' separates each query parameter.
URL-encodes illegal characters but not reserved characters.
</summary>
<param name="parts">URL parts to combine.</param>
</member>
<member name="M:Flurl.Url.Decode(System.String,System.Boolean)">
<summary>
Decodes a URL-encoded string.
</summary>
<param name="s">The URL-encoded string.</param>
<param name="interpretPlusAsSpace">If true, any '+' character will be decoded to a space.</param>
<returns></returns>
</member>
<member name="M:Flurl.Url.Encode(System.String,System.Boolean)">
<summary>
URL-encodes a string, including reserved characters such as '/' and '?'.
</summary>
<param name="s">The string to encode.</param>
<param name="encodeSpaceAsPlus">If true, spaces will be encoded as + signs. Otherwise, they'll be encoded as %20.</param>
<returns>The encoded URL.</returns>
</member>
<member name="M:Flurl.Url.EncodeIllegalCharacters(System.String,System.Boolean)">
<summary>
URL-encodes characters in a string that are neither reserved nor unreserved. Avoids encoding reserved characters such as '/' and '?'. Avoids encoding '%' if it begins a %-hex-hex sequence (i.e. avoids double-encoding).
</summary>
<param name="s">The string to encode.</param>
<param name="encodeSpaceAsPlus">If true, spaces will be encoded as + signs. Otherwise, they'll be encoded as %20.</param>
<returns>The encoded URL.</returns>
</member>
<member name="M:Flurl.Url.IsValid(System.String)">
<summary>
Checks if a string is a well-formed absolute URL.
</summary>
<param name="url">The string to check</param>
<returns>true if the string is a well-formed absolute URL</returns>
</member>
<member name="T:Flurl.Util.CommonExtensions">
<summary>
CommonExtensions for objects.
</summary>
</member>
<member name="M:Flurl.Util.CommonExtensions.ToKeyValuePairs(System.Object)">
<summary>
Returns a key-value-pairs representation of the object.
For strings, URL query string format assumed and pairs are parsed from that.
For objects that already implement IEnumerable&lt;KeyValuePair&gt;, the object itself is simply returned.
For all other objects, all publicly readable properties are extracted and returned as pairs.
</summary>
<param name="obj">The object to parse into key-value pairs</param>
<returns></returns>
<exception cref="T:System.ArgumentNullException"><paramref name="obj"/> is <see langword="null" />.</exception>
</member>
<member name="M:Flurl.Util.CommonExtensions.ToInvariantString(System.Object)">
<summary>
Returns a string that represents the current object, using CultureInfo.InvariantCulture where possible.
Dates are represented in IS0 8601.
</summary>
</member>
<member name="M:Flurl.Util.CommonExtensions.SplitOnFirstOccurence(System.String,System.String)">
<summary>
Splits at the first occurrence of the given separator.
</summary>
<param name="s">The string to split.</param>
<param name="separator">The separator to split on.</param>
<returns>Array of at most 2 strings. (1 if separator is not found.)</returns>
</member>
<member name="M:Flurl.Util.CommonExtensions.Merge``2(System.Collections.Generic.IDictionary{``0,``1},System.Collections.Generic.IDictionary{``0,``1})">
<summary>
Merges the key/value pairs from d2 into d1, without overwriting those already set in d1.
</summary>
</member>
<member name="M:Flurl.Util.CommonExtensions.StripQuotes(System.String)">
<summary>
Strips any single quotes or double quotes from the beginning and end of a string.
</summary>
</member>
<member name="M:Flurl.Util.CommonExtensions.IsIP(System.String)">
<summary>
True if the given string is a valid IPv4 address.
</summary>
</member>
<member name="T:Flurl.Util.INameValueListBase`1">
<summary>
Defines common methods for INameValueList and IReadOnlyNameValueList.
</summary>
</member>
<member name="M:Flurl.Util.INameValueListBase`1.FirstOrDefault(System.String)">
<summary>
Returns the first Value of the given Name if one exists, otherwise null or default value.
</summary>
</member>
<member name="M:Flurl.Util.INameValueListBase`1.TryGetFirst(System.String,`0@)">
<summary>
Gets the first Value of the given Name, if one exists.
</summary>
<returns>true if any item of the given name is found, otherwise false.</returns>
</member>
<member name="M:Flurl.Util.INameValueListBase`1.GetAll(System.String)">
<summary>
Gets all Values of the given Name.
</summary>
</member>
<member name="M:Flurl.Util.INameValueListBase`1.Contains(System.String)">
<summary>
True if any items with the given Name exist.
</summary>
</member>
<member name="M:Flurl.Util.INameValueListBase`1.Contains(System.String,`0)">
<summary>
True if any item with the given Name and Value exists.
</summary>
</member>
<member name="T:Flurl.Util.INameValueList`1">
<summary>
Defines an ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical.
</summary>
</member>
<member name="M:Flurl.Util.INameValueList`1.Add(System.String,`0)">
<summary>
Adds a new Name/Value pair.
</summary>
</member>
<member name="M:Flurl.Util.INameValueList`1.AddOrReplace(System.String,`0)">
<summary>
Replaces the first occurrence of the given Name with the given Value and removes any others,
or adds a new Name/Value pair if none exist.
</summary>
</member>
<member name="M:Flurl.Util.INameValueList`1.Remove(System.String)">
<summary>
Removes all items of the given Name.
</summary>
<returns>true if any item of the given name is found, otherwise false.</returns>
</member>
<member name="T:Flurl.Util.IReadOnlyNameValueList`1">
<summary>
Defines a read-only ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical.
</summary>
</member>
<member name="T:Flurl.Util.NameValueList`1">
<summary>
An ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical.
Useful for things where a dictionary would work great if not for those pesky edge cases (headers, cookies, etc).
</summary>
</member>
<member name="M:Flurl.Util.NameValueList`1.#ctor(System.Boolean)">
<summary>
Instantiates a new empty NameValueList.
</summary>
</member>
<member name="M:Flurl.Util.NameValueList`1.#ctor(System.Collections.Generic.IEnumerable{System.ValueTuple{System.String,`0}},System.Boolean)">
<summary>
Instantiates a new NameValueList with the Name/Value pairs provided.
</summary>
</member>
<member name="M:Flurl.Util.NameValueList`1.Add(System.String,`0)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.AddOrReplace(System.String,`0)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.Remove(System.String)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.FirstOrDefault(System.String)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.TryGetFirst(System.String,`0@)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.GetAll(System.String)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.Contains(System.String)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.Contains(System.String,`0)">
<inheritdoc />
</member>
</members>
</doc>

Binary file not shown.

Binary file not shown.

View File

@ -1,883 +0,0 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Flurl</name>
</assembly>
<members>
<member name="T:Flurl.GeneratedExtensions">
<summary>
Fluent URL-building extension methods on String and Uri.
</summary>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegment(System.String,System.Object,System.Boolean)">
<summary>
Creates a new Url object from the string and appends a segment to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="url">This URL.</param>
<param name="segment">The segment to append</param>
<param name="fullyEncode">If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters).</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegments(System.String,System.Object[])">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="url">This URL.</param>
<param name="segments">The segments to append</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegments(System.String,System.Collections.Generic.IEnumerable{System.Object})">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="url">This URL.</param>
<param name="segments">The segments to append</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemovePathSegment(System.String)">
<summary>
Removes the last path segment from the URL.
</summary>
<param name="url">This URL.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemovePath(System.String)">
<summary>
Removes the entire path component of the URL.
</summary>
<param name="url">This URL.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.String,System.String,System.Object,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="url">This URL.</param>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.String,System.String,System.String,System.Boolean,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="url">This URL.</param>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="isEncoded">Set to true to indicate the value is already URL-encoded. Defaults to false.</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing).</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.String,System.String)">
<summary>
Creates a new Url object from the string and adds a parameter without a value to the query, removing any existing value.
</summary>
<param name="url">This URL.</param>
<param name="name">Name of query parameter</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.String,System.Object,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string, parses values object into name/value pairs, and adds them to the query, overwriting any that already exist.
</summary>
<param name="url">This URL.</param>
<param name="values">Typically an anonymous object, ie: new { x = 1, y = 2 }</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.String,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Creates a new Url object from the string and adds multiple parameters without values to the query.
</summary>
<param name="url">This URL.</param>
<param name="names">Names of query parameters.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.String,System.String[])">
<summary>
Creates a new Url object from the string and adds multiple parameters without values to the query.
</summary>
<param name="url">This URL.</param>
<param name="names">Names of query parameters</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParam(System.String,System.String)">
<summary>
Creates a new Url object from the string and removes a name/value pair from the query by name.
</summary>
<param name="url">This URL.</param>
<param name="name">Query string parameter name to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParams(System.String,System.String[])">
<summary>
Creates a new Url object from the string and removes multiple name/value pairs from the query by name.
</summary>
<param name="url">This URL.</param>
<param name="names">Query string parameter names to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParams(System.String,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Creates a new Url object from the string and removes multiple name/value pairs from the query by name.
</summary>
<param name="url">This URL.</param>
<param name="names">Query string parameter names to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQuery(System.String)">
<summary>
Removes the entire query component of the URL.
</summary>
<param name="url">This URL.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetFragment(System.String,System.String)">
<summary>
Set the URL fragment fluently.
</summary>
<param name="url">This URL.</param>
<param name="fragment">The part of the URL after #</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveFragment(System.String)">
<summary>
Removes the URL fragment including the #.
</summary>
<param name="url">This URL.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.ResetToRoot(System.String)">
<summary>
Trims the URL to its root, including the scheme, any user info, host, and port (if specified).
</summary>
<param name="url">This URL.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegment(System.Uri,System.Object,System.Boolean)">
<summary>
Creates a new Url object from the string and appends a segment to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="uri">This System.Uri.</param>
<param name="segment">The segment to append</param>
<param name="fullyEncode">If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters).</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegments(System.Uri,System.Object[])">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="uri">This System.Uri.</param>
<param name="segments">The segments to append</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegments(System.Uri,System.Collections.Generic.IEnumerable{System.Object})">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="uri">This System.Uri.</param>
<param name="segments">The segments to append</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemovePathSegment(System.Uri)">
<summary>
Removes the last path segment from the URL.
</summary>
<param name="uri">This System.Uri.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemovePath(System.Uri)">
<summary>
Removes the entire path component of the URL.
</summary>
<param name="uri">This System.Uri.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.Uri,System.String,System.Object,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="uri">This System.Uri.</param>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.Uri,System.String,System.String,System.Boolean,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="uri">This System.Uri.</param>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="isEncoded">Set to true to indicate the value is already URL-encoded. Defaults to false.</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing).</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.Uri,System.String)">
<summary>
Creates a new Url object from the string and adds a parameter without a value to the query, removing any existing value.
</summary>
<param name="uri">This System.Uri.</param>
<param name="name">Name of query parameter</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.Uri,System.Object,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string, parses values object into name/value pairs, and adds them to the query, overwriting any that already exist.
</summary>
<param name="uri">This System.Uri.</param>
<param name="values">Typically an anonymous object, ie: new { x = 1, y = 2 }</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.Uri,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Creates a new Url object from the string and adds multiple parameters without values to the query.
</summary>
<param name="uri">This System.Uri.</param>
<param name="names">Names of query parameters.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.Uri,System.String[])">
<summary>
Creates a new Url object from the string and adds multiple parameters without values to the query.
</summary>
<param name="uri">This System.Uri.</param>
<param name="names">Names of query parameters</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParam(System.Uri,System.String)">
<summary>
Creates a new Url object from the string and removes a name/value pair from the query by name.
</summary>
<param name="uri">This System.Uri.</param>
<param name="name">Query string parameter name to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParams(System.Uri,System.String[])">
<summary>
Creates a new Url object from the string and removes multiple name/value pairs from the query by name.
</summary>
<param name="uri">This System.Uri.</param>
<param name="names">Query string parameter names to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParams(System.Uri,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Creates a new Url object from the string and removes multiple name/value pairs from the query by name.
</summary>
<param name="uri">This System.Uri.</param>
<param name="names">Query string parameter names to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQuery(System.Uri)">
<summary>
Removes the entire query component of the URL.
</summary>
<param name="uri">This System.Uri.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetFragment(System.Uri,System.String)">
<summary>
Set the URL fragment fluently.
</summary>
<param name="uri">This System.Uri.</param>
<param name="fragment">The part of the URL after #</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveFragment(System.Uri)">
<summary>
Removes the URL fragment including the #.
</summary>
<param name="uri">This System.Uri.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.ResetToRoot(System.Uri)">
<summary>
Trims the URL to its root, including the scheme, any user info, host, and port (if specified).
</summary>
<param name="uri">This System.Uri.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="T:Flurl.NullValueHandling">
<summary>
Describes how to handle null values in query parameters.
</summary>
</member>
<member name="F:Flurl.NullValueHandling.NameOnly">
<summary>
Set as name without value in query string.
</summary>
</member>
<member name="F:Flurl.NullValueHandling.Remove">
<summary>
Don't add to query string, remove any existing value.
</summary>
</member>
<member name="F:Flurl.NullValueHandling.Ignore">
<summary>
Don't add to query string, but leave any existing value unchanged.
</summary>
</member>
<member name="T:Flurl.QueryParamCollection">
<summary>
Represents a URL query as a collection of name/value pairs. Insertion order is preserved.
</summary>
</member>
<member name="M:Flurl.QueryParamCollection.#ctor(System.String)">
<summary>
Returns a new instance of QueryParamCollection
</summary>
<param name="query">Optional query string to parse.</param>
</member>
<member name="M:Flurl.QueryParamCollection.ToString">
<summary>
Returns serialized, encoded query string. Insertion order is preserved.
</summary>
<returns></returns>
</member>
<member name="M:Flurl.QueryParamCollection.ToString(System.Boolean)">
<summary>
Returns serialized, encoded query string. Insertion order is preserved.
</summary>
<returns></returns>
</member>
<member name="M:Flurl.QueryParamCollection.Add(System.String,System.Object,System.Boolean,Flurl.NullValueHandling)">
<summary>
Appends a query parameter. If value is a collection type (array, IEnumerable, etc.), multiple parameters are added, i.e. x=1&amp;x=2.
To overwrite existing parameters of the same name, use AddOrReplace instead.
</summary>
<param name="name">Name of the parameter.</param>
<param name="value">Value of the parameter. If it's a collection, multiple parameters of the same name are added.</param>
<param name="isEncoded">If true, assume value(s) already URL-encoded.</param>
<param name="nullValueHandling">Describes how to handle null values.</param>
</member>
<member name="M:Flurl.QueryParamCollection.AddOrReplace(System.String,System.Object,System.Boolean,Flurl.NullValueHandling)">
<summary>
Replaces existing query parameter(s) or appends to the end. If value is a collection type (array, IEnumerable, etc.),
multiple parameters are added, i.e. x=1&amp;x=2. If any of the same name already exist, they are overwritten one by one
(preserving order) and any remaining are appended to the end. If fewer values are specified than already exist,
remaining existing values are removed.
</summary>
<param name="name">Name of the parameter.</param>
<param name="value">Value of the parameter. If it's a collection, multiple parameters of the same name are added/replaced.</param>
<param name="isEncoded">If true, assume value(s) already URL-encoded.</param>
<param name="nullValueHandling">Describes how to handle null values.</param>
</member>
<member name="M:Flurl.QueryParamCollection.Remove(System.String)">
<summary>
Removes all query parameters of the given name.
</summary>
</member>
<member name="M:Flurl.QueryParamCollection.Clear">
<summary>
Clears all query parameters from this collection.
</summary>
</member>
<member name="M:Flurl.QueryParamCollection.GetEnumerator">
<inheritdoc />>
</member>
<member name="P:Flurl.QueryParamCollection.Count">
<inheritdoc />>
</member>
<member name="P:Flurl.QueryParamCollection.Item(System.Int32)">
<inheritdoc />>
</member>
<member name="M:Flurl.QueryParamCollection.FirstOrDefault(System.String)">
<inheritdoc />>
</member>
<member name="M:Flurl.QueryParamCollection.TryGetFirst(System.String,System.Object@)">
<inheritdoc />>
</member>
<member name="M:Flurl.QueryParamCollection.GetAll(System.String)">
<inheritdoc />>
</member>
<member name="M:Flurl.QueryParamCollection.Contains(System.String)">
<inheritdoc />>
</member>
<member name="M:Flurl.QueryParamCollection.Contains(System.String,System.Object)">
<inheritdoc />>
</member>
<member name="T:Flurl.QueryParamValue">
<summary>
Represents a query parameter value with the ability to track whether it was already encoded when created.
</summary>
</member>
<member name="T:Flurl.Url">
<summary>
A mutable object for fluently building and parsing URLs.
</summary>
</member>
<member name="P:Flurl.Url.Scheme">
<summary>
The scheme of the URL, i.e. "http". Does not include ":" delimiter. Empty string if the URL is relative.
</summary>
</member>
<member name="P:Flurl.Url.UserInfo">
<summary>
i.e. "user:pass" in "https://user:pass@www.site.com". Empty string if not present.
</summary>
</member>
<member name="P:Flurl.Url.Host">
<summary>
i.e. "www.site.com" in "https://www.site.com:8080/path". Does not include user info or port.
</summary>
</member>
<member name="P:Flurl.Url.Port">
<summary>
Port number of the URL. Null if not explicitly specified.
</summary>
</member>
<member name="P:Flurl.Url.Authority">
<summary>
i.e. "www.site.com:8080" in "https://www.site.com:8080/path". Includes both user info and port, if included.
</summary>
</member>
<member name="P:Flurl.Url.Root">
<summary>
i.e. "https://www.site.com:8080" in "https://www.site.com:8080/path" (everything before the path).
</summary>
</member>
<member name="P:Flurl.Url.Path">
<summary>
i.e. "/path" in "https://www.site.com/path". Empty string if not present. Leading and trailing "/" retained exactly as specified by user.
</summary>
</member>
<member name="P:Flurl.Url.PathSegments">
<summary>
The "/"-delimited segments of the path, not including leading or trailing "/" characters.
</summary>
</member>
<member name="P:Flurl.Url.Query">
<summary>
i.e. "x=1&amp;y=2" in "https://www.site.com/path?x=1&amp;y=2". Does not include "?".
</summary>
</member>
<member name="P:Flurl.Url.QueryParams">
<summary>
Query parsed to name/value pairs.
</summary>
</member>
<member name="P:Flurl.Url.Fragment">
<summary>
i.e. "frag" in "https://www.site.com/path?x=y#frag". Does not include "#".
</summary>
</member>
<member name="P:Flurl.Url.IsRelative">
<summary>
True if URL does not start with a non-empty scheme. i.e. true for "https://www.site.com", false for "//www.site.com".
</summary>
</member>
<member name="P:Flurl.Url.IsSecureScheme">
<summary>
True if Url is absolute and scheme is https or wss.
</summary>
</member>
<member name="M:Flurl.Url.#ctor(System.String)">
<summary>
Constructs a Url object from a string.
</summary>
<param name="baseUrl">The URL to use as a starting point.</param>
</member>
<member name="M:Flurl.Url.#ctor(System.Uri)">
<summary>
Constructs a Url object from a System.Uri.
</summary>
<param name="uri">The System.Uri (required)</param>
<exception cref="T:System.ArgumentNullException"><paramref name="uri"/> is <see langword="null" />.</exception>
</member>
<member name="M:Flurl.Url.Parse(System.String)">
<summary>
Parses a URL string into a Flurl.Url object.
</summary>
</member>
<member name="M:Flurl.Url.ParseQueryParams(System.String)">
<summary>
Parses a URL query to a QueryParamCollection.
</summary>
<param name="query">The URL query to parse.</param>
</member>
<member name="M:Flurl.Url.ParsePathSegments(System.String)">
<summary>
Splits the given path into segments, encoding illegal characters, "?", and "#".
</summary>
<param name="path">The path to split.</param>
<returns></returns>
</member>
<member name="M:Flurl.Url.AppendPathSegment(System.Object,System.Boolean)">
<summary>
Appends a segment to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="segment">The segment to append</param>
<param name="fullyEncode">If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters).</param>
<returns>the Url object with the segment appended</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="segment"/> is <see langword="null" />.</exception>
</member>
<member name="M:Flurl.Url.AppendPathSegments(System.Object[])">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a seperator.
</summary>
<param name="segments">The segments to append</param>
<returns>the Url object with the segments appended</returns>
</member>
<member name="M:Flurl.Url.AppendPathSegments(System.Collections.Generic.IEnumerable{System.Object})">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a seperator.
</summary>
<param name="segments">The segments to append</param>
<returns>the Url object with the segments appended</returns>
</member>
<member name="M:Flurl.Url.RemovePathSegment">
<summary>
Removes the last path segment from the URL.
</summary>
<returns>The Url object.</returns>
</member>
<member name="M:Flurl.Url.RemovePath">
<summary>
Removes the entire path component of the URL, including the leading slash.
</summary>
<returns>The Url object.</returns>
</member>
<member name="M:Flurl.Url.SetQueryParam(System.String,System.Object,Flurl.NullValueHandling)">
<summary>
Adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>The Url object with the query parameter added</returns>
</member>
<member name="M:Flurl.Url.SetQueryParam(System.String,System.String,System.Boolean,Flurl.NullValueHandling)">
<summary>
Adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="isEncoded">Set to true to indicate the value is already URL-encoded</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>The Url object with the query parameter added</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="name"/> is <see langword="null" />.</exception>
</member>
<member name="M:Flurl.Url.SetQueryParam(System.String)">
<summary>
Adds a parameter without a value to the query, removing any existing value.
</summary>
<param name="name">Name of query parameter</param>
<returns>The Url object with the query parameter added</returns>
</member>
<member name="M:Flurl.Url.SetQueryParams(System.Object,Flurl.NullValueHandling)">
<summary>
Parses values (usually an anonymous object or dictionary) into name/value pairs and adds them to the query, overwriting any that already exist.
</summary>
<param name="values">Typically an anonymous object, ie: new { x = 1, y = 2 }</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>The Url object with the query parameters added</returns>
</member>
<member name="M:Flurl.Url.SetQueryParams(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Adds multiple parameters without values to the query.
</summary>
<param name="names">Names of query parameters.</param>
<returns>The Url object with the query parameter added</returns>
</member>
<member name="M:Flurl.Url.SetQueryParams(System.String[])">
<summary>
Adds multiple parameters without values to the query.
</summary>
<param name="names">Names of query parameters</param>
<returns>The Url object with the query parameter added.</returns>
</member>
<member name="M:Flurl.Url.RemoveQueryParam(System.String)">
<summary>
Removes a name/value pair from the query by name.
</summary>
<param name="name">Query string parameter name to remove</param>
<returns>The Url object with the query parameter removed</returns>
</member>
<member name="M:Flurl.Url.RemoveQueryParams(System.String[])">
<summary>
Removes multiple name/value pairs from the query by name.
</summary>
<param name="names">Query string parameter names to remove</param>
<returns>The Url object.</returns>
</member>
<member name="M:Flurl.Url.RemoveQueryParams(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Removes multiple name/value pairs from the query by name.
</summary>
<param name="names">Query string parameter names to remove</param>
<returns>The Url object with the query parameters removed</returns>
</member>
<member name="M:Flurl.Url.RemoveQuery">
<summary>
Removes the entire query component of the URL.
</summary>
<returns>The Url object.</returns>
</member>
<member name="M:Flurl.Url.SetFragment(System.String)">
<summary>
Set the URL fragment fluently.
</summary>
<param name="fragment">The part of the URL after #</param>
<returns>The Url object with the new fragment set</returns>
</member>
<member name="M:Flurl.Url.RemoveFragment">
<summary>
Removes the URL fragment including the #.
</summary>
<returns>The Url object with the fragment removed</returns>
</member>
<member name="M:Flurl.Url.ResetToRoot">
<summary>
Resets the URL to its root, including the scheme, any user info, host, and port (if specified).
</summary>
<returns>The Url object trimmed to its root.</returns>
</member>
<member name="M:Flurl.Url.Reset">
<summary>
Resets the URL to its original state as set in the constructor.
</summary>
</member>
<member name="M:Flurl.Url.Clone">
<summary>
Creates a copy of this Url.
</summary>
</member>
<member name="M:Flurl.Url.ToString(System.Boolean)">
<summary>
Converts this Url object to its string representation.
</summary>
<param name="encodeSpaceAsPlus">Indicates whether to encode spaces with the "+" character instead of "%20"</param>
<returns></returns>
</member>
<member name="M:Flurl.Url.ToString">
<summary>
Converts this Url object to its string representation.
</summary>
<returns></returns>
</member>
<member name="M:Flurl.Url.ToUri">
<summary>
Converts this Url object to System.Uri
</summary>
<returns>The System.Uri object</returns>
</member>
<member name="M:Flurl.Url.op_Implicit(Flurl.Url)~System.String">
<summary>
Implicit conversion from Url to String.
</summary>
<param name="url">The Url object</param>
<returns>The string</returns>
</member>
<member name="M:Flurl.Url.op_Implicit(System.String)~Flurl.Url">
<summary>
Implicit conversion from String to Url.
</summary>
<param name="url">The String representation of the URL</param>
<returns>The string</returns>
</member>
<member name="M:Flurl.Url.op_Implicit(System.Uri)~Flurl.Url">
<summary>
Implicit conversion from System.Uri to Flurl.Url.
</summary>
<returns>The string</returns>
</member>
<member name="M:Flurl.Url.Equals(System.Object)">
<summary>
True if obj is an instance of Url and its string representation is equal to this instance's string representation.
</summary>
<param name="obj">The object to compare to this instance.</param>
<returns></returns>
</member>
<member name="M:Flurl.Url.GetHashCode">
<summary>
Returns the hashcode for this Url.
</summary>
</member>
<member name="M:Flurl.Url.Combine(System.String[])">
<summary>
Basically a Path.Combine for URLs. Ensures exactly one '/' separates each segment,
and exactly on '&amp;' separates each query parameter.
URL-encodes illegal characters but not reserved characters.
</summary>
<param name="parts">URL parts to combine.</param>
</member>
<member name="M:Flurl.Url.Decode(System.String,System.Boolean)">
<summary>
Decodes a URL-encoded string.
</summary>
<param name="s">The URL-encoded string.</param>
<param name="interpretPlusAsSpace">If true, any '+' character will be decoded to a space.</param>
<returns></returns>
</member>
<member name="M:Flurl.Url.Encode(System.String,System.Boolean)">
<summary>
URL-encodes a string, including reserved characters such as '/' and '?'.
</summary>
<param name="s">The string to encode.</param>
<param name="encodeSpaceAsPlus">If true, spaces will be encoded as + signs. Otherwise, they'll be encoded as %20.</param>
<returns>The encoded URL.</returns>
</member>
<member name="M:Flurl.Url.EncodeIllegalCharacters(System.String,System.Boolean)">
<summary>
URL-encodes characters in a string that are neither reserved nor unreserved. Avoids encoding reserved characters such as '/' and '?'. Avoids encoding '%' if it begins a %-hex-hex sequence (i.e. avoids double-encoding).
</summary>
<param name="s">The string to encode.</param>
<param name="encodeSpaceAsPlus">If true, spaces will be encoded as + signs. Otherwise, they'll be encoded as %20.</param>
<returns>The encoded URL.</returns>
</member>
<member name="M:Flurl.Url.IsValid(System.String)">
<summary>
Checks if a string is a well-formed absolute URL.
</summary>
<param name="url">The string to check</param>
<returns>true if the string is a well-formed absolute URL</returns>
</member>
<member name="T:Flurl.Util.CommonExtensions">
<summary>
CommonExtensions for objects.
</summary>
</member>
<member name="M:Flurl.Util.CommonExtensions.ToKeyValuePairs(System.Object)">
<summary>
Returns a key-value-pairs representation of the object.
For strings, URL query string format assumed and pairs are parsed from that.
For objects that already implement IEnumerable&lt;KeyValuePair&gt;, the object itself is simply returned.
For all other objects, all publicly readable properties are extracted and returned as pairs.
</summary>
<param name="obj">The object to parse into key-value pairs</param>
<returns></returns>
<exception cref="T:System.ArgumentNullException"><paramref name="obj"/> is <see langword="null" />.</exception>
</member>
<member name="M:Flurl.Util.CommonExtensions.ToInvariantString(System.Object)">
<summary>
Returns a string that represents the current object, using CultureInfo.InvariantCulture where possible.
Dates are represented in IS0 8601.
</summary>
</member>
<member name="M:Flurl.Util.CommonExtensions.SplitOnFirstOccurence(System.String,System.String)">
<summary>
Splits at the first occurrence of the given separator.
</summary>
<param name="s">The string to split.</param>
<param name="separator">The separator to split on.</param>
<returns>Array of at most 2 strings. (1 if separator is not found.)</returns>
</member>
<member name="M:Flurl.Util.CommonExtensions.Merge``2(System.Collections.Generic.IDictionary{``0,``1},System.Collections.Generic.IDictionary{``0,``1})">
<summary>
Merges the key/value pairs from d2 into d1, without overwriting those already set in d1.
</summary>
</member>
<member name="M:Flurl.Util.CommonExtensions.StripQuotes(System.String)">
<summary>
Strips any single quotes or double quotes from the beginning and end of a string.
</summary>
</member>
<member name="M:Flurl.Util.CommonExtensions.IsIP(System.String)">
<summary>
True if the given string is a valid IPv4 address.
</summary>
</member>
<member name="T:Flurl.Util.INameValueListBase`1">
<summary>
Defines common methods for INameValueList and IReadOnlyNameValueList.
</summary>
</member>
<member name="M:Flurl.Util.INameValueListBase`1.FirstOrDefault(System.String)">
<summary>
Returns the first Value of the given Name if one exists, otherwise null or default value.
</summary>
</member>
<member name="M:Flurl.Util.INameValueListBase`1.TryGetFirst(System.String,`0@)">
<summary>
Gets the first Value of the given Name, if one exists.
</summary>
<returns>true if any item of the given name is found, otherwise false.</returns>
</member>
<member name="M:Flurl.Util.INameValueListBase`1.GetAll(System.String)">
<summary>
Gets all Values of the given Name.
</summary>
</member>
<member name="M:Flurl.Util.INameValueListBase`1.Contains(System.String)">
<summary>
True if any items with the given Name exist.
</summary>
</member>
<member name="M:Flurl.Util.INameValueListBase`1.Contains(System.String,`0)">
<summary>
True if any item with the given Name and Value exists.
</summary>
</member>
<member name="T:Flurl.Util.INameValueList`1">
<summary>
Defines an ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical.
</summary>
</member>
<member name="M:Flurl.Util.INameValueList`1.Add(System.String,`0)">
<summary>
Adds a new Name/Value pair.
</summary>
</member>
<member name="M:Flurl.Util.INameValueList`1.AddOrReplace(System.String,`0)">
<summary>
Replaces the first occurrence of the given Name with the given Value and removes any others,
or adds a new Name/Value pair if none exist.
</summary>
</member>
<member name="M:Flurl.Util.INameValueList`1.Remove(System.String)">
<summary>
Removes all items of the given Name.
</summary>
<returns>true if any item of the given name is found, otherwise false.</returns>
</member>
<member name="T:Flurl.Util.IReadOnlyNameValueList`1">
<summary>
Defines a read-only ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical.
</summary>
</member>
<member name="T:Flurl.Util.NameValueList`1">
<summary>
An ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical.
Useful for things where a dictionary would work great if not for those pesky edge cases (headers, cookies, etc).
</summary>
</member>
<member name="M:Flurl.Util.NameValueList`1.#ctor(System.Boolean)">
<summary>
Instantiates a new empty NameValueList.
</summary>
</member>
<member name="M:Flurl.Util.NameValueList`1.#ctor(System.Collections.Generic.IEnumerable{System.ValueTuple{System.String,`0}},System.Boolean)">
<summary>
Instantiates a new NameValueList with the Name/Value pairs provided.
</summary>
</member>
<member name="M:Flurl.Util.NameValueList`1.Add(System.String,`0)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.AddOrReplace(System.String,`0)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.Remove(System.String)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.FirstOrDefault(System.String)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.TryGetFirst(System.String,`0@)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.GetAll(System.String)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.Contains(System.String)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.Contains(System.String,`0)">
<inheritdoc />
</member>
</members>
</doc>

Binary file not shown.

Binary file not shown.

View File

@ -1,883 +0,0 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Flurl</name>
</assembly>
<members>
<member name="T:Flurl.GeneratedExtensions">
<summary>
Fluent URL-building extension methods on String and Uri.
</summary>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegment(System.String,System.Object,System.Boolean)">
<summary>
Creates a new Url object from the string and appends a segment to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="url">This URL.</param>
<param name="segment">The segment to append</param>
<param name="fullyEncode">If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters).</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegments(System.String,System.Object[])">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="url">This URL.</param>
<param name="segments">The segments to append</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegments(System.String,System.Collections.Generic.IEnumerable{System.Object})">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="url">This URL.</param>
<param name="segments">The segments to append</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemovePathSegment(System.String)">
<summary>
Removes the last path segment from the URL.
</summary>
<param name="url">This URL.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemovePath(System.String)">
<summary>
Removes the entire path component of the URL.
</summary>
<param name="url">This URL.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.String,System.String,System.Object,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="url">This URL.</param>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.String,System.String,System.String,System.Boolean,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="url">This URL.</param>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="isEncoded">Set to true to indicate the value is already URL-encoded. Defaults to false.</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing).</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.String,System.String)">
<summary>
Creates a new Url object from the string and adds a parameter without a value to the query, removing any existing value.
</summary>
<param name="url">This URL.</param>
<param name="name">Name of query parameter</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.String,System.Object,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string, parses values object into name/value pairs, and adds them to the query, overwriting any that already exist.
</summary>
<param name="url">This URL.</param>
<param name="values">Typically an anonymous object, ie: new { x = 1, y = 2 }</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.String,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Creates a new Url object from the string and adds multiple parameters without values to the query.
</summary>
<param name="url">This URL.</param>
<param name="names">Names of query parameters.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.String,System.String[])">
<summary>
Creates a new Url object from the string and adds multiple parameters without values to the query.
</summary>
<param name="url">This URL.</param>
<param name="names">Names of query parameters</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParam(System.String,System.String)">
<summary>
Creates a new Url object from the string and removes a name/value pair from the query by name.
</summary>
<param name="url">This URL.</param>
<param name="name">Query string parameter name to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParams(System.String,System.String[])">
<summary>
Creates a new Url object from the string and removes multiple name/value pairs from the query by name.
</summary>
<param name="url">This URL.</param>
<param name="names">Query string parameter names to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParams(System.String,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Creates a new Url object from the string and removes multiple name/value pairs from the query by name.
</summary>
<param name="url">This URL.</param>
<param name="names">Query string parameter names to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQuery(System.String)">
<summary>
Removes the entire query component of the URL.
</summary>
<param name="url">This URL.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetFragment(System.String,System.String)">
<summary>
Set the URL fragment fluently.
</summary>
<param name="url">This URL.</param>
<param name="fragment">The part of the URL after #</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveFragment(System.String)">
<summary>
Removes the URL fragment including the #.
</summary>
<param name="url">This URL.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.ResetToRoot(System.String)">
<summary>
Trims the URL to its root, including the scheme, any user info, host, and port (if specified).
</summary>
<param name="url">This URL.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegment(System.Uri,System.Object,System.Boolean)">
<summary>
Creates a new Url object from the string and appends a segment to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="uri">This System.Uri.</param>
<param name="segment">The segment to append</param>
<param name="fullyEncode">If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters).</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegments(System.Uri,System.Object[])">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="uri">This System.Uri.</param>
<param name="segments">The segments to append</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.AppendPathSegments(System.Uri,System.Collections.Generic.IEnumerable{System.Object})">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="uri">This System.Uri.</param>
<param name="segments">The segments to append</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemovePathSegment(System.Uri)">
<summary>
Removes the last path segment from the URL.
</summary>
<param name="uri">This System.Uri.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemovePath(System.Uri)">
<summary>
Removes the entire path component of the URL.
</summary>
<param name="uri">This System.Uri.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.Uri,System.String,System.Object,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="uri">This System.Uri.</param>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.Uri,System.String,System.String,System.Boolean,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="uri">This System.Uri.</param>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="isEncoded">Set to true to indicate the value is already URL-encoded. Defaults to false.</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing).</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParam(System.Uri,System.String)">
<summary>
Creates a new Url object from the string and adds a parameter without a value to the query, removing any existing value.
</summary>
<param name="uri">This System.Uri.</param>
<param name="name">Name of query parameter</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.Uri,System.Object,Flurl.NullValueHandling)">
<summary>
Creates a new Url object from the string, parses values object into name/value pairs, and adds them to the query, overwriting any that already exist.
</summary>
<param name="uri">This System.Uri.</param>
<param name="values">Typically an anonymous object, ie: new { x = 1, y = 2 }</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.Uri,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Creates a new Url object from the string and adds multiple parameters without values to the query.
</summary>
<param name="uri">This System.Uri.</param>
<param name="names">Names of query parameters.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetQueryParams(System.Uri,System.String[])">
<summary>
Creates a new Url object from the string and adds multiple parameters without values to the query.
</summary>
<param name="uri">This System.Uri.</param>
<param name="names">Names of query parameters</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParam(System.Uri,System.String)">
<summary>
Creates a new Url object from the string and removes a name/value pair from the query by name.
</summary>
<param name="uri">This System.Uri.</param>
<param name="name">Query string parameter name to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParams(System.Uri,System.String[])">
<summary>
Creates a new Url object from the string and removes multiple name/value pairs from the query by name.
</summary>
<param name="uri">This System.Uri.</param>
<param name="names">Query string parameter names to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQueryParams(System.Uri,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Creates a new Url object from the string and removes multiple name/value pairs from the query by name.
</summary>
<param name="uri">This System.Uri.</param>
<param name="names">Query string parameter names to remove</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveQuery(System.Uri)">
<summary>
Removes the entire query component of the URL.
</summary>
<param name="uri">This System.Uri.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.SetFragment(System.Uri,System.String)">
<summary>
Set the URL fragment fluently.
</summary>
<param name="uri">This System.Uri.</param>
<param name="fragment">The part of the URL after #</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.RemoveFragment(System.Uri)">
<summary>
Removes the URL fragment including the #.
</summary>
<param name="uri">This System.Uri.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="M:Flurl.GeneratedExtensions.ResetToRoot(System.Uri)">
<summary>
Trims the URL to its root, including the scheme, any user info, host, and port (if specified).
</summary>
<param name="uri">This System.Uri.</param>
<returns>A new Flurl.Url object.</returns>
</member>
<member name="T:Flurl.NullValueHandling">
<summary>
Describes how to handle null values in query parameters.
</summary>
</member>
<member name="F:Flurl.NullValueHandling.NameOnly">
<summary>
Set as name without value in query string.
</summary>
</member>
<member name="F:Flurl.NullValueHandling.Remove">
<summary>
Don't add to query string, remove any existing value.
</summary>
</member>
<member name="F:Flurl.NullValueHandling.Ignore">
<summary>
Don't add to query string, but leave any existing value unchanged.
</summary>
</member>
<member name="T:Flurl.QueryParamCollection">
<summary>
Represents a URL query as a collection of name/value pairs. Insertion order is preserved.
</summary>
</member>
<member name="M:Flurl.QueryParamCollection.#ctor(System.String)">
<summary>
Returns a new instance of QueryParamCollection
</summary>
<param name="query">Optional query string to parse.</param>
</member>
<member name="M:Flurl.QueryParamCollection.ToString">
<summary>
Returns serialized, encoded query string. Insertion order is preserved.
</summary>
<returns></returns>
</member>
<member name="M:Flurl.QueryParamCollection.ToString(System.Boolean)">
<summary>
Returns serialized, encoded query string. Insertion order is preserved.
</summary>
<returns></returns>
</member>
<member name="M:Flurl.QueryParamCollection.Add(System.String,System.Object,System.Boolean,Flurl.NullValueHandling)">
<summary>
Appends a query parameter. If value is a collection type (array, IEnumerable, etc.), multiple parameters are added, i.e. x=1&amp;x=2.
To overwrite existing parameters of the same name, use AddOrReplace instead.
</summary>
<param name="name">Name of the parameter.</param>
<param name="value">Value of the parameter. If it's a collection, multiple parameters of the same name are added.</param>
<param name="isEncoded">If true, assume value(s) already URL-encoded.</param>
<param name="nullValueHandling">Describes how to handle null values.</param>
</member>
<member name="M:Flurl.QueryParamCollection.AddOrReplace(System.String,System.Object,System.Boolean,Flurl.NullValueHandling)">
<summary>
Replaces existing query parameter(s) or appends to the end. If value is a collection type (array, IEnumerable, etc.),
multiple parameters are added, i.e. x=1&amp;x=2. If any of the same name already exist, they are overwritten one by one
(preserving order) and any remaining are appended to the end. If fewer values are specified than already exist,
remaining existing values are removed.
</summary>
<param name="name">Name of the parameter.</param>
<param name="value">Value of the parameter. If it's a collection, multiple parameters of the same name are added/replaced.</param>
<param name="isEncoded">If true, assume value(s) already URL-encoded.</param>
<param name="nullValueHandling">Describes how to handle null values.</param>
</member>
<member name="M:Flurl.QueryParamCollection.Remove(System.String)">
<summary>
Removes all query parameters of the given name.
</summary>
</member>
<member name="M:Flurl.QueryParamCollection.Clear">
<summary>
Clears all query parameters from this collection.
</summary>
</member>
<member name="M:Flurl.QueryParamCollection.GetEnumerator">
<inheritdoc />>
</member>
<member name="P:Flurl.QueryParamCollection.Count">
<inheritdoc />>
</member>
<member name="P:Flurl.QueryParamCollection.Item(System.Int32)">
<inheritdoc />>
</member>
<member name="M:Flurl.QueryParamCollection.FirstOrDefault(System.String)">
<inheritdoc />>
</member>
<member name="M:Flurl.QueryParamCollection.TryGetFirst(System.String,System.Object@)">
<inheritdoc />>
</member>
<member name="M:Flurl.QueryParamCollection.GetAll(System.String)">
<inheritdoc />>
</member>
<member name="M:Flurl.QueryParamCollection.Contains(System.String)">
<inheritdoc />>
</member>
<member name="M:Flurl.QueryParamCollection.Contains(System.String,System.Object)">
<inheritdoc />>
</member>
<member name="T:Flurl.QueryParamValue">
<summary>
Represents a query parameter value with the ability to track whether it was already encoded when created.
</summary>
</member>
<member name="T:Flurl.Url">
<summary>
A mutable object for fluently building and parsing URLs.
</summary>
</member>
<member name="P:Flurl.Url.Scheme">
<summary>
The scheme of the URL, i.e. "http". Does not include ":" delimiter. Empty string if the URL is relative.
</summary>
</member>
<member name="P:Flurl.Url.UserInfo">
<summary>
i.e. "user:pass" in "https://user:pass@www.site.com". Empty string if not present.
</summary>
</member>
<member name="P:Flurl.Url.Host">
<summary>
i.e. "www.site.com" in "https://www.site.com:8080/path". Does not include user info or port.
</summary>
</member>
<member name="P:Flurl.Url.Port">
<summary>
Port number of the URL. Null if not explicitly specified.
</summary>
</member>
<member name="P:Flurl.Url.Authority">
<summary>
i.e. "www.site.com:8080" in "https://www.site.com:8080/path". Includes both user info and port, if included.
</summary>
</member>
<member name="P:Flurl.Url.Root">
<summary>
i.e. "https://www.site.com:8080" in "https://www.site.com:8080/path" (everything before the path).
</summary>
</member>
<member name="P:Flurl.Url.Path">
<summary>
i.e. "/path" in "https://www.site.com/path". Empty string if not present. Leading and trailing "/" retained exactly as specified by user.
</summary>
</member>
<member name="P:Flurl.Url.PathSegments">
<summary>
The "/"-delimited segments of the path, not including leading or trailing "/" characters.
</summary>
</member>
<member name="P:Flurl.Url.Query">
<summary>
i.e. "x=1&amp;y=2" in "https://www.site.com/path?x=1&amp;y=2". Does not include "?".
</summary>
</member>
<member name="P:Flurl.Url.QueryParams">
<summary>
Query parsed to name/value pairs.
</summary>
</member>
<member name="P:Flurl.Url.Fragment">
<summary>
i.e. "frag" in "https://www.site.com/path?x=y#frag". Does not include "#".
</summary>
</member>
<member name="P:Flurl.Url.IsRelative">
<summary>
True if URL does not start with a non-empty scheme. i.e. true for "https://www.site.com", false for "//www.site.com".
</summary>
</member>
<member name="P:Flurl.Url.IsSecureScheme">
<summary>
True if Url is absolute and scheme is https or wss.
</summary>
</member>
<member name="M:Flurl.Url.#ctor(System.String)">
<summary>
Constructs a Url object from a string.
</summary>
<param name="baseUrl">The URL to use as a starting point.</param>
</member>
<member name="M:Flurl.Url.#ctor(System.Uri)">
<summary>
Constructs a Url object from a System.Uri.
</summary>
<param name="uri">The System.Uri (required)</param>
<exception cref="T:System.ArgumentNullException"><paramref name="uri"/> is <see langword="null" />.</exception>
</member>
<member name="M:Flurl.Url.Parse(System.String)">
<summary>
Parses a URL string into a Flurl.Url object.
</summary>
</member>
<member name="M:Flurl.Url.ParseQueryParams(System.String)">
<summary>
Parses a URL query to a QueryParamCollection.
</summary>
<param name="query">The URL query to parse.</param>
</member>
<member name="M:Flurl.Url.ParsePathSegments(System.String)">
<summary>
Splits the given path into segments, encoding illegal characters, "?", and "#".
</summary>
<param name="path">The path to split.</param>
<returns></returns>
</member>
<member name="M:Flurl.Url.AppendPathSegment(System.Object,System.Boolean)">
<summary>
Appends a segment to the URL path, ensuring there is one and only one '/' character as a separator.
</summary>
<param name="segment">The segment to append</param>
<param name="fullyEncode">If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters).</param>
<returns>the Url object with the segment appended</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="segment"/> is <see langword="null" />.</exception>
</member>
<member name="M:Flurl.Url.AppendPathSegments(System.Object[])">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a seperator.
</summary>
<param name="segments">The segments to append</param>
<returns>the Url object with the segments appended</returns>
</member>
<member name="M:Flurl.Url.AppendPathSegments(System.Collections.Generic.IEnumerable{System.Object})">
<summary>
Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a seperator.
</summary>
<param name="segments">The segments to append</param>
<returns>the Url object with the segments appended</returns>
</member>
<member name="M:Flurl.Url.RemovePathSegment">
<summary>
Removes the last path segment from the URL.
</summary>
<returns>The Url object.</returns>
</member>
<member name="M:Flurl.Url.RemovePath">
<summary>
Removes the entire path component of the URL, including the leading slash.
</summary>
<returns>The Url object.</returns>
</member>
<member name="M:Flurl.Url.SetQueryParam(System.String,System.Object,Flurl.NullValueHandling)">
<summary>
Adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>The Url object with the query parameter added</returns>
</member>
<member name="M:Flurl.Url.SetQueryParam(System.String,System.String,System.Boolean,Flurl.NullValueHandling)">
<summary>
Adds a parameter to the query, overwriting the value if name exists.
</summary>
<param name="name">Name of query parameter</param>
<param name="value">Value of query parameter</param>
<param name="isEncoded">Set to true to indicate the value is already URL-encoded</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>The Url object with the query parameter added</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="name"/> is <see langword="null" />.</exception>
</member>
<member name="M:Flurl.Url.SetQueryParam(System.String)">
<summary>
Adds a parameter without a value to the query, removing any existing value.
</summary>
<param name="name">Name of query parameter</param>
<returns>The Url object with the query parameter added</returns>
</member>
<member name="M:Flurl.Url.SetQueryParams(System.Object,Flurl.NullValueHandling)">
<summary>
Parses values (usually an anonymous object or dictionary) into name/value pairs and adds them to the query, overwriting any that already exist.
</summary>
<param name="values">Typically an anonymous object, ie: new { x = 1, y = 2 }</param>
<param name="nullValueHandling">Indicates how to handle null values. Defaults to Remove (any existing)</param>
<returns>The Url object with the query parameters added</returns>
</member>
<member name="M:Flurl.Url.SetQueryParams(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Adds multiple parameters without values to the query.
</summary>
<param name="names">Names of query parameters.</param>
<returns>The Url object with the query parameter added</returns>
</member>
<member name="M:Flurl.Url.SetQueryParams(System.String[])">
<summary>
Adds multiple parameters without values to the query.
</summary>
<param name="names">Names of query parameters</param>
<returns>The Url object with the query parameter added.</returns>
</member>
<member name="M:Flurl.Url.RemoveQueryParam(System.String)">
<summary>
Removes a name/value pair from the query by name.
</summary>
<param name="name">Query string parameter name to remove</param>
<returns>The Url object with the query parameter removed</returns>
</member>
<member name="M:Flurl.Url.RemoveQueryParams(System.String[])">
<summary>
Removes multiple name/value pairs from the query by name.
</summary>
<param name="names">Query string parameter names to remove</param>
<returns>The Url object.</returns>
</member>
<member name="M:Flurl.Url.RemoveQueryParams(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Removes multiple name/value pairs from the query by name.
</summary>
<param name="names">Query string parameter names to remove</param>
<returns>The Url object with the query parameters removed</returns>
</member>
<member name="M:Flurl.Url.RemoveQuery">
<summary>
Removes the entire query component of the URL.
</summary>
<returns>The Url object.</returns>
</member>
<member name="M:Flurl.Url.SetFragment(System.String)">
<summary>
Set the URL fragment fluently.
</summary>
<param name="fragment">The part of the URL after #</param>
<returns>The Url object with the new fragment set</returns>
</member>
<member name="M:Flurl.Url.RemoveFragment">
<summary>
Removes the URL fragment including the #.
</summary>
<returns>The Url object with the fragment removed</returns>
</member>
<member name="M:Flurl.Url.ResetToRoot">
<summary>
Resets the URL to its root, including the scheme, any user info, host, and port (if specified).
</summary>
<returns>The Url object trimmed to its root.</returns>
</member>
<member name="M:Flurl.Url.Reset">
<summary>
Resets the URL to its original state as set in the constructor.
</summary>
</member>
<member name="M:Flurl.Url.Clone">
<summary>
Creates a copy of this Url.
</summary>
</member>
<member name="M:Flurl.Url.ToString(System.Boolean)">
<summary>
Converts this Url object to its string representation.
</summary>
<param name="encodeSpaceAsPlus">Indicates whether to encode spaces with the "+" character instead of "%20"</param>
<returns></returns>
</member>
<member name="M:Flurl.Url.ToString">
<summary>
Converts this Url object to its string representation.
</summary>
<returns></returns>
</member>
<member name="M:Flurl.Url.ToUri">
<summary>
Converts this Url object to System.Uri
</summary>
<returns>The System.Uri object</returns>
</member>
<member name="M:Flurl.Url.op_Implicit(Flurl.Url)~System.String">
<summary>
Implicit conversion from Url to String.
</summary>
<param name="url">The Url object</param>
<returns>The string</returns>
</member>
<member name="M:Flurl.Url.op_Implicit(System.String)~Flurl.Url">
<summary>
Implicit conversion from String to Url.
</summary>
<param name="url">The String representation of the URL</param>
<returns>The string</returns>
</member>
<member name="M:Flurl.Url.op_Implicit(System.Uri)~Flurl.Url">
<summary>
Implicit conversion from System.Uri to Flurl.Url.
</summary>
<returns>The string</returns>
</member>
<member name="M:Flurl.Url.Equals(System.Object)">
<summary>
True if obj is an instance of Url and its string representation is equal to this instance's string representation.
</summary>
<param name="obj">The object to compare to this instance.</param>
<returns></returns>
</member>
<member name="M:Flurl.Url.GetHashCode">
<summary>
Returns the hashcode for this Url.
</summary>
</member>
<member name="M:Flurl.Url.Combine(System.String[])">
<summary>
Basically a Path.Combine for URLs. Ensures exactly one '/' separates each segment,
and exactly on '&amp;' separates each query parameter.
URL-encodes illegal characters but not reserved characters.
</summary>
<param name="parts">URL parts to combine.</param>
</member>
<member name="M:Flurl.Url.Decode(System.String,System.Boolean)">
<summary>
Decodes a URL-encoded string.
</summary>
<param name="s">The URL-encoded string.</param>
<param name="interpretPlusAsSpace">If true, any '+' character will be decoded to a space.</param>
<returns></returns>
</member>
<member name="M:Flurl.Url.Encode(System.String,System.Boolean)">
<summary>
URL-encodes a string, including reserved characters such as '/' and '?'.
</summary>
<param name="s">The string to encode.</param>
<param name="encodeSpaceAsPlus">If true, spaces will be encoded as + signs. Otherwise, they'll be encoded as %20.</param>
<returns>The encoded URL.</returns>
</member>
<member name="M:Flurl.Url.EncodeIllegalCharacters(System.String,System.Boolean)">
<summary>
URL-encodes characters in a string that are neither reserved nor unreserved. Avoids encoding reserved characters such as '/' and '?'. Avoids encoding '%' if it begins a %-hex-hex sequence (i.e. avoids double-encoding).
</summary>
<param name="s">The string to encode.</param>
<param name="encodeSpaceAsPlus">If true, spaces will be encoded as + signs. Otherwise, they'll be encoded as %20.</param>
<returns>The encoded URL.</returns>
</member>
<member name="M:Flurl.Url.IsValid(System.String)">
<summary>
Checks if a string is a well-formed absolute URL.
</summary>
<param name="url">The string to check</param>
<returns>true if the string is a well-formed absolute URL</returns>
</member>
<member name="T:Flurl.Util.CommonExtensions">
<summary>
CommonExtensions for objects.
</summary>
</member>
<member name="M:Flurl.Util.CommonExtensions.ToKeyValuePairs(System.Object)">
<summary>
Returns a key-value-pairs representation of the object.
For strings, URL query string format assumed and pairs are parsed from that.
For objects that already implement IEnumerable&lt;KeyValuePair&gt;, the object itself is simply returned.
For all other objects, all publicly readable properties are extracted and returned as pairs.
</summary>
<param name="obj">The object to parse into key-value pairs</param>
<returns></returns>
<exception cref="T:System.ArgumentNullException"><paramref name="obj"/> is <see langword="null" />.</exception>
</member>
<member name="M:Flurl.Util.CommonExtensions.ToInvariantString(System.Object)">
<summary>
Returns a string that represents the current object, using CultureInfo.InvariantCulture where possible.
Dates are represented in IS0 8601.
</summary>
</member>
<member name="M:Flurl.Util.CommonExtensions.SplitOnFirstOccurence(System.String,System.String)">
<summary>
Splits at the first occurrence of the given separator.
</summary>
<param name="s">The string to split.</param>
<param name="separator">The separator to split on.</param>
<returns>Array of at most 2 strings. (1 if separator is not found.)</returns>
</member>
<member name="M:Flurl.Util.CommonExtensions.Merge``2(System.Collections.Generic.IDictionary{``0,``1},System.Collections.Generic.IDictionary{``0,``1})">
<summary>
Merges the key/value pairs from d2 into d1, without overwriting those already set in d1.
</summary>
</member>
<member name="M:Flurl.Util.CommonExtensions.StripQuotes(System.String)">
<summary>
Strips any single quotes or double quotes from the beginning and end of a string.
</summary>
</member>
<member name="M:Flurl.Util.CommonExtensions.IsIP(System.String)">
<summary>
True if the given string is a valid IPv4 address.
</summary>
</member>
<member name="T:Flurl.Util.INameValueListBase`1">
<summary>
Defines common methods for INameValueList and IReadOnlyNameValueList.
</summary>
</member>
<member name="M:Flurl.Util.INameValueListBase`1.FirstOrDefault(System.String)">
<summary>
Returns the first Value of the given Name if one exists, otherwise null or default value.
</summary>
</member>
<member name="M:Flurl.Util.INameValueListBase`1.TryGetFirst(System.String,`0@)">
<summary>
Gets the first Value of the given Name, if one exists.
</summary>
<returns>true if any item of the given name is found, otherwise false.</returns>
</member>
<member name="M:Flurl.Util.INameValueListBase`1.GetAll(System.String)">
<summary>
Gets all Values of the given Name.
</summary>
</member>
<member name="M:Flurl.Util.INameValueListBase`1.Contains(System.String)">
<summary>
True if any items with the given Name exist.
</summary>
</member>
<member name="M:Flurl.Util.INameValueListBase`1.Contains(System.String,`0)">
<summary>
True if any item with the given Name and Value exists.
</summary>
</member>
<member name="T:Flurl.Util.INameValueList`1">
<summary>
Defines an ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical.
</summary>
</member>
<member name="M:Flurl.Util.INameValueList`1.Add(System.String,`0)">
<summary>
Adds a new Name/Value pair.
</summary>
</member>
<member name="M:Flurl.Util.INameValueList`1.AddOrReplace(System.String,`0)">
<summary>
Replaces the first occurrence of the given Name with the given Value and removes any others,
or adds a new Name/Value pair if none exist.
</summary>
</member>
<member name="M:Flurl.Util.INameValueList`1.Remove(System.String)">
<summary>
Removes all items of the given Name.
</summary>
<returns>true if any item of the given name is found, otherwise false.</returns>
</member>
<member name="T:Flurl.Util.IReadOnlyNameValueList`1">
<summary>
Defines a read-only ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical.
</summary>
</member>
<member name="T:Flurl.Util.NameValueList`1">
<summary>
An ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical.
Useful for things where a dictionary would work great if not for those pesky edge cases (headers, cookies, etc).
</summary>
</member>
<member name="M:Flurl.Util.NameValueList`1.#ctor(System.Boolean)">
<summary>
Instantiates a new empty NameValueList.
</summary>
</member>
<member name="M:Flurl.Util.NameValueList`1.#ctor(System.Collections.Generic.IEnumerable{System.ValueTuple{System.String,`0}},System.Boolean)">
<summary>
Instantiates a new NameValueList with the Name/Value pairs provided.
</summary>
</member>
<member name="M:Flurl.Util.NameValueList`1.Add(System.String,`0)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.AddOrReplace(System.String,`0)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.Remove(System.String)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.FirstOrDefault(System.String)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.TryGetFirst(System.String,`0@)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.GetAll(System.String)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.Contains(System.String)">
<inheritdoc />
</member>
<member name="M:Flurl.Util.NameValueList`1.Contains(System.String,`0)">
<inheritdoc />
</member>
</members>
</doc>

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +0,0 @@
{
"version": 2,
"contentHash": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
"source": "https://api.nuget.org/v3/index.json"
}

Binary file not shown.

View File

@ -1,31 +0,0 @@
This Microsoft .NET Library may incorporate components from the projects listed
below. Microsoft licenses these components under the Microsoft .NET Library
software license terms. The original copyright notices and the licenses under
which Microsoft received such components are set forth below for informational
purposes only. Microsoft reserves all rights not expressly granted herein,
whether by implication, estoppel or otherwise.
1. .NET Core (https://github.com/dotnet/core/)
.NET Core
Copyright (c) .NET Foundation and Contributors
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@ -1,128 +0,0 @@
MICROSOFT SOFTWARE LICENSE TERMS
MICROSOFT .NET LIBRARY
These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft
· updates,
· supplements,
· Internet-based services, and
· support services
for this software, unless other terms accompany those items. If so, those terms apply.
BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.
IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE PERPETUAL RIGHTS BELOW.
1. INSTALLATION AND USE RIGHTS.
a. Installation and Use. You may install and use any number of copies of the software to design, develop and test your programs.
b. Third Party Programs. The software may include third party programs that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party program are included for your information only.
2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.
a. DISTRIBUTABLE CODE. The software is comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in programs you develop if you comply with the terms below.
i. Right to Use and Distribute.
· You may copy and distribute the object code form of the software.
· Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.
ii. Distribution Requirements. For any Distributable Code you distribute, you must
· add significant primary functionality to it in your programs;
· require distributors and external end users to agree to terms that protect it at least as much as this agreement;
· display your valid copyright notice on your programs; and
· indemnify, defend, and hold harmless Microsoft from any claims, including attorneys fees, related to the distribution or use of your programs.
iii. Distribution Restrictions. You may not
· alter any copyright, trademark or patent notice in the Distributable Code;
· use Microsofts trademarks in your programs names or in a way that suggests your programs come from or are endorsed by Microsoft;
· include Distributable Code in malicious, deceptive or unlawful programs; or
· modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that
· the code be disclosed or distributed in source code form; or
· others have the right to modify it.
3. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not
· work around any technical limitations in the software;
· reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;
· publish the software for others to copy;
· rent, lease or lend the software;
· transfer the software or this agreement to any third party; or
· use the software for commercial software hosting services.
4. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.
5. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.
6. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.
7. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it.
8. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.
9. APPLICABLE LAW.
a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.
b. Outside the United States. If you acquired the software in any other country, the laws of that country apply.
10. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.
11. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS OR STATUTORY GUARANTEES UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
FOR AUSTRALIA YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS.
12. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.
This limitation applies to
· anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and
· claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.
It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.
Please note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French.
Remarque : Ce logiciel étant distribué au Québec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en français.
EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute utilisation de ce logiciel est à votre seule risque et péril. Microsoft naccorde aucune autre garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualité marchande, dadéquation à un usage particulier et dabsence de contrefaçon sont exclues.
LIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices.
Cette limitation concerne :
· tout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et
· les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou dune autre faute dans la limite autorisée par la loi en vigueur.
Elle sapplique également, même si Microsoft connaissait ou devrait connaître léventualité dun tel dommage. Si votre pays nautorise pas lexclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou lexclusion ci-dessus ne sappliquera pas à votre égard.
EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir dautres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas.

Binary file not shown.

View File

@ -8,6 +8,15 @@ bring it to our attention. Post an issue or email us:
The attached notices are provided for information only.
License notice for ASP.NET
-------------------------------
Copyright (c) .NET Foundation. All rights reserved.
Licensed under the Apache License, Version 2.0.
Available at
https://github.com/aspnet/AspNetCore/blob/master/LICENSE.txt
License notice for Slicing-by-8
-------------------------------
@ -307,3 +316,60 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
License notice for Json.NET
-------------------------------
https://github.com/JamesNK/Newtonsoft.Json/blob/master/LICENSE.md
The MIT License (MIT)
Copyright (c) 2007 James Newton-King
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
License notice for vectorized base64 encoding / decoding
--------------------------------------------------------
Copyright (c) 2005-2007, Nick Galbreath
Copyright (c) 2013-2017, Alfred Klomp
Copyright (c) 2015-2017, Wojciech Mula
Copyright (c) 2016-2017, Matthieu Darbois
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
- Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Some files were not shown because too many files have changed in this diff Show More