diff options
author | brandonmwest <brawest@gmail.com> | 2013-07-29 12:51:31 -0700 |
---|---|---|
committer | brandonmwest <brawest@gmail.com> | 2013-07-29 12:51:31 -0700 |
commit | 8313c8bab44bef9fde57ac2e22f994427d8d83bd (patch) | |
tree | 1c8c5550dab4b2c6fd62ae9698c5ecaaa2d8f5a0 | |
parent | 2a1b360b89ac07fab5e4a377f380bd563dfa5f7e (diff) | |
parent | 072cd3ebf52417a275b5180cd1e6841ca4aa86df (diff) | |
download | sendgrid-csharp-8313c8bab44bef9fde57ac2e22f994427d8d83bd.zip sendgrid-csharp-8313c8bab44bef9fde57ac2e22f994427d8d83bd.tar.gz sendgrid-csharp-8313c8bab44bef9fde57ac2e22f994427d8d83bd.tar.bz2 |
Merge pull request #33 from sendgrid/bw-net45
Remove RestSharp, refactor to System.Net.Http.HttpClient
105 files changed, 2655 insertions, 16775 deletions
@@ -1,16 +1,21 @@ +#Requirements + +This library requires .NET 4.0 and above. + +#Installation + To use SendGrid in your C# project, you can either <a href="https://github.com/sendgrid/sendgrid-csharp.git">download the SendGrid C# .NET libraries directly from our Github repository</a> or, if you have the NuGet package manager installed, you can grab them automatically. ``` PM> Install-Package SendGrid ``` -The SendGrid library depends on [RestSharp](https://github.com/restsharp/RestSharp). NuGet will handle this dependency automatically, otherwise you will need to add it manually. - Once you have the SendGrid libraries properly referenced in your project, you can include calls to them in your code. For a sample implementation, check the [Example](https://github.com/sendgrid/sendgrid-csharp/tree/master/SendGrid/Example) folder. Add the following namespaces to use the library: ```csharp +using System; using System.Net; using System.Net.Mail; using SendGridMail; diff --git a/SendGrid/Example/Example.csproj b/SendGrid/Example/Example.csproj index 1f85cc2..97a47b4 100755..100644 --- a/SendGrid/Example/Example.csproj +++ b/SendGrid/Example/Example.csproj @@ -24,6 +24,7 @@ <DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
+ <Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>x86</PlatformTarget>
@@ -33,6 +34,7 @@ <DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
+ <Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
diff --git a/SendGrid/Example/Program.cs b/SendGrid/Example/Program.cs index 29b02e6..4c323cf 100755 --- a/SendGrid/Example/Program.cs +++ b/SendGrid/Example/Program.cs @@ -1,10 +1,6 @@ using System;
-using System.Collections.Generic;
-using System.IO;
-using System.Linq;
using System.Net;
using System.Net.Mail;
-using System.Text;
using SendGridMail;
using SendGridMail.Transport;
@@ -15,22 +11,21 @@ namespace Example // this code is used for the SMTPAPI examples
static void Main(string[] args)
{
- var username = "sgrid_username";
- var password = "sgrid_password";
- var from = "bar@domain.com";
- var to = new List<String>
- {
- "foo@domain.com",
- "raz@domain.com"
- };
+ // Create the email object first, then add the properties.
+ SendGrid myMessage = SendGrid.GetInstance();
+ myMessage.AddTo("anna@example.com");
+ myMessage.From = new MailAddress("john@example.com", "John Smith");
+ myMessage.Subject = "Testing the SendGrid Library";
+ myMessage.Text = "Hello World!";
- //initialize the SMTPAPI example class
- var smtpapi = new SMTPAPI(username, password, from, to);
- var restapi = new WEBAPI(username, password, from, to);
+ // Create credentials, specifying your user name and password.
+ var credentials = new NetworkCredential("username", "password");
- //use this section to test out our Web and SMTP examples!
- smtpapi.SimpleHTMLEmail();
- restapi.SimpleHTMLEmail();
+ // Create a Web transport for sending email.
+ var transportWeb = Web.GetInstance(credentials);
+
+ // Send the email.
+ transportWeb.Deliver(myMessage);
Console.WriteLine("Done!");
Console.ReadLine();
diff --git a/SendGrid/Example/Properties/AssemblyInfo.cs b/SendGrid/Example/Properties/AssemblyInfo.cs index e7c46f8..06a0907 100755..100644 --- a/SendGrid/Example/Properties/AssemblyInfo.cs +++ b/SendGrid/Example/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
+[assembly: AssemblyVersion("1.2.0")]
+[assembly: AssemblyFileVersion("1.2.0")]
diff --git a/SendGrid/Example/app.config b/SendGrid/Example/app.config index e212038..e212038 100755..100644 --- a/SendGrid/Example/app.config +++ b/SendGrid/Example/app.config diff --git a/SendGrid/SendGrid.sln b/SendGrid/SendGrid.sln index cf551e2..61b63a3 100755..100644 --- a/SendGrid/SendGrid.sln +++ b/SendGrid/SendGrid.sln @@ -1,12 +1,14 @@
-Microsoft Visual Studio Solution File, Format Version 11.00
-# Visual Studio 2010
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mail", "SendGridMail\Mail.csproj", "{3C687BEF-FF50-44AD-8315-2D4237281AF8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests", "Tests\Tests.csproj", "{0319E73A-7039-4858-B047-1EDF88BB6BD1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Example", "Example\Example.csproj", "{F39ADCE7-63B5-406D-9BE8-C407920B6B8F}"
EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{DAC6CBA4-41D4-490D-B9BE-A8E3AB2E8A96}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
diff --git a/SendGrid/SendGridMail/Mail.csproj b/SendGrid/SendGridMail/Mail.csproj index 7744b73..e7b0cde 100644 --- a/SendGrid/SendGridMail/Mail.csproj +++ b/SendGrid/SendGridMail/Mail.csproj @@ -11,6 +11,8 @@ <RootNamespace>SendGridMail</RootNamespace>
<AssemblyName>SendGridMail</AssemblyName>
<FileAlignment>512</FileAlignment>
+ <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
+ <TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
@@ -20,6 +22,7 @@ <DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
+ <Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
@@ -28,15 +31,14 @@ <DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
+ <Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
- <Reference Include="RestSharp">
- <HintPath>..\packages\RestSharp.104.1\lib\net4\RestSharp.dll</HintPath>
- <Private>False</Private>
- </Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Net" />
+ <Reference Include="System.Net.Http" />
+ <Reference Include="System.Net.Http.WebRequest" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.ServiceModel.Web" />
<Reference Include="System.Web" />
@@ -57,6 +59,9 @@ <Compile Include="Transport\SMTP.cs" />
<Compile Include="Utils.cs" />
</ItemGroup>
+ <ItemGroup>
+ <None Include="packages.config" />
+ </ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
@@ -65,7 +70,4 @@ <Target Name="AfterBuild">
</Target>
-->
- <ItemGroup>
- <None Include="packages.config" />
- </ItemGroup>
</Project>
\ No newline at end of file diff --git a/SendGrid/SendGridMail/Mail.nuspec b/SendGrid/SendGridMail/Mail.nuspec deleted file mode 100755 index 0611930..0000000 --- a/SendGrid/SendGridMail/Mail.nuspec +++ /dev/null @@ -1,18 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<package > - <metadata> - <id>SendGrid</id> - <version>1.1.1</version> - <title>SendGrid</title> - <authors>CJ Buchmann, Tyler Bischel, Eric Becking, Brandon West</authors> - <owners>Sendgrid</owners> - <requireLicenseAcceptance>false</requireLicenseAcceptance> - <description>Basic C# client library and examples for using SendGrid API's to send mail. Github repo located at : https://github.com/sendgrid/sendgrid-csharp</description> - <releaseNotes>Removed CodeScales, now uses RestSharp</releaseNotes> - <copyright>Copyright 2013</copyright> - <tags>SendGrid Email Mail Microsoft Azure</tags> - <dependencies> - <dependency id="RestSharp" version="104.1" /> - </dependencies> - </metadata> -</package>
\ No newline at end of file diff --git a/SendGrid/SendGridMail/Properties/AssemblyInfo.cs b/SendGrid/SendGridMail/Properties/AssemblyInfo.cs index 1660c37..32cc1dd 100755..100644 --- a/SendGrid/SendGridMail/Properties/AssemblyInfo.cs +++ b/SendGrid/SendGridMail/Properties/AssemblyInfo.cs @@ -10,7 +10,7 @@ using System.Runtime.InteropServices; [assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("SendGrid")]
[assembly: AssemblyProduct("SendGridMail")]
-[assembly: AssemblyCopyright("Copyright © 2012")]
+[assembly: AssemblyCopyright("Copyright © 2013")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@@ -41,5 +41,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.1.0.0")]
-[assembly: AssemblyFileVersion("1.1.0.0")]
+[assembly: AssemblyVersion("1.2.0")]
+[assembly: AssemblyFileVersion("1.2.0")]
diff --git a/SendGrid/SendGridMail/SendGrid.1.1.1.nupkg b/SendGrid/SendGridMail/SendGrid.1.1.1.nupkg Binary files differdeleted file mode 100644 index edb228f..0000000 --- a/SendGrid/SendGridMail/SendGrid.1.1.1.nupkg +++ /dev/null diff --git a/SendGrid/SendGridMail/Transport/Web.cs b/SendGrid/SendGridMail/Transport/Web.cs index 6ff89d5..2e32f47 100644 --- a/SendGrid/SendGridMail/Transport/Web.cs +++ b/SendGrid/SendGridMail/Transport/Web.cs @@ -1,175 +1,193 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Net; -using System.Text; +using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Net;
+using System.Net.Http.Headers;
using System.Xml;
-using RestSharp; - -namespace SendGridMail.Transport -{ - public class Web : ITransport - { - #region Properties - //TODO: Make this configurable - public const String BaseURl = "sendgrid.com/api/"; - public const String Endpoint = "mail.send"; - public const String JsonFormat = "json"; - public const String XmlFormat = "xml"; - - private readonly NetworkCredential _credentials; - private readonly bool Https; - #endregion - - /// <summary> - /// Factory method for Web transport of sendgrid messages - /// </summary> - /// <param name="credentials">SendGrid credentials for sending mail messages</param> - /// <param name="https">Use https?</param> - /// <returns>New instance of the transport mechanism</returns> - public static Web GetInstance(NetworkCredential credentials, bool https = true) - { - return new Web(credentials, https); - } - - /// <summary> - /// Creates a new Web interface for sending mail. Preference is using the Factory method. - /// </summary> - /// <param name="credentials">SendGrid user parameters</param> - /// <param name="https">Use https?</param> - internal Web(NetworkCredential credentials, bool https = true) - { - Https = https; - _credentials = credentials; - } - - /// <summary> - /// Delivers a message over SendGrid's Web interface - /// </summary> - /// <param name="message"></param> - public void Deliver(ISendGrid message) - { - var client = Https ? new RestClient("https://" + BaseURl) : new RestClient("http://" + BaseURl); - var request = new RestRequest(Endpoint + ".xml", Method.POST); - AttachFormParams(message, request); - AttachFiles(message, request); - var response = client.Execute(request); - CheckForErrors(response); - } - - #region Support Methods - private void AttachFormParams(ISendGrid message, RestRequest request) - { - var formParams = FetchFormParams(message); - formParams.ForEach(kvp => request.AddParameter(kvp.Key, kvp.Value)); - } - - private void AttachFiles (ISendGrid message, RestRequest request) - { - //TODO: think the files are being sent in the POST data... but we need to add them as params as well - - var files = FetchFileBodies (message); - files.ForEach (kvp => request.AddFile ("files[" + Path.GetFileName (kvp.Key) + "]", kvp.Value.FullName)); - - var streamingFiles = FetchStreamingFileBodies(message); - foreach (KeyValuePair<string, MemoryStream> file in streamingFiles) { - var name = file.Key; - var stream = file.Value; - var writer = new Action<Stream>( - delegate(Stream s) - { - stream.CopyTo(s); - } - ); - - request.AddFile("files[" + name + "]", writer, name); - } - } - - private void CheckForErrors (IRestResponse response) - { - //transport error - if (response.ResponseStatus == ResponseStatus.Error) { - throw new Exception(response.ErrorMessage); - } - - //TODO: check for HTTP errors... don't throw exceptions just pass info along? - var content = response.Content; - var stream = new MemoryStream(Encoding.UTF8.GetBytes(content)); - - using (var reader = XmlReader.Create(stream)) - { - while (reader.Read()) - { - if (reader.IsStartElement()) - { - switch (reader.Name) - { - case "result": - break; - case "message": // success - bool errors = reader.ReadToNextSibling("errors"); - if (errors) - throw new ProtocolViolationException(content); - else - return; - case "error": // failure - throw new ProtocolViolationException(content); - default: - throw new ArgumentException("Unknown element: " + reader.Name); - } - } - } - } - } - - internal List<KeyValuePair<String, String>> FetchFormParams(ISendGrid message) - { - var result = new List<KeyValuePair<string, string>>() - { - new KeyValuePair<String, String>("api_user", _credentials.UserName), - new KeyValuePair<String, String>("api_key", _credentials.Password), - new KeyValuePair<String, String>("headers", message.Headers.Count == 0 ? null : Utils.SerializeDictionary(message.Headers)), - new KeyValuePair<String, String>("replyto", message.ReplyTo.Length == 0 ? null : message.ReplyTo.ToList().First().Address), - new KeyValuePair<String, String>("from", message.From.Address), - new KeyValuePair<String, String>("fromname", message.From.DisplayName), - new KeyValuePair<String, String>("subject", message.Subject), - new KeyValuePair<String, String>("text", message.Text), - new KeyValuePair<String, String>("html", message.Html), - new KeyValuePair<String, String>("x-smtpapi", message.Header.AsJson()) - }; - if(message.To != null) - { - result = result.Concat(message.To.ToList().Select(a => new KeyValuePair<String, String>("to[]", a.Address))) - .Concat(message.To.ToList().Select(a => new KeyValuePair<String, String>("toname[]", a.DisplayName))) - .ToList(); - } - if(message.Bcc != null) - { - result = result.Concat(message.Bcc.ToList().Select(a => new KeyValuePair<String, String>("bcc[]", a.Address))) - .ToList(); - } - if(message.Cc != null) - { - result = result.Concat(message.Cc.ToList().Select(a => new KeyValuePair<String, String>("cc[]", a.Address))) - .ToList(); - } - return result.Where(r => !String.IsNullOrEmpty(r.Value)).ToList(); - } - - internal List<KeyValuePair<String, MemoryStream>> FetchStreamingFileBodies(ISendGrid message) - { - return message.StreamedAttachments.Select(kvp => kvp).ToList(); - } - - internal List<KeyValuePair<String, FileInfo>> FetchFileBodies(ISendGrid message) - { - if(message.Attachments == null) - return new List<KeyValuePair<string, FileInfo>>(); - return message.Attachments.Select(name => new KeyValuePair<String, FileInfo>(name, new FileInfo(name))).ToList(); - } - - #endregion - } -} +using System.Net.Http;
+
+namespace SendGridMail.Transport
+{
+ public class Web : ITransport
+ {
+ #region Properties
+ //TODO: Make this configurable
+ public const String BaseUrl = "sendgrid.com/api/";
+ public const String Endpoint = "/api/mail.send";
+ public const String JsonFormat = "json";
+ public const String XmlFormat = "xml";
+
+ private readonly NetworkCredential _credentials;
+ private readonly bool _https;
+ #endregion
+
+ /// <summary>
+ /// Factory method for Web transport of sendgrid messages
+ /// </summary>
+ /// <param name="credentials">SendGrid credentials for sending mail messages</param>
+ /// <param name="https">Use https?</param>
+ /// <returns>New instance of the transport mechanism</returns>
+ public static Web GetInstance(NetworkCredential credentials, bool https = true)
+ {
+ return new Web(credentials, https);
+ }
+
+ /// <summary>
+ /// Creates a new Web interface for sending mail. Preference is using the Factory method.
+ /// </summary>
+ /// <param name="credentials">SendGrid user parameters</param>
+ /// <param name="https">Use https?</param>
+ internal Web(NetworkCredential credentials, bool https = true)
+ {
+ _https = https;
+ _credentials = credentials;
+ }
+
+ /// <summary>
+ /// Delivers a message over SendGrid's Web interface
+ /// </summary>
+ /// <param name="message"></param>
+ public void Deliver(ISendGrid message)
+ {
+ var client = new HttpClient
+ {
+ BaseAddress = _https ? new Uri("https://" + BaseUrl) : new Uri("http://" + BaseUrl)
+ };
+
+ var content = new MultipartFormDataContent();
+ AttachFormParams(message, content);
+ AttachFiles(message, content);
+ var response = client.PostAsync(Endpoint + ".xml", content).Result;
+ CheckForErrors(response);
+ }
+
+ #region Support Methods
+ private void AttachFormParams(ISendGrid message, MultipartFormDataContent content)
+ {
+ var formParams = FetchFormParams(message);
+ foreach (var keyValuePair in formParams)
+ {
+ content.Add(new StringContent(keyValuePair.Value), keyValuePair.Key);
+ }
+ }
+
+ private void AttachFiles(ISendGrid message, MultipartFormDataContent content)
+ {
+ var files = FetchFileBodies (message);
+ foreach (var file in files)
+ {
+ var fs = new FileStream(file.Key, FileMode.Open, FileAccess.Read);
+ var fileContent = new StreamContent(fs);
+
+ fileContent.Headers.ContentDisposition = new ContentDispositionHeaderValue("form-data")
+ {
+ Name = "files[" + Path.GetFileName(file.Key) + "]",
+ FileName = Path.GetFileName(file.Key)
+ };
+
+ fileContent.Headers.ContentType = MediaTypeHeaderValue.Parse("application/octet-stream");
+ content.Add(fileContent);
+ }
+
+ var streamingFiles = FetchStreamingFileBodies(message);
+ foreach (KeyValuePair<string, MemoryStream> file in streamingFiles) {
+ var name = file.Key;
+ var stream = file.Value;
+ var fileContent = new StreamContent(stream);
+
+ fileContent.Headers.ContentDisposition = new ContentDispositionHeaderValue("form-data")
+ {
+ Name = "files[" + Path.GetFileName(file.Key) + "]",
+ FileName = Path.GetFileName(file.Key)
+ };
+
+ fileContent.Headers.ContentType = MediaTypeHeaderValue.Parse("application/octet-stream");
+ content.Add(fileContent);
+ }
+ }
+
+ private void CheckForErrors (HttpResponseMessage response)
+ {
+ //transport error
+ if (response.StatusCode != HttpStatusCode.OK) {
+ throw new Exception(response.ReasonPhrase);
+ }
+
+ //TODO: check for HTTP errors... don't throw exceptions just pass info along?
+ var content = response.Content.ReadAsStreamAsync().Result;
+
+ using (var reader = XmlReader.Create(content))
+ {
+ while (reader.Read())
+ {
+ if (reader.IsStartElement())
+ {
+ switch (reader.Name)
+ {
+ case "result":
+ break;
+ case "message": // success
+ bool errors = reader.ReadToNextSibling("errors");
+ if (errors)
+ throw new ProtocolViolationException();
+ return;
+ case "error": // failure
+ throw new ProtocolViolationException();
+ default:
+ throw new ArgumentException("Unknown element: " + reader.Name);
+ }
+ }
+ }
+ }
+ }
+
+ internal List<KeyValuePair<String, String>> FetchFormParams(ISendGrid message)
+ {
+ var result = new List<KeyValuePair<string, string>>
+ {
+ new KeyValuePair<String, String>("api_user", _credentials.UserName),
+ new KeyValuePair<String, String>("api_key", _credentials.Password),
+ new KeyValuePair<String, String>("headers", message.Headers.Count == 0 ? null : Utils.SerializeDictionary(message.Headers)),
+ new KeyValuePair<String, String>("replyto", message.ReplyTo.Length == 0 ? null : message.ReplyTo.ToList().First().Address),
+ new KeyValuePair<String, String>("from", message.From.Address),
+ new KeyValuePair<String, String>("fromname", message.From.DisplayName),
+ new KeyValuePair<String, String>("subject", message.Subject),
+ new KeyValuePair<String, String>("text", message.Text),
+ new KeyValuePair<String, String>("html", message.Html),
+ new KeyValuePair<String, String>("x-smtpapi", message.Header.AsJson())
+ };
+ if(message.To != null)
+ {
+ result = result.Concat(message.To.ToList().Select(a => new KeyValuePair<String, String>("to[]", a.Address)))
+ .Concat(message.To.ToList().Select(a => new KeyValuePair<String, String>("toname[]", a.DisplayName)))
+ .ToList();
+ }
+ if(message.Bcc != null)
+ {
+ result = result.Concat(message.Bcc.ToList().Select(a => new KeyValuePair<String, String>("bcc[]", a.Address)))
+ .ToList();
+ }
+ if(message.Cc != null)
+ {
+ result = result.Concat(message.Cc.ToList().Select(a => new KeyValuePair<String, String>("cc[]", a.Address)))
+ .ToList();
+ }
+ return result.Where(r => !String.IsNullOrEmpty(r.Value)).ToList();
+ }
+
+ internal List<KeyValuePair<String, MemoryStream>> FetchStreamingFileBodies(ISendGrid message)
+ {
+ return message.StreamedAttachments.Select(kvp => kvp).ToList();
+ }
+
+ internal List<KeyValuePair<String, FileInfo>> FetchFileBodies(ISendGrid message)
+ {
+ if(message.Attachments == null)
+ return new List<KeyValuePair<string, FileInfo>>();
+ return message.Attachments.Select(name => new KeyValuePair<String, FileInfo>(name, new FileInfo(name))).ToList();
+ }
+
+ #endregion
+ }
+}
diff --git a/SendGrid/SendGridMail/lib/CodeScales.Http.dll b/SendGrid/SendGridMail/lib/CodeScales.Http.dll Binary files differdeleted file mode 100755 index 2509b52..0000000 --- a/SendGrid/SendGridMail/lib/CodeScales.Http.dll +++ /dev/null diff --git a/SendGrid/SendGridMail/nuget/Mail.nuspec b/SendGrid/SendGridMail/nuget/Mail.nuspec new file mode 100644 index 0000000..f318478 --- /dev/null +++ b/SendGrid/SendGridMail/nuget/Mail.nuspec @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?>
+<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
+ <metadata>
+ <id>SendGrid</id>
+ <version>1.2.0</version>
+ <title>SendGrid</title>
+ <authors>CJ Buchmann,Tyler Bischel,Eric Becking,Brandon West</authors>
+ <owners>SendGrid</owners>
+ <requireLicenseAcceptance>false</requireLicenseAcceptance>
+ <description>Basic C# client library and examples for using SendGrid API's to send mail. Github repo located at : https://github.com/sendgrid/sendgrid-csharp</description>
+ <releaseNotes>Changed HTTP transport to use System.Net.Http</releaseNotes>
+ <copyright>Copyright 2013</copyright>
+ <tags>SendGrid Email Mail Microsoft Azure</tags>
+ <dependencies>
+ <dependency id="Microsoft.Net.Http" version="2.2.13" />
+ </dependencies>
+ </metadata>
+ <files>
+ <file src="lib\SendGridMail.dll" target="lib\SendGridMail.dll" />
+ </files>
+</package>
\ No newline at end of file diff --git a/SendGrid/SendGridMail/nuget/SendGrid.1.2.0.nupkg b/SendGrid/SendGridMail/nuget/SendGrid.1.2.0.nupkg Binary files differnew file mode 100644 index 0000000..bedbca7 --- /dev/null +++ b/SendGrid/SendGridMail/nuget/SendGrid.1.2.0.nupkg diff --git a/SendGrid/SendGridMail/nuget/lib/SendGridMail.dll b/SendGrid/SendGridMail/nuget/lib/SendGridMail.dll Binary files differnew file mode 100644 index 0000000..63f02e2 --- /dev/null +++ b/SendGrid/SendGridMail/nuget/lib/SendGridMail.dll diff --git a/SendGrid/SendGridMail/packages.config b/SendGrid/SendGridMail/packages.config index 6b04fa8..1ef8214 100644 --- a/SendGrid/SendGridMail/packages.config +++ b/SendGrid/SendGridMail/packages.config @@ -1,4 +1,4 @@ <?xml version="1.0" encoding="utf-8"?>
<packages>
- <package id="RestSharp" version="104.1" targetFramework="net40" />
+ <package id="Microsoft.Net.Http" version="2.0.20710.0" targetFramework="net45" />
</packages>
\ No newline at end of file diff --git a/SendGrid/Tests/Properties/AssemblyInfo.cs b/SendGrid/Tests/Properties/AssemblyInfo.cs index e1c3089..4e26c95 100755..100644 --- a/SendGrid/Tests/Properties/AssemblyInfo.cs +++ b/SendGrid/Tests/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
+[assembly: AssemblyVersion("1.2.0")]
+[assembly: AssemblyFileVersion("1.2.0")]
diff --git a/SendGrid/Tests/Tests.csproj b/SendGrid/Tests/Tests.csproj index ec8f6ab..b129641 100644 --- a/SendGrid/Tests/Tests.csproj +++ b/SendGrid/Tests/Tests.csproj @@ -11,6 +11,8 @@ <RootNamespace>Tests</RootNamespace>
<AssemblyName>Tests</AssemblyName>
<FileAlignment>512</FileAlignment>
+ <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
+ <TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
@@ -20,6 +22,7 @@ <DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
+ <Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
@@ -28,6 +31,7 @@ <DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
+ <Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="Moq">
diff --git a/SendGrid/packages/Microsoft.Net.Http.2.0.20710.0/Microsoft.Net.Http.2.0.20710.0.nupkg b/SendGrid/packages/Microsoft.Net.Http.2.0.20710.0/Microsoft.Net.Http.2.0.20710.0.nupkg Binary files differnew file mode 100644 index 0000000..1d93a25 --- /dev/null +++ b/SendGrid/packages/Microsoft.Net.Http.2.0.20710.0/Microsoft.Net.Http.2.0.20710.0.nupkg diff --git a/SendGrid/packages/Microsoft.Net.Http.2.0.20710.0/Microsoft.Net.Http.2.0.20710.0.nuspec b/SendGrid/packages/Microsoft.Net.Http.2.0.20710.0/Microsoft.Net.Http.2.0.20710.0.nuspec new file mode 100644 index 0000000..1173130 --- /dev/null +++ b/SendGrid/packages/Microsoft.Net.Http.2.0.20710.0/Microsoft.Net.Http.2.0.20710.0.nuspec @@ -0,0 +1,23 @@ +<?xml version="1.0"?>
+<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
+ <metadata>
+ <id>Microsoft.Net.Http</id>
+ <version>2.0.20710.0</version>
+ <title>Microsoft .NET Framework 4 HTTP Client Libraries</title>
+ <authors>Microsoft</authors>
+ <owners>Microsoft</owners>
+ <licenseUrl>http://www.microsoft.com/web/webpi/eula/MVC_4_eula_ENU.htm</licenseUrl>
+ <projectUrl>http://www.asp.net/web-api</projectUrl>
+ <requireLicenseAcceptance>true</requireLicenseAcceptance>
+ <description>This package provides a programming interface for modern HTTP applications. This package includes HttpClient for sending requests over HTTP, as well as HttpRequestMessage and HttpResponseMessage for processing HTTP messages.</description>
+ <frameworkAssemblies>
+ <frameworkAssembly assemblyName="System.Net.Http" targetFramework=".NETFramework4.5" />
+ <frameworkAssembly assemblyName="System.Net.Http.WebRequest" targetFramework=".NETFramework4.5" />
+ </frameworkAssemblies>
+ <references>
+ <reference file="System.Net.Http.dll" />
+ <reference file="System.Net.Http.WebRequest.dll" />
+ <reference file="_._" />
+ </references>
+ </metadata>
+</package>
\ No newline at end of file diff --git a/SendGrid/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.WebRequest.dll b/SendGrid/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.WebRequest.dll Binary files differnew file mode 100644 index 0000000..b26b59a --- /dev/null +++ b/SendGrid/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.WebRequest.dll diff --git a/SendGrid/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.WebRequest.xml b/SendGrid/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.WebRequest.xml new file mode 100644 index 0000000..abfb1aa --- /dev/null +++ b/SendGrid/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.WebRequest.xml @@ -0,0 +1,63 @@ +<?xml version="1.0" encoding="utf-8"?>
+<doc>
+ <assembly>
+ <name>System.Net.Http.WebRequest</name>
+ </assembly>
+ <members>
+ <member name="T:System.Net.Http.RtcRequestFactory">
+ <summary>Represents the class that is used to create special <see cref="T:System.Net.Http.HttpRequestMessage" /> for use with the Real-Time-Communications (RTC) background notification infrastructure.</summary>
+ </member>
+ <member name="M:System.Net.Http.RtcRequestFactory.Create(System.Net.Http.HttpMethod,System.Uri)">
+ <summary>Creates a special <see cref="T:System.Net.Http.HttpRequestMessage" /> for use with the Real-Time-Communications (RTC) background notification infrastructure.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.HttpRequestMessage" />.An HTTP request message for use with the RTC background notification infrastructure.</returns>
+ <param name="method">The HTTP method.</param>
+ <param name="uri">The Uri the request is sent to.</param>
+ </member>
+ <member name="T:System.Net.Http.WebRequestHandler">
+ <summary>Provides desktop-specific features not available to Windows Store apps or other environments. </summary>
+ </member>
+ <member name="M:System.Net.Http.WebRequestHandler.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.WebRequestHandler" /> class.</summary>
+ </member>
+ <member name="P:System.Net.Http.WebRequestHandler.AllowPipelining">
+ <summary> Gets or sets a value that indicates whether to pipeline the request to the Internet resource.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the request should be pipelined; otherwise, false. The default is true. </returns>
+ </member>
+ <member name="P:System.Net.Http.WebRequestHandler.AuthenticationLevel">
+ <summary>Gets or sets a value indicating the level of authentication and impersonation used for this request.</summary>
+ <returns>Returns <see cref="T:System.Net.Security.AuthenticationLevel" />.A bitwise combination of the <see cref="T:System.Net.Security.AuthenticationLevel" /> values. The default value is <see cref="F:System.Net.Security.AuthenticationLevel.MutualAuthRequested" />.</returns>
+ </member>
+ <member name="P:System.Net.Http.WebRequestHandler.CachePolicy">
+ <summary>Gets or sets the cache policy for this request.</summary>
+ <returns>Returns <see cref="T:System.Net.Cache.RequestCachePolicy" />.A <see cref="T:System.Net.Cache.RequestCachePolicy" /> object that defines a cache policy. The default is <see cref="P:System.Net.WebRequest.DefaultCachePolicy" />.</returns>
+ </member>
+ <member name="P:System.Net.Http.WebRequestHandler.ClientCertificates">
+ <summary>Gets or sets the collection of security certificates that are associated with this request.</summary>
+ <returns>Returns <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.The collection of security certificates associated with this request.</returns>
+ </member>
+ <member name="P:System.Net.Http.WebRequestHandler.ContinueTimeout">
+ <summary>Gets or sets the amount of time, in milliseconds, the application will wait for 100-continue from the server before uploading data.</summary>
+ <returns>Returns <see cref="T:System.TimeSpan" />.The amount of time, in milliseconds, the application will wait for 100-continue from the server before uploading data. The default value is 350 milliseconds.</returns>
+ </member>
+ <member name="P:System.Net.Http.WebRequestHandler.ImpersonationLevel">
+ <summary>Gets or sets the impersonation level for the current request.</summary>
+ <returns>Returns <see cref="T:System.Security.Principal.TokenImpersonationLevel" />.The impersonation level for the request. The default is <see cref="F:System.Security.Principal.TokenImpersonationLevel.Delegation" />.</returns>
+ </member>
+ <member name="P:System.Net.Http.WebRequestHandler.MaxResponseHeadersLength">
+ <summary>Gets or sets the maximum allowed length of the response headers.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.The length, in kilobytes (1024 bytes), of the response headers.</returns>
+ </member>
+ <member name="P:System.Net.Http.WebRequestHandler.ReadWriteTimeout">
+ <summary>Gets or sets a time-out in milliseconds when writing a request to or reading a response from a server.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.The number of milliseconds before the writing or reading times out. The default value is 300,000 milliseconds (5 minutes). </returns>
+ </member>
+ <member name="P:System.Net.Http.WebRequestHandler.ServerCertificateValidationCallback">
+ <summary>Gets or sets a callback method to validate the server certificate.</summary>
+ <returns>Returns <see cref="T:System.Net.Security.RemoteCertificateValidationCallback" />.A callback method to validate the server certificate.</returns>
+ </member>
+ <member name="P:System.Net.Http.WebRequestHandler.UnsafeAuthenticatedConnectionSharing">
+ <summary>Gets or sets a value that indicates whether to allow high-speed NTLM-authenticated connection sharing.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true to keep the authenticated connection open; otherwise, false.</returns>
+ </member>
+ </members>
+</doc>
\ No newline at end of file diff --git a/SendGrid/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.dll b/SendGrid/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.dll Binary files differnew file mode 100644 index 0000000..2ee8ff7 --- /dev/null +++ b/SendGrid/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.dll diff --git a/SendGrid/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.xml b/SendGrid/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.xml new file mode 100644 index 0000000..6506939 --- /dev/null +++ b/SendGrid/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.xml @@ -0,0 +1,2308 @@ +<?xml version="1.0" encoding="utf-8"?>
+<doc>
+ <assembly>
+ <name>System.Net.Http</name>
+ </assembly>
+ <members>
+ <member name="T:System.Net.Http.ByteArrayContent">
+ <summary>Provides HTTP content based on a byte array.</summary>
+ </member>
+ <member name="M:System.Net.Http.ByteArrayContent.#ctor(System.Byte[])">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.ByteArrayContent" /> class.</summary>
+ <param name="content">The content used to initialize the <see cref="T:System.Net.Http.ByteArrayContent" />.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="content" /> parameter is null. </exception>
+ </member>
+ <member name="M:System.Net.Http.ByteArrayContent.#ctor(System.Byte[],System.Int32,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.ByteArrayContent" /> class.</summary>
+ <param name="content">The content used to initialize the <see cref="T:System.Net.Http.ByteArrayContent" />.</param>
+ <param name="offset">The offset, in bytes, in the <paramref name="content" /> parameter used to initialize the <see cref="T:System.Net.Http.ByteArrayContent" />.</param>
+ <param name="count">The number of bytes in the <paramref name="content" /> starting from the <paramref name="offset" /> parameter used to initialize the <see cref="T:System.Net.Http.ByteArrayContent" />.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="content" /> parameter is null. </exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="offset" /> parameter is less than zero.-or-The <paramref name="offset" /> parameter is greater than the length of content specified by the <paramref name="content" /> parameter.-or-The <paramref name="count " /> parameter is less than zero.-or-The <paramref name="count" /> parameter is greater than the length of content specified by the <paramref name="content" /> parameter - minus the <paramref name="offset" /> parameter.</exception>
+ </member>
+ <member name="M:System.Net.Http.ByteArrayContent.CreateContentReadStreamAsync">
+ <summary>Creates an HTTP content stream as an asynchronous operation for reading whose backing store is memory from the <see cref="T:System.Net.Http.ByteArrayContent" />.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ </member>
+ <member name="M:System.Net.Http.ByteArrayContent.SerializeToStreamAsync(System.IO.Stream,System.Net.TransportContext)">
+ <summary>Serialize and write the byte array provided in the constructor to an HTTP content stream as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task" />. The task object representing the asynchronous operation.</returns>
+ <param name="stream">The target stream.</param>
+ <param name="context">Information about the transport, like channel binding token. This parameter may be null.</param>
+ </member>
+ <member name="M:System.Net.Http.ByteArrayContent.TryComputeLength(System.Int64@)">
+ <summary>Determines whether a byte array has a valid length in bytes.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="length" /> is a valid length; otherwise, false.</returns>
+ <param name="length">The length in bytes of the byte array.</param>
+ </member>
+ <member name="T:System.Net.Http.ClientCertificateOption">
+ <summary>Specifies how client certificates are provided.</summary>
+ </member>
+ <member name="F:System.Net.Http.ClientCertificateOption.Manual">
+ <summary>The application manually provides the client certificates to the <see cref="T:System.Net.Http.WebRequestHandler" />. This value is the default. </summary>
+ </member>
+ <member name="F:System.Net.Http.ClientCertificateOption.Automatic">
+ <summary>The <see cref="T:System.Net.Http.HttpClientHandler" /> will attempt to provide all available client certificates automatically.</summary>
+ </member>
+ <member name="T:System.Net.Http.DelegatingHandler">
+ <summary>A base type for HTTP handlers that delegate the processing of HTTP response messages to another handler, called the inner handler.</summary>
+ </member>
+ <member name="M:System.Net.Http.DelegatingHandler.#ctor">
+ <summary>Creates a new instance of the <see cref="T:System.Net.Http.DelegatingHandler" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.DelegatingHandler.#ctor(System.Net.Http.HttpMessageHandler)">
+ <summary>Creates a new instance of the <see cref="T:System.Net.Http.DelegatingHandler" /> class with a specific inner handler.</summary>
+ <param name="innerHandler">The inner handler which is responsible for processing the HTTP response messages.</param>
+ </member>
+ <member name="M:System.Net.Http.DelegatingHandler.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.DelegatingHandler" />, and optionally disposes of the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources. </param>
+ </member>
+ <member name="P:System.Net.Http.DelegatingHandler.InnerHandler">
+ <summary>Gets or sets the inner handler which processes the HTTP response messages.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.HttpMessageHandler" />.The inner handler for HTTP response messages.</returns>
+ </member>
+ <member name="M:System.Net.Http.DelegatingHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)">
+ <summary>Sends an HTTP request to the inner handler to send to the server as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />. The task object representing the asynchronous operation.</returns>
+ <param name="request">The HTTP request message to send to the server.</param>
+ <param name="cancellationToken">A cancellation token to cancel operation.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception>
+ </member>
+ <member name="T:System.Net.Http.FormUrlEncodedContent">
+ <summary>A container for name/value tuples encoded using application/x-www-form-urlencoded MIME type.</summary>
+ </member>
+ <member name="M:System.Net.Http.FormUrlEncodedContent.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.FormUrlEncodedContent" /> class with a specific collection of name/value pairs.</summary>
+ <param name="nameValueCollection">A collection of name/value pairs.</param>
+ </member>
+ <member name="T:System.Net.Http.HttpClient">
+ <summary>Provides a base class for sending HTTP requests and receiving HTTP responses from a resource identified by a URI. </summary>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpClient" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.#ctor(System.Net.Http.HttpMessageHandler)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpClient" /> class with a specific handler.</summary>
+ <param name="handler">The HTTP handler stack to use for sending requests. </param>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.#ctor(System.Net.Http.HttpMessageHandler,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpClient" /> class with a specific handler.</summary>
+ <param name="handler">The <see cref="T:System.Net.Http.HttpMessageHandler" /> responsible for processing the HTTP response messages.</param>
+ <param name="disposeHandler">true if the inner handler should be disposed of by Dispose(),false if you intend to reuse the inner handler.</param>
+ </member>
+ <member name="P:System.Net.Http.HttpClient.BaseAddress">
+ <summary>Gets or sets the base address of Uniform Resource Identifier (URI) of the Internet resource used when sending requests.</summary>
+ <returns>Returns <see cref="T:System.Uri" />.The base address of Uniform Resource Identifier (URI) of the Internet resource used when sending requests.</returns>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.CancelPendingRequests">
+ <summary>Cancel all pending requests on this instance.</summary>
+ </member>
+ <member name="P:System.Net.Http.HttpClient.DefaultRequestHeaders">
+ <summary>Gets the headers which should be sent with each request.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpRequestHeaders" />.The headers which should be sent with each request.</returns>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.DeleteAsync(System.String)">
+ <summary>Send a DELETE request to the specified Uri as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.DeleteAsync(System.String,System.Threading.CancellationToken)">
+ <summary>Send a DELETE request to the specified Uri with a cancellation token as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.DeleteAsync(System.Uri)">
+ <summary>Send a DELETE request to the specified Uri as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.DeleteAsync(System.Uri,System.Threading.CancellationToken)">
+ <summary>Send a DELETE request to the specified Uri with a cancellation token as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpClient" /> and optionally disposes of the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.GetAsync(System.String)">
+ <summary>Send a GET request to the specified Uri as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.GetAsync(System.String,System.Net.Http.HttpCompletionOption)">
+ <summary>Send a GET request to the specified Uri with an HTTP completion option as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <param name="completionOption">An HTTP completion option value that indicates when the operation should be considered completed.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.GetAsync(System.String,System.Net.Http.HttpCompletionOption,System.Threading.CancellationToken)">
+ <summary>Send a GET request to the specified Uri with an HTTP completion option and a cancellation token as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <param name="completionOption">An HTTP completion option value that indicates when the operation should be considered completed.</param>
+ <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.GetAsync(System.String,System.Threading.CancellationToken)">
+ <summary>Send a GET request to the specified Uri with a cancellation token as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.GetAsync(System.Uri)">
+ <summary>Send a GET request to the specified Uri as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.GetAsync(System.Uri,System.Net.Http.HttpCompletionOption)">
+ <summary>Send a GET request to the specified Uri with an HTTP completion option as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <param name="completionOption">An HTTP completion option value that indicates when the operation should be considered completed.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.GetAsync(System.Uri,System.Net.Http.HttpCompletionOption,System.Threading.CancellationToken)">
+ <summary>Send a GET request to the specified Uri with an HTTP completion option and a cancellation token as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <param name="completionOption">An HTTP completion option value that indicates when the operation should be considered completed.</param>
+ <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.GetAsync(System.Uri,System.Threading.CancellationToken)">
+ <summary>Send a GET request to the specified Uri with a cancellation token as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.GetByteArrayAsync(System.String)">
+ <summary>Send a GET request to the specified Uri and return the response body as a byte array in an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.GetByteArrayAsync(System.Uri)">
+ <summary>Send a GET request to the specified Uri and return the response body as a byte array in an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.GetStreamAsync(System.String)">
+ <summary>Send a GET request to the specified Uri and return the response body as a stream in an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.GetStreamAsync(System.Uri)">
+ <summary>Send a GET request to the specified Uri and return the response body as a stream in an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.GetStringAsync(System.String)">
+ <summary>Send a GET request to the specified Uri and return the response body as a string in an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.GetStringAsync(System.Uri)">
+ <summary>Send a GET request to the specified Uri and return the response body as a string in an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="P:System.Net.Http.HttpClient.MaxResponseContentBufferSize">
+ <summary>Gets or sets the maximum number of bytes to buffer when reading the response content.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.The maximum number of bytes to buffer when reading the response content. The default value for this property is 64K.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The size specified is less than or equal to zero.</exception>
+ <exception cref="T:System.InvalidOperationException">An operation has already been started on the current instance. </exception>
+ <exception cref="T:System.ObjectDisposedException">The current instance has been disposed. </exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.PostAsync(System.String,System.Net.Http.HttpContent)">
+ <summary>Send a POST request to the specified Uri as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <param name="content">The HTTP request content sent to the server.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.PostAsync(System.String,System.Net.Http.HttpContent,System.Threading.CancellationToken)">
+ <summary>Send a POST request with a cancellation token as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <param name="content">The HTTP request content sent to the server.</param>
+ <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.PostAsync(System.Uri,System.Net.Http.HttpContent)">
+ <summary>Send a POST request to the specified Uri as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <param name="content">The HTTP request content sent to the server.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.PostAsync(System.Uri,System.Net.Http.HttpContent,System.Threading.CancellationToken)">
+ <summary>Send a POST request with a cancellation token as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <param name="content">The HTTP request content sent to the server.</param>
+ <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.PutAsync(System.String,System.Net.Http.HttpContent)">
+ <summary>Send a PUT request to the specified Uri as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <param name="content">The HTTP request content sent to the server.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.PutAsync(System.String,System.Net.Http.HttpContent,System.Threading.CancellationToken)">
+ <summary>Send a PUT request with a cancellation token as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <param name="content">The HTTP request content sent to the server.</param>
+ <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.PutAsync(System.Uri,System.Net.Http.HttpContent)">
+ <summary>Send a PUT request to the specified Uri as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <param name="content">The HTTP request content sent to the server.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.PutAsync(System.Uri,System.Net.Http.HttpContent,System.Threading.CancellationToken)">
+ <summary>Send a PUT request with a cancellation token as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="requestUri">The Uri the request is sent to.</param>
+ <param name="content">The HTTP request content sent to the server.</param>
+ <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.SendAsync(System.Net.Http.HttpRequestMessage)">
+ <summary>Send an HTTP request as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="request">The HTTP request message to send.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception>
+ <exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="T:System.Net.Http.HttpClient" /> instance.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.SendAsync(System.Net.Http.HttpRequestMessage,System.Net.Http.HttpCompletionOption)">
+ <summary>Send an HTTP request as an asynchronous operation. </summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="request">The HTTP request message to send.</param>
+ <param name="completionOption">When the operation should complete (as soon as a response is available or after reading the whole response content).</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception>
+ <exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="T:System.Net.Http.HttpClient" /> instance.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.SendAsync(System.Net.Http.HttpRequestMessage,System.Net.Http.HttpCompletionOption,System.Threading.CancellationToken)">
+ <summary>Send an HTTP request as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="request">The HTTP request message to send.</param>
+ <param name="completionOption">When the operation should complete (as soon as a response is available or after reading the whole response content).</param>
+ <param name="cancellationToken">The cancellation token to cancel operation.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception>
+ <exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="T:System.Net.Http.HttpClient" /> instance.</exception>
+ </member>
+ <member name="M:System.Net.Http.HttpClient.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)">
+ <summary>Send an HTTP request as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="request">The HTTP request message to send.</param>
+ <param name="cancellationToken">The cancellation token to cancel operation.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception>
+ <exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="T:System.Net.Http.HttpClient" /> instance.</exception>
+ </member>
+ <member name="P:System.Net.Http.HttpClient.Timeout">
+ <summary>Gets or sets the number of milliseconds to wait before the request times out.</summary>
+ <returns>Returns <see cref="T:System.TimeSpan" />.The number of milliseconds to wait before the request times out.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The timeout specified is less than or equal to zero and is not <see cref="F:System.Threading.Timeout.Infinite" />.</exception>
+ <exception cref="T:System.InvalidOperationException">An operation has already been started on the current instance. </exception>
+ <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
+ </member>
+ <member name="T:System.Net.Http.HttpClientHandler">
+ <summary>The default message handler used by <see cref="T:System.Net.Http.HttpClient" />. </summary>
+ </member>
+ <member name="M:System.Net.Http.HttpClientHandler.#ctor">
+ <summary>Creates an instance of a <see cref="T:System.Net.Http.HttpClientHandler" /> class.</summary>
+ </member>
+ <member name="P:System.Net.Http.HttpClientHandler.AllowAutoRedirect">
+ <summary>Gets or sets a value that indicates whether the handler should follow redirection responses.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the if the handler should follow redirection responses; otherwise false. The default value is true.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpClientHandler.AutomaticDecompression">
+ <summary>Gets or sets the type of decompression method used by the handler for automatic decompression of the HTTP content response.</summary>
+ <returns>Returns <see cref="T:System.Net.DecompressionMethods" />.The automatic decompression method used by the handler. The default value is <see cref="F:System.Net.DecompressionMethods.None" />.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpClientHandler.ClientCertificateOptions">
+ <summary>Gets or sets the collection of security certificates that are associated with this handler.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.ClientCertificateOption" />.The collection of security certificates associated with this handler.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpClientHandler.CookieContainer">
+ <summary>Gets or sets the cookie container used to store server cookies by the handler.</summary>
+ <returns>Returns <see cref="T:System.Net.CookieContainer" />.The cookie container used to store server cookies by the handler.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpClientHandler.Credentials">
+ <summary>Gets or sets authentication information used by this handler.</summary>
+ <returns>Returns <see cref="T:System.Net.ICredentials" />.The authentication credentials associated with the handler. The default is null.</returns>
+ </member>
+ <member name="M:System.Net.Http.HttpClientHandler.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpClientHandler" /> and optionally disposes of the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
+ </member>
+ <member name="P:System.Net.Http.HttpClientHandler.MaxAutomaticRedirections">
+ <summary>Gets or sets the maximum number of redirects that the handler follows.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.The maximum number of redirection responses that the handler follows. The default value is 50.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpClientHandler.MaxRequestContentBufferSize">
+ <summary>Gets or sets the maximum request content buffer size used by the handler.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.The maximum request content buffer size in bytes. The default value is 65,536 bytes.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpClientHandler.PreAuthenticate">
+ <summary>Gets or sets a value that indicates whether the handler sends an Authorization header with the request.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true for the handler to send an HTTP Authorization header with requests after authentication has taken place; otherwise, false. The default is false.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpClientHandler.Proxy">
+ <summary>Gets or sets proxy information used by the handler.</summary>
+ <returns>Returns <see cref="T:System.Net.IWebProxy" />.The proxy information used by the handler. The default value is null.</returns>
+ </member>
+ <member name="M:System.Net.Http.HttpClientHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)">
+ <summary>Creates an instance of <see cref="T:System.Net.Http.HttpResponseMessage" /> based on the information provided in the <see cref="T:System.Net.Http.HttpRequestMessage" /> as an operation that will not block.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="request">The HTTP request message.</param>
+ <param name="cancellationToken">A cancellation token to cancel the operation.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception>
+ </member>
+ <member name="P:System.Net.Http.HttpClientHandler.SupportsAutomaticDecompression">
+ <summary>Gets a value that indicates whether the handler supports automatic response content decompression.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the if the handler supports automatic response content decompression; otherwise false. The default value is true.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpClientHandler.SupportsProxy">
+ <summary>Gets a value that indicates whether the handler supports proxy settings.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the if the handler supports proxy settings; otherwise false. The default value is true.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpClientHandler.SupportsRedirectConfiguration">
+ <summary>Gets a value that indicates whether the handler supports configuration settings for the <see cref="P:System.Net.Http.HttpClientHandler.AllowAutoRedirect" /> and <see cref="P:System.Net.Http.HttpClientHandler.MaxAutomaticRedirections" /> properties.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the if the handler supports configuration settings for the <see cref="P:System.Net.Http.HttpClientHandler.AllowAutoRedirect" /> and <see cref="P:System.Net.Http.HttpClientHandler.MaxAutomaticRedirections" /> properties; otherwise false. The default value is true.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpClientHandler.UseCookies">
+ <summary>Gets or sets a value that indicates whether the handler uses the <see cref="P:System.Net.Http.HttpClientHandler.CookieContainer" /> property to store server cookies and uses these cookies when sending requests.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the if the handler supports uses the <see cref="P:System.Net.Http.HttpClientHandler.CookieContainer" /> property to store server cookies and uses these cookies when sending requests; otherwise false. The default value is true.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpClientHandler.UseDefaultCredentials">
+ <summary>Gets or sets a value that controls whether default credentials are sent with requests by the handler.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the default credentials are used; otherwise false. The default value is false.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpClientHandler.UseProxy">
+ <summary>Gets or sets a value that indicates whether the handler uses a proxy for requests. </summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the handler should use a proxy for requests; otherwise false. The default value is true.</returns>
+ </member>
+ <member name="T:System.Net.Http.HttpCompletionOption">
+ <summary>Indicates if <see cref="T:System.Net.Http.HttpClient" /> operations should be considered completed either as soon as a response is available, or after reading the entire response message including the content. </summary>
+ </member>
+ <member name="F:System.Net.Http.HttpCompletionOption.ResponseContentRead">
+ <summary>The operation should complete after reading the entire response including the content.</summary>
+ </member>
+ <member name="F:System.Net.Http.HttpCompletionOption.ResponseHeadersRead">
+ <summary>The operation should complete as soon as a response is available and headers are read. The content is not read yet. </summary>
+ </member>
+ <member name="T:System.Net.Http.HttpContent">
+ <summary>A base class representing an HTTP entity body and content headers.</summary>
+ </member>
+ <member name="M:System.Net.Http.HttpContent.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpContent" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.HttpContent.CopyToAsync(System.IO.Stream)">
+ <summary>Write the HTTP content to a stream as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task" />.The task object representing the asynchronous operation.</returns>
+ <param name="stream">The target stream.</param>
+ </member>
+ <member name="M:System.Net.Http.HttpContent.CopyToAsync(System.IO.Stream,System.Net.TransportContext)">
+ <summary>Write the HTTP content to a stream as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task" />.The task object representing the asynchronous operation.</returns>
+ <param name="stream">The target stream.</param>
+ <param name="context">Information about the transport (channel binding token, for example). This parameter may be null.</param>
+ </member>
+ <member name="M:System.Net.Http.HttpContent.CreateContentReadStreamAsync">
+ <summary>Write the HTTP content to a memory stream as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ </member>
+ <member name="M:System.Net.Http.HttpContent.Dispose">
+ <summary>Releases the unmanaged resources and disposes of the managed resources used by the <see cref="T:System.Net.Http.HttpContent" />.</summary>
+ </member>
+ <member name="M:System.Net.Http.HttpContent.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpContent" /> and optionally disposes of the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
+ </member>
+ <member name="P:System.Net.Http.HttpContent.Headers">
+ <summary>Gets the HTTP content headers as defined in RFC 2616.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpContentHeaders" />.The content headers as defined in RFC 2616.</returns>
+ </member>
+ <member name="M:System.Net.Http.HttpContent.LoadIntoBufferAsync">
+ <summary>Serialize the HTTP content to a memory buffer as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task" />.The task object representing the asynchronous operation.</returns>
+ </member>
+ <member name="M:System.Net.Http.HttpContent.LoadIntoBufferAsync(System.Int64)">
+ <summary>Serialize the HTTP content to a memory buffer as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task" />.The task object representing the asynchronous operation.</returns>
+ <param name="maxBufferSize">The maximum size, in bytes, of the buffer to use.</param>
+ </member>
+ <member name="M:System.Net.Http.HttpContent.ReadAsByteArrayAsync">
+ <summary>Write the HTTP content to a byte array as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ </member>
+ <member name="M:System.Net.Http.HttpContent.ReadAsStreamAsync">
+ <summary>Write the HTTP content to a stream as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ </member>
+ <member name="M:System.Net.Http.HttpContent.ReadAsStringAsync">
+ <summary>Write the HTTP content to a string as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ </member>
+ <member name="M:System.Net.Http.HttpContent.SerializeToStreamAsync(System.IO.Stream,System.Net.TransportContext)">
+ <summary>Serialize the HTTP content to a stream as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task" />.The task object representing the asynchronous operation.</returns>
+ <param name="stream">The target stream.</param>
+ <param name="context">Information about the transport (channel binding token, for example). This parameter may be null.</param>
+ </member>
+ <member name="M:System.Net.Http.HttpContent.TryComputeLength(System.Int64@)">
+ <summary>Determines whether the HTTP content has a valid length in bytes.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="length" /> is a valid length; otherwise, false.</returns>
+ <param name="length">The length in bytes of the HHTP content.</param>
+ </member>
+ <member name="T:System.Net.Http.HttpMessageHandler">
+ <summary>A base type for HTTP message handlers.</summary>
+ </member>
+ <member name="M:System.Net.Http.HttpMessageHandler.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpMessageHandler" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.HttpMessageHandler.Dispose">
+ <summary>Releases the unmanaged resources and disposes of the managed resources used by the <see cref="T:System.Net.Http.HttpMessageHandler" />.</summary>
+ </member>
+ <member name="M:System.Net.Http.HttpMessageHandler.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpMessageHandler" /> and optionally disposes of the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
+ </member>
+ <member name="M:System.Net.Http.HttpMessageHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)">
+ <summary>Send an HTTP request as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="request">The HTTP request message to send.</param>
+ <param name="cancellationToken">The cancellation token to cancel operation.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception>
+ </member>
+ <member name="T:System.Net.Http.HttpMessageInvoker">
+ <summary>The base type for <see cref="T:System.Net.Http.HttpClient" /> and other message originators.</summary>
+ </member>
+ <member name="M:System.Net.Http.HttpMessageInvoker.#ctor(System.Net.Http.HttpMessageHandler)">
+ <summary>Initializes an instance of a <see cref="T:System.Net.Http.HttpMessageInvoker" /> class with a specific <see cref="T:System.Net.Http.HttpMessageHandler" />.</summary>
+ <param name="handler">The <see cref="T:System.Net.Http.HttpMessageHandler" /> responsible for processing the HTTP response messages.</param>
+ </member>
+ <member name="M:System.Net.Http.HttpMessageInvoker.#ctor(System.Net.Http.HttpMessageHandler,System.Boolean)">
+ <summary>Initializes an instance of a <see cref="T:System.Net.Http.HttpMessageInvoker" /> class with a specific <see cref="T:System.Net.Http.HttpMessageHandler" />.</summary>
+ <param name="handler">The <see cref="T:System.Net.Http.HttpMessageHandler" /> responsible for processing the HTTP response messages.</param>
+ <param name="disposeHandler">true if the inner handler should be disposed of by Dispose(),false if you intend to reuse the inner handler.</param>
+ </member>
+ <member name="M:System.Net.Http.HttpMessageInvoker.Dispose">
+ <summary>Releases the unmanaged resources and disposes of the managed resources used by the <see cref="T:System.Net.Http.HttpMessageInvoker" />.</summary>
+ </member>
+ <member name="M:System.Net.Http.HttpMessageInvoker.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpMessageInvoker" /> and optionally disposes of the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
+ </member>
+ <member name="M:System.Net.Http.HttpMessageInvoker.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)">
+ <summary>Send an HTTP request as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="request">The HTTP request message to send.</param>
+ <param name="cancellationToken">The cancellation token to cancel operation.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception>
+ </member>
+ <member name="T:System.Net.Http.HttpMethod">
+ <summary>A helper class for retrieving and comparing standard HTTP methods.</summary>
+ </member>
+ <member name="M:System.Net.Http.HttpMethod.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpMethod" /> class with a specific HTTP method.</summary>
+ <param name="method">The HTTP method.</param>
+ </member>
+ <member name="P:System.Net.Http.HttpMethod.Delete">
+ <summary>Represents an HTTP DELETE protocol method.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.HttpMethod.Equals(System.Net.Http.HttpMethod)">
+ <summary>Determines whether the specified <see cref="T:System.Net.Http.HttpMethod" /> is equal to the current <see cref="T:System.Object" />.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified object is equal to the current object; otherwise, false.</returns>
+ <param name="other">The HTTP method to compare with the current object.</param>
+ </member>
+ <member name="M:System.Net.Http.HttpMethod.Equals(System.Object)">
+ <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" />.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified object is equal to the current object; otherwise, false.</returns>
+ <param name="obj">The object to compare with the current object.</param>
+ </member>
+ <member name="P:System.Net.Http.HttpMethod.Get">
+ <summary>Represents an HTTP GET protocol method.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.HttpMethod.GetHashCode">
+ <summary>Serves as a hash function for this type.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.A hash code for the current <see cref="T:System.Object" />.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpMethod.Head">
+ <summary>Represents an HTTP HEAD protocol method. The HEAD method is identical to GET except that the server only returns message-headers in the response, without a message-body.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpMethod.Method">
+ <summary>An HTTP method. </summary>
+ <returns>Returns <see cref="T:System.String" />.An HTTP method represented as a <see cref="T:System.String" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.HttpMethod.op_Equality(System.Net.Http.HttpMethod,System.Net.Http.HttpMethod)">
+ <summary>The equality operator for comparing two <see cref="T:System.Net.Http.HttpMethod" /> objects.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified <paramref name="left" /> and <paramref name="right" /> parameters are equal; otherwise, false.</returns>
+ <param name="left">The left <see cref="T:System.Net.Http.HttpMethod" /> to an equality operator.</param>
+ <param name="right">The right <see cref="T:System.Net.Http.HttpMethod" /> to an equality operator.</param>
+ </member>
+ <member name="M:System.Net.Http.HttpMethod.op_Inequality(System.Net.Http.HttpMethod,System.Net.Http.HttpMethod)">
+ <summary>The inequality operator for comparing two <see cref="T:System.Net.Http.HttpMethod" /> objects.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified <paramref name="left" /> and <paramref name="right" /> parameters are inequal; otherwise, false.</returns>
+ <param name="left">The left <see cref="T:System.Net.Http.HttpMethod" /> to an inequality operator.</param>
+ <param name="right">The right <see cref="T:System.Net.Http.HttpMethod" /> to an inequality operator.</param>
+ </member>
+ <member name="P:System.Net.Http.HttpMethod.Options">
+ <summary>Represents an HTTP OPTIONS protocol method.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpMethod.Post">
+ <summary>Represents an HTTP POST protocol method that is used to post a new entity as an addition to a URI.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpMethod.Put">
+ <summary>Represents an HTTP PUT protocol method that is used to replace an entity identified by a URI.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.HttpMethod.ToString">
+ <summary>Returns a string that represents the current object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string representing the current object.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpMethod.Trace">
+ <summary>Represents an HTTP TRACE protocol method.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.</returns>
+ </member>
+ <member name="T:System.Net.Http.HttpRequestException">
+ <summary>A base class for exceptions thrown by the <see cref="T:System.Net.Http.HttpClient" /> and <see cref="T:System.Net.Http.HttpMessageHandler" /> classes.</summary>
+ </member>
+ <member name="M:System.Net.Http.HttpRequestException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestException" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.HttpRequestException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestException" /> class with a specific message that describes the current exception.</summary>
+ <param name="message">A message that describes the current exception.</param>
+ </member>
+ <member name="M:System.Net.Http.HttpRequestException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestException" /> class with a specific message that describes the current exception and an inner exception.</summary>
+ <param name="message">A message that describes the current exception.</param>
+ <param name="inner">The inner exception.</param>
+ </member>
+ <member name="T:System.Net.Http.HttpRequestMessage">
+ <summary>Represents a HTTP request message.</summary>
+ </member>
+ <member name="M:System.Net.Http.HttpRequestMessage.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestMessage" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.HttpRequestMessage.#ctor(System.Net.Http.HttpMethod,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestMessage" /> class with an HTTP method and a request <see cref="T:System.Uri" />.</summary>
+ <param name="method">The HTTP method.</param>
+ <param name="requestUri">A string that represents the request <see cref="T:System.Uri" />.</param>
+ </member>
+ <member name="M:System.Net.Http.HttpRequestMessage.#ctor(System.Net.Http.HttpMethod,System.Uri)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestMessage" /> class with an HTTP method and a request <see cref="T:System.Uri" />.</summary>
+ <param name="method">The HTTP method.</param>
+ <param name="requestUri">The <see cref="T:System.Uri" /> to request.</param>
+ </member>
+ <member name="P:System.Net.Http.HttpRequestMessage.Content">
+ <summary>Gets or sets the contents of the HTTP message. </summary>
+ <returns>Returns <see cref="T:System.Net.Http.HttpContent" />.The content of a message</returns>
+ </member>
+ <member name="M:System.Net.Http.HttpRequestMessage.Dispose">
+ <summary>Releases the unmanaged resources and disposes of the managed resources used by the <see cref="T:System.Net.Http.HttpRequestMessage" />.</summary>
+ </member>
+ <member name="M:System.Net.Http.HttpRequestMessage.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpRequestMessage" /> and optionally disposes of the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
+ </member>
+ <member name="P:System.Net.Http.HttpRequestMessage.Headers">
+ <summary>Gets the collection of HTTP request headers.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpRequestHeaders" />.The collection of HTTP request headers.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpRequestMessage.Method">
+ <summary>Gets or sets the HTTP method used by the HTTP request message.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.The HTTP method used by the request message. The default is the GET method.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpRequestMessage.Properties">
+ <summary>Gets a set of properties for the HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Collections.Generic.IDictionary`2" />.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpRequestMessage.RequestUri">
+ <summary>Gets or sets the <see cref="T:System.Uri" /> used for the HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Uri" />.The <see cref="T:System.Uri" /> used for the HTTP request.</returns>
+ </member>
+ <member name="M:System.Net.Http.HttpRequestMessage.ToString">
+ <summary>Returns a string that represents the current object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string representation of the current object.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpRequestMessage.Version">
+ <summary>Gets or sets the HTTP message version.</summary>
+ <returns>Returns <see cref="T:System.Version" />.The HTTP message version. The default is 1.1.</returns>
+ </member>
+ <member name="T:System.Net.Http.HttpResponseMessage">
+ <summary>Represents a HTTP response message.</summary>
+ </member>
+ <member name="M:System.Net.Http.HttpResponseMessage.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpResponseMessage" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.HttpResponseMessage.#ctor(System.Net.HttpStatusCode)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpResponseMessage" /> class with a specific <see cref="P:System.Net.Http.HttpResponseMessage.StatusCode" />.</summary>
+ <param name="statusCode">The status code of the HTTP response.</param>
+ </member>
+ <member name="P:System.Net.Http.HttpResponseMessage.Content">
+ <summary>Gets or sets the content of a HTTP response message. </summary>
+ <returns>Returns <see cref="T:System.Net.Http.HttpContent" />.The content of the HTTP response message.</returns>
+ </member>
+ <member name="M:System.Net.Http.HttpResponseMessage.Dispose">
+ <summary>Releases the unmanaged resources and disposes of unmanaged resources used by the <see cref="T:System.Net.Http.HttpResponseMessage" />.</summary>
+ </member>
+ <member name="M:System.Net.Http.HttpResponseMessage.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpResponseMessage" /> and optionally disposes of the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
+ </member>
+ <member name="M:System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode">
+ <summary>Throws an exception if the <see cref="P:System.Net.Http.HttpResponseMessage.IsSuccessStatusCode" /> property for the HTTP response is false.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.HttpResponseMessage" />.The HTTP response message if the call is successful.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpResponseMessage.Headers">
+ <summary>Gets the collection of HTTP response headers. </summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpResponseHeaders" />.The collection of HTTP response headers.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpResponseMessage.IsSuccessStatusCode">
+ <summary>Gets a value that indicates if the HTTP response was successful.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.A value that indicates if the HTTP response was successful. true if <see cref="P:System.Net.Http.HttpResponseMessage.StatusCode" /> was in the range 200-299; otherwise false.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpResponseMessage.ReasonPhrase">
+ <summary>Gets or sets the reason phrase which typically is sent by servers together with the status code. </summary>
+ <returns>Returns <see cref="T:System.String" />.The reason phrase sent by the server.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpResponseMessage.RequestMessage">
+ <summary>Gets or sets the request message which led to this response message.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.HttpRequestMessage" />.The request message which led to this response message.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpResponseMessage.StatusCode">
+ <summary>Gets or sets the status code of the HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Net.HttpStatusCode" />.The status code of the HTTP response.</returns>
+ </member>
+ <member name="M:System.Net.Http.HttpResponseMessage.ToString">
+ <summary>Returns a string that represents the current object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string representation of the current object.</returns>
+ </member>
+ <member name="P:System.Net.Http.HttpResponseMessage.Version">
+ <summary>Gets or sets the HTTP message version. </summary>
+ <returns>Returns <see cref="T:System.Version" />.The HTTP message version. The default is 1.1. </returns>
+ </member>
+ <member name="T:System.Net.Http.MessageProcessingHandler">
+ <summary>A base type for handlers which only do some small processing of request and/or response messages.</summary>
+ </member>
+ <member name="M:System.Net.Http.MessageProcessingHandler.#ctor">
+ <summary>Creates an instance of a <see cref="T:System.Net.Http.MessageProcessingHandler" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.MessageProcessingHandler.#ctor(System.Net.Http.HttpMessageHandler)">
+ <summary>Creates an instance of a <see cref="T:System.Net.Http.MessageProcessingHandler" /> class with a specific inner handler.</summary>
+ <param name="innerHandler">The inner handler which is responsible for processing the HTTP response messages.</param>
+ </member>
+ <member name="M:System.Net.Http.MessageProcessingHandler.ProcessRequest(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)">
+ <summary>Processes an HTTP request message.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.HttpRequestMessage" />.The HTTP request message that was processed.</returns>
+ <param name="request">The HTTP request message to process.</param>
+ <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
+ </member>
+ <member name="M:System.Net.Http.MessageProcessingHandler.ProcessResponse(System.Net.Http.HttpResponseMessage,System.Threading.CancellationToken)">
+ <summary>Processes an HTTP response message.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.HttpResponseMessage" />.The HTTP response message that was processed.</returns>
+ <param name="response">The HTTP response message to process.</param>
+ <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
+ </member>
+ <member name="M:System.Net.Http.MessageProcessingHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)">
+ <summary>Sends an HTTP request to the inner handler to send to the server as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ <param name="request">The HTTP request message to send to the server.</param>
+ <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception>
+ </member>
+ <member name="T:System.Net.Http.MultipartContent">
+ <summary>Provides a collection of <see cref="T:System.Net.Http.HttpContent" /> objects that get serialized using the multipart/* content type specification.</summary>
+ </member>
+ <member name="M:System.Net.Http.MultipartContent.#ctor">
+ <summary>Creates a new instance of the <see cref="T:System.Net.Http.MultipartContent" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.MultipartContent.#ctor(System.String)">
+ <summary>Creates a new instance of the <see cref="T:System.Net.Http.MultipartContent" /> class.</summary>
+ <param name="subtype">The subtype of the multipart content.</param>
+ <exception cref="T:System.ArgumentException">The <paramref name="subtype" /> was null or contains only white space characters.</exception>
+ </member>
+ <member name="M:System.Net.Http.MultipartContent.#ctor(System.String,System.String)">
+ <summary>Creates a new instance of the <see cref="T:System.Net.Http.MultipartContent" /> class.</summary>
+ <param name="subtype">The subtype of the multipart content.</param>
+ <param name="boundary">The boundary string for the multipart content.</param>
+ <exception cref="T:System.ArgumentException">The <paramref name="subtype" /> was null or an empty string.The <paramref name="boundary" /> was null or contains only white space characters.-or-The <paramref name="boundary" /> ends with a space character.</exception>
+ <exception cref="T:System.OutOfRangeException">The length of the <paramref name="boundary" /> was greater than 70.</exception>
+ </member>
+ <member name="M:System.Net.Http.MultipartContent.Add(System.Net.Http.HttpContent)">
+ <summary>Add multipart HTTP content to a collection of <see cref="T:System.Net.Http.HttpContent" /> objects that get serialized using the multipart/* content type specification.</summary>
+ <param name="content">The HTTP content to add to the collection.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="content" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.MultipartContent.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.MultipartContent" /> and optionally disposes of the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
+ </member>
+ <member name="M:System.Net.Http.MultipartContent.GetEnumerator">
+ <summary>Returns an enumerator that iterates through the collection of <see cref="T:System.Net.Http.HttpContent" /> objects that get serialized using the multipart/* content type specification..</summary>
+ <returns>Returns <see cref="T:System.Collections.Generic.IEnumerator`1" />.An object that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="M:System.Net.Http.MultipartContent.SerializeToStreamAsync(System.IO.Stream,System.Net.TransportContext)">
+ <summary>Serialize the multipart HTTP content to a stream as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task" />.The task object representing the asynchronous operation.</returns>
+ <param name="stream">The target stream.</param>
+ <param name="context">Information about the transport (channel binding token, for example). This parameter may be null.</param>
+ </member>
+ <member name="M:System.Net.Http.MultipartContent.System#Collections#IEnumerable#GetEnumerator">
+ <summary>The explicit implementation of the <see cref="M:System.Net.Http.MultipartContent.GetEnumerator" /> method.</summary>
+ <returns>Returns <see cref="T:System.Collections.IEnumerator" />.An object that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="M:System.Net.Http.MultipartContent.TryComputeLength(System.Int64@)">
+ <summary>Determines whether the HTTP multipart content has a valid length in bytes.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="length" /> is a valid length; otherwise, false.</returns>
+ <param name="length">The length in bytes of the HHTP content.</param>
+ </member>
+ <member name="T:System.Net.Http.MultipartFormDataContent">
+ <summary>Provides a container for content encoded using multipart/form-data MIME type.</summary>
+ </member>
+ <member name="M:System.Net.Http.MultipartFormDataContent.#ctor">
+ <summary>Creates a new instance of the <see cref="T:System.Net.Http.MultipartFormDataContent" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.MultipartFormDataContent.#ctor(System.String)">
+ <summary>Creates a new instance of the <see cref="T:System.Net.Http.MultipartFormDataContent" /> class.</summary>
+ <param name="boundary">The boundary string for the multipart form data content.</param>
+ <exception cref="T:System.ArgumentException">The <paramref name="boundary" /> was null or contains only white space characters.-or-The <paramref name="boundary" /> ends with a space character.</exception>
+ <exception cref="T:System.OutOfRangeException">The length of the <paramref name="boundary" /> was greater than 70.</exception>
+ </member>
+ <member name="M:System.Net.Http.MultipartFormDataContent.Add(System.Net.Http.HttpContent)">
+ <summary>Add HTTP content to a collection of <see cref="T:System.Net.Http.HttpContent" /> objects that get serialized to multipart/form-data MIME type.</summary>
+ <param name="content">The HTTP content to add to the collection.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="content" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.MultipartFormDataContent.Add(System.Net.Http.HttpContent,System.String)">
+ <summary>Add HTTP content to a collection of <see cref="T:System.Net.Http.HttpContent" /> objects that get serialized to multipart/form-data MIME type.</summary>
+ <param name="content">The HTTP content to add to the collection.</param>
+ <param name="name">The name for the HTTP content to add.</param>
+ <exception cref="T:System.ArgumentException">The <paramref name="name" /> was null or contains only white space characters.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="content" /> was null.</exception>
+ </member>
+ <member name="M:System.Net.Http.MultipartFormDataContent.Add(System.Net.Http.HttpContent,System.String,System.String)">
+ <summary>Add HTTP content to a collection of <see cref="T:System.Net.Http.HttpContent" /> objects that get serialized to multipart/form-data MIME type.</summary>
+ <param name="content">The HTTP content to add to the collection.</param>
+ <param name="name">The name for the HTTP content to add.</param>
+ <param name="fileName">The file name for the HTTP content to add to the collection.</param>
+ <exception cref="T:System.ArgumentException">The <paramref name="name" /> was null or contains only white space characters.-or-The <paramref name="fileName" /> was null or contains only white space characters.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="content" /> was null.</exception>
+ </member>
+ <member name="T:System.Net.Http.StreamContent">
+ <summary>Provides HTTP content based on a stream.</summary>
+ </member>
+ <member name="M:System.Net.Http.StreamContent.#ctor(System.IO.Stream)">
+ <summary>Creates a new instance of the <see cref="T:System.Net.Http.StreamContent" /> class.</summary>
+ <param name="content">The content used to initialize the <see cref="T:System.Net.Http.StreamContent" />.</param>
+ </member>
+ <member name="M:System.Net.Http.StreamContent.#ctor(System.IO.Stream,System.Int32)">
+ <summary>Creates a new instance of the <see cref="T:System.Net.Http.StreamContent" /> class.</summary>
+ <param name="content">The content used to initialize the <see cref="T:System.Net.Http.StreamContent" />.</param>
+ <param name="bufferSize">The size, in bytes, of the buffer for the <see cref="T:System.Net.Http.StreamContent" />.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="content" /> was null.</exception>
+ <exception cref="T:System.OutOfRangeException">The <paramref name="bufferSize" /> was less than or equal to zero. </exception>
+ </member>
+ <member name="M:System.Net.Http.StreamContent.CreateContentReadStreamAsync">
+ <summary>Write the HTTP stream content to a memory stream as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
+ </member>
+ <member name="M:System.Net.Http.StreamContent.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.StreamContent" /> and optionally disposes of the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
+ </member>
+ <member name="M:System.Net.Http.StreamContent.SerializeToStreamAsync(System.IO.Stream,System.Net.TransportContext)">
+ <summary>Serialize the HTTP content to a stream as an asynchronous operation.</summary>
+ <returns>Returns <see cref="T:System.Threading.Tasks.Task" />.The task object representing the asynchronous operation.</returns>
+ <param name="stream">The target stream.</param>
+ <param name="context">Information about the transport (channel binding token, for example). This parameter may be null.</param>
+ </member>
+ <member name="M:System.Net.Http.StreamContent.TryComputeLength(System.Int64@)">
+ <summary>Determines whether the stream content has a valid length in bytes.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="length" /> is a valid length; otherwise, false.</returns>
+ <param name="length">The length in bytes of the stream content.</param>
+ </member>
+ <member name="T:System.Net.Http.StringContent">
+ <summary>Provides HTTP content based on a string.</summary>
+ </member>
+ <member name="M:System.Net.Http.StringContent.#ctor(System.String)">
+ <summary>Creates a new instance of the <see cref="T:System.Net.Http.StringContent" /> class.</summary>
+ <param name="content">The content used to initialize the <see cref="T:System.Net.Http.StringContent" />.</param>
+ </member>
+ <member name="M:System.Net.Http.StringContent.#ctor(System.String,System.Text.Encoding)">
+ <summary>Creates a new instance of the <see cref="T:System.Net.Http.StringContent" /> class.</summary>
+ <param name="content">The content used to initialize the <see cref="T:System.Net.Http.StringContent" />.</param>
+ <param name="encoding">The encoding to use for the content.</param>
+ </member>
+ <member name="M:System.Net.Http.StringContent.#ctor(System.String,System.Text.Encoding,System.String)">
+ <summary>Creates a new instance of the <see cref="T:System.Net.Http.StringContent" /> class.</summary>
+ <param name="content">The content used to initialize the <see cref="T:System.Net.Http.StringContent" />.</param>
+ <param name="encoding">The encoding to use for the content.</param>
+ <param name="mediaType">The media type to use for the content.</param>
+ </member>
+ <member name="T:System.Net.Http.Headers.AuthenticationHeaderValue">
+ <summary>Represents authentication information in Authorization, ProxyAuthorization, WWW-Authenticate, and Proxy-Authenticate header values.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> class.</summary>
+ <param name="scheme">The scheme to use for authorization.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.#ctor(System.String,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> class.</summary>
+ <param name="scheme">The scheme to use for authorization.</param>
+ <param name="parameter">The credentials containing the authentication information of the user agent for the resource being requested.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.Equals(System.Object)">
+ <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
+ <param name="obj">The object to compare with the current object. </param>
+ </member>
+ <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.GetHashCode">
+ <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.AuthenticationHeaderValue.Parameter">
+ <summary>Gets the credentials containing the authentication information of the user agent for the resource being requested.</summary>
+ <returns>Returns <see cref="T:System.String" />.The credentials containing the authentication information.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.Parse(System.String)">
+ <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" />.An <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> instance.</returns>
+ <param name="input">A string that represents authentication header value information.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="input" /> is a null reference.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="input" /> is not valid authentication header value information.</exception>
+ </member>
+ <member name="P:System.Net.Http.Headers.AuthenticationHeaderValue.Scheme">
+ <summary>Gets the scheme to use for authorization.</summary>
+ <returns>Returns <see cref="T:System.String" />.The scheme to use for authorization.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.ToString">
+ <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.TryParse(System.String,System.Net.Http.Headers.AuthenticationHeaderValue@)">
+ <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> information.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> information; otherwise, false.</returns>
+ <param name="input">The string to validate.</param>
+ <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> version of the string.</param>
+ </member>
+ <member name="T:System.Net.Http.Headers.CacheControlHeaderValue">
+ <summary>Represents the value of the Cache-Control header.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.CacheControlHeaderValue.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.CacheControlHeaderValue.Equals(System.Object)">
+ <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
+ <param name="obj">The object to compare with the current object.</param>
+ </member>
+ <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.Extensions">
+ <summary>Cache-extension tokens, each with an optional assigned value.</summary>
+ <returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.A collection of cache-extension tokens each with an optional assigned value.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.CacheControlHeaderValue.GetHashCode">
+ <summary>Serves as a hash function for a <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.MaxAge">
+ <summary>The maximum age, specified in seconds, that the HTTP client is willing to accept a response. </summary>
+ <returns>Returns <see cref="T:System.TimeSpan" />.The time in seconds. </returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.MaxStale">
+ <summary>Whether an HTTP client is willing to accept a response that has exceeded its expiration time.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the HTTP client is willing to accept a response that has exceed the expiration time; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.MaxStaleLimit">
+ <summary>The maximum time, in seconds, an HTTP client is willing to accept a response that has exceeded its expiration time.</summary>
+ <returns>Returns <see cref="T:System.TimeSpan" />.The time in seconds.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.MinFresh">
+ <summary>The freshness lifetime, in seconds, that an HTTP client is willing to accept a response.</summary>
+ <returns>Returns <see cref="T:System.TimeSpan" />.The time in seconds.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.MustRevalidate">
+ <summary>Whether the origin server require revalidation of a cache entry on any subsequent use when the cache entry becomes stale.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the origin server requires revalidation of a cache entry on any subsequent use when the entry becomes stale; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.NoCache">
+ <summary>Whether an HTTP client is willing to accept a cached response.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the HTTP client is willing to accept a cached response; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.NoCacheHeaders">
+ <summary>A collection of fieldnames in the "no-cache" directive in a cache-control header field on an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.A collection of fieldnames.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.NoStore">
+ <summary>Whether a cache must not store any part of either the HTTP request mressage or any response.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if a cache must not store any part of either the HTTP request mressage or any response; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.NoTransform">
+ <summary>Whether a cache or proxy must not change any aspect of the entity-body.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if a cache or proxy must not change any aspect of the entity-body; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.OnlyIfCached">
+ <summary>Whether a cache should either respond using a cached entry that is consistent with the other constraints of the HTTP request, or respond with a 504 (Gateway Timeout) status.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if a cache should either respond using a cached entry that is consistent with the other constraints of the HTTP request, or respond with a 504 (Gateway Timeout) status; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.CacheControlHeaderValue.Parse(System.String)">
+ <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" />.A <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> instance.</returns>
+ <param name="input">A string that represents cache-control header value information.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="input" /> is a null reference.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="input" /> is not valid cache-control header value information.</exception>
+ </member>
+ <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.Private">
+ <summary>Whether all or part of the HTTP response message is intended for a single user and must not be cached by a shared cache.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the HTTP response message is intended for a single user and must not be cached by a shared cache; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.PrivateHeaders">
+ <summary>A collection fieldnames in the "private" directive in a cache-control header field on an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.A collection of fieldnames.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.ProxyRevalidate">
+ <summary>Whether the origin server require revalidation of a cache entry on any subsequent use when the cache entry becomes stale for shared user agent caches.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the origin server requires revalidation of a cache entry on any subsequent use when the entry becomes stale for shared user agent caches; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.Public">
+ <summary>Whether an HTTP response may be cached by any cache, even if it would normally be non-cacheable or cacheable only within a non- shared cache.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the HTTP response may be cached by any cache, even if it would normally be non-cacheable or cacheable only within a non- shared cache; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.SharedMaxAge">
+ <summary>The shared maximum age, specified in seconds, in an HTTP response that overrides the "max-age" directive in a cache-control header or an Expires header for a shared cache.</summary>
+ <returns>Returns <see cref="T:System.TimeSpan" />.The time in seconds.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.CacheControlHeaderValue.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.CacheControlHeaderValue.ToString">
+ <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.CacheControlHeaderValue.TryParse(System.String,System.Net.Http.Headers.CacheControlHeaderValue@)">
+ <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> information.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> information; otherwise, false.</returns>
+ <param name="input">The string to validate.</param>
+ <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> version of the string.</param>
+ </member>
+ <member name="T:System.Net.Http.Headers.ContentDispositionHeaderValue">
+ <summary>Represents the value of the Content-Disposition header.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.#ctor(System.Net.Http.Headers.ContentDispositionHeaderValue)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> class.</summary>
+ <param name="source">A <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" />. </param>
+ </member>
+ <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> class.</summary>
+ <param name="dispositionType">A string that contains a <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" />.</param>
+ </member>
+ <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.CreationDate">
+ <summary>The date at which the file was created.</summary>
+ <returns>Returns <see cref="T:System.DateTimeOffset" />.The file creation date.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.DispositionType">
+ <summary>The disposition type for a content body part.</summary>
+ <returns>Returns <see cref="T:System.String" />.The disposition type. </returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.Equals(System.Object)">
+ <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
+ <param name="obj">The object to compare with the current object.</param>
+ </member>
+ <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.FileName">
+ <summary>A suggestion for how to construct a filename for storing the message payload to be used if the entity is detached and stored in a separate file.</summary>
+ <returns>Returns <see cref="T:System.String" />.A suggested filename.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.FileNameStar">
+ <summary>A suggestion for how to construct filenames for storing message payloads to be used if the entities are detached and stored in a separate files.</summary>
+ <returns>Returns <see cref="T:System.String" />.A suggested filename of the form filename*.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.GetHashCode">
+ <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.ModificationDate">
+ <summary>The date at which the file was last modified. </summary>
+ <returns>Returns <see cref="T:System.DateTimeOffset" />.The file modification date.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.Name">
+ <summary>The name for a content body part.</summary>
+ <returns>Returns <see cref="T:System.String" />.The name for the content body part.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.Parameters">
+ <summary>A set of parameters included the Content-Disposition header.</summary>
+ <returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.A collection of parameters. </returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.Parse(System.String)">
+ <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" />.An <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> instance.</returns>
+ <param name="input">A string that represents content disposition header value information.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="input" /> is a null reference.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="input" /> is not valid content disposition header value information.</exception>
+ </member>
+ <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.ReadDate">
+ <summary>The date the file was last read.</summary>
+ <returns>Returns <see cref="T:System.DateTimeOffset" />.The last read date.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.Size">
+ <summary>The approximate size, in bytes, of the file. </summary>
+ <returns>Returns <see cref="T:System.Int64" />.The approximate size, in bytes.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.ToString">
+ <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.TryParse(System.String,System.Net.Http.Headers.ContentDispositionHeaderValue@)">
+ <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> information.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> information; otherwise, false.</returns>
+ <param name="input">The string to validate.</param>
+ <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> version of the string.</param>
+ </member>
+ <member name="T:System.Net.Http.Headers.ContentRangeHeaderValue">
+ <summary>Represents the value of the Content-Range header.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.#ctor(System.Int64)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> class.</summary>
+ <param name="length">The starting or ending point of the range, in bytes.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.#ctor(System.Int64,System.Int64)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> class.</summary>
+ <param name="from">The position, in bytes, at which to start sending data.</param>
+ <param name="to">The position, in bytes, at which to stop sending data.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.#ctor(System.Int64,System.Int64,System.Int64)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> class.</summary>
+ <param name="from">The position, in bytes, at which to start sending data.</param>
+ <param name="to">The position, in bytes, at which to stop sending data.</param>
+ <param name="length">The starting or ending point of the range, in bytes.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.Equals(System.Object)">
+ <summary>Determines whether the specified Object is equal to the current <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
+ <param name="obj">The object to compare with the current object.</param>
+ </member>
+ <member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.From">
+ <summary>Gets the position at which to start sending data.</summary>
+ <returns>Returns <see cref="T:System.Int64" />.The position, in bytes, at which to start sending data.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.GetHashCode">
+ <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.HasLength">
+ <summary>Gets whether the Content-Range header has a length specified.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the Content-Range has a length specified; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.HasRange">
+ <summary>Gets whether the Content-Range has a range specified. </summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the Content-Range has a range specified; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.Length">
+ <summary>Gets the length of the full entity-body.</summary>
+ <returns>Returns <see cref="T:System.Int64" />.The length of the full entity-body.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.Parse(System.String)">
+ <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" />.An <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> instance.</returns>
+ <param name="input">A string that represents content range header value information.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="input" /> is a null reference.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="input" /> is not valid content range header value information.</exception>
+ </member>
+ <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.To">
+ <summary>Gets the position at which to stop sending data.</summary>
+ <returns>Returns <see cref="T:System.Int64" />.The position at which to stop sending data.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.ToString">
+ <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.TryParse(System.String,System.Net.Http.Headers.ContentRangeHeaderValue@)">
+ <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> information.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> information; otherwise, false.</returns>
+ <param name="input">The string to validate.</param>
+ <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> version of the string.</param>
+ </member>
+ <member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.Unit">
+ <summary>The range units used.</summary>
+ <returns>Returns <see cref="T:System.String" />.A <see cref="T:System.String" /> that contains range units. </returns>
+ </member>
+ <member name="T:System.Net.Http.Headers.EntityTagHeaderValue">
+ <summary>Represents an entity-tag header value.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> class.</summary>
+ <param name="tag">A string that contains an <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" />.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.#ctor(System.String,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> class.</summary>
+ <param name="tag">A string that contains an <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" />.</param>
+ <param name="isWeak">A value that indicates if this entity-tag header is a weak validator. If the entity-tag header is weak validator, then <paramref name="isWeak" /> should be set to true. If the entity-tag header is a strong validator, then <paramref name="isWeak" /> should be set to false.</param>
+ </member>
+ <member name="P:System.Net.Http.Headers.EntityTagHeaderValue.Any">
+ <summary>Gets the entity-tag header value.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.Equals(System.Object)">
+ <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
+ <param name="obj">The object to compare with the current object.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.GetHashCode">
+ <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.EntityTagHeaderValue.IsWeak">
+ <summary>Gets whether the entity-tag is prefaced by a weakness indicator.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the entity-tag is prefaced by a weakness indicator; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.Parse(System.String)">
+ <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" />.An <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> instance.</returns>
+ <param name="input">A string that represents entity tag header value information.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="input" /> is a null reference.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="input" /> is not valid entity tag header value information.</exception>
+ </member>
+ <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.EntityTagHeaderValue.Tag">
+ <summary>Gets the opaque quoted string. </summary>
+ <returns>Returns <see cref="T:System.String" />.An opaque quoted string.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.ToString">
+ <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.TryParse(System.String,System.Net.Http.Headers.EntityTagHeaderValue@)">
+ <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> information.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> information; otherwise, false.</returns>
+ <param name="input">The string to validate.</param>
+ <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> version of the string.</param>
+ </member>
+ <member name="T:System.Net.Http.Headers.HttpContentHeaders">
+ <summary>Represents the collection of Content Headers as defined in RFC 2616.</summary>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpContentHeaders.Allow">
+ <summary>Gets the value of the Allow content header on an HTTP response. </summary>
+ <returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.The value of the Allow header on an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentDisposition">
+ <summary>Gets the value of the Content-Disposition content header on an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" />.The value of the Content-Disposition content header on an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentEncoding">
+ <summary>Gets the value of the Content-Encoding content header on an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.The value of the Content-Encoding content header on an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentLanguage">
+ <summary>Gets the value of the Content-Language content header on an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.The value of the Content-Language content header on an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentLength">
+ <summary>Gets or sets the value of the Content-Length content header on an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Int64" />.The value of the Content-Length content header on an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentLocation">
+ <summary>Gets or sets the value of the Content-Location content header on an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Uri" />.The value of the Content-Location content header on an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentMD5">
+ <summary>Gets or sets the value of the Content-MD5 content header on an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Byte" />.The value of the Content-MD5 content header on an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentRange">
+ <summary>Gets or sets the value of the Content-Range content header on an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" />.The value of the Content-Range content header on an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentType">
+ <summary>Gets or sets the value of the Content-Type content header on an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" />.The value of the Content-Type content header on an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpContentHeaders.Expires">
+ <summary>Gets or sets the value of the Expires content header on an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.DateTimeOffset" />.The value of the Expires content header on an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpContentHeaders.LastModified">
+ <summary>Gets or sets the value of the Last-Modified content header on an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.DateTimeOffset" />.The value of the Last-Modified content header on an HTTP response.</returns>
+ </member>
+ <member name="T:System.Net.Http.Headers.HttpHeaders">
+ <summary>A collection of headers and their values as defined in RFC 2616.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.HttpHeaders.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.HttpHeaders.Add(System.String,System.Collections.Generic.IEnumerable{System.String})">
+ <summary>Adds the specified header and its values into the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection.</summary>
+ <param name="name">The header to add to the collection.</param>
+ <param name="values">A list of header values to add to the collection.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.HttpHeaders.Add(System.String,System.String)">
+ <summary>Adds the specified header and its value into the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection.</summary>
+ <param name="name">The header to add to the collection.</param>
+ <param name="value">The content of the header.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.HttpHeaders.Clear">
+ <summary>Removes all headers from the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.HttpHeaders.Contains(System.String)">
+ <summary>Returns if a specific header exists in the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true is the specified header exists in the collection; otherwise false.</returns>
+ <param name="name">The specific header.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.HttpHeaders.GetEnumerator">
+ <summary>Returns an enumerator that can iterate through the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Collections.Generic.IEnumerator`1" />.An enumerator for the <see cref="T:System.Net.Http.Headers.HttpHeaders" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.HttpHeaders.GetValues(System.String)">
+ <summary>Returns all header values for a specified header stored in the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection.</summary>
+ <returns>Returns <see cref="T:System.Collections.Generic.IEnumerable`1" />.An array of header strings.</returns>
+ <param name="name">The specified header to return values for.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.HttpHeaders.Remove(System.String)">
+ <summary>Removes the specified header from the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.</returns>
+ <param name="name">The name of the header to remove from the collection. </param>
+ </member>
+ <member name="M:System.Net.Http.Headers.HttpHeaders.System#Collections#IEnumerable#GetEnumerator">
+ <summary>Gets an enumerator that can iterate through a <see cref="T:System.Net.Http.Headers.HttpHeaders" />.</summary>
+ <returns>Returns <see cref="T:System.Collections.IEnumerator" />.An instance of an implementation of an <see cref="T:System.Collections.IEnumerator" /> that can iterate through a <see cref="T:System.Net.Http.Headers.HttpHeaders" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.HttpHeaders.ToString">
+ <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.HttpHeaders" /> object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.HttpHeaders.TryAddWithoutValidation(System.String,System.Collections.Generic.IEnumerable{System.String})">
+ <summary>Returns a value that indicates whether the specified header and its values were added to the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection without validating the provided information.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified header <paramref name="name" /> and <paramref name="values" /> could be added to the collection; otherwise false.</returns>
+ <param name="name">The header to add to the collection.</param>
+ <param name="values">The values of the header.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.HttpHeaders.TryAddWithoutValidation(System.String,System.String)">
+ <summary>Returns a value that indicates whether the specified header and its value were added to the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection without validating the provided information.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified header <paramref name="name" /> and <paramref name="value" /> could be added to the collection; otherwise false.</returns>
+ <param name="name">The header to add to the collection.</param>
+ <param name="value">The content of the header.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.HttpHeaders.TryGetValues(System.String,System.Collections.Generic.IEnumerable{System.String}@)">
+ <summary>Return if a specified header and specified values are stored in the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true is the specified header <paramref name="name" /> and values are stored in the collection; otherwise false.</returns>
+ <param name="name">The specified header.</param>
+ <param name="values">The specified header values.</param>
+ </member>
+ <member name="T:System.Net.Http.Headers.HttpHeaderValueCollection`1">
+ <summary>Represents a collection of header values.</summary>
+ <typeparam name="T"></typeparam>
+ </member>
+ <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.Add(`0)"></member>
+ <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.Clear"></member>
+ <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.Contains(`0)">
+ <returns>Returns <see cref="T:System.Boolean" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.CopyTo(`0[],System.Int32)"></member>
+ <member name="P:System.Net.Http.Headers.HttpHeaderValueCollection`1.Count">
+ <returns>Returns <see cref="T:System.Int32" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.GetEnumerator">
+ <returns>Returns <see cref="T:System.Collections.Generic.IEnumerator`1" />.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpHeaderValueCollection`1.IsReadOnly">
+ <returns>Returns <see cref="T:System.Boolean" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.ParseAdd(System.String)"></member>
+ <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.Remove(`0)">
+ <returns>Returns <see cref="T:System.Boolean" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.System#Collections#IEnumerable#GetEnumerator">
+ <returns>Returns <see cref="T:System.Collections.IEnumerator" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.ToString">
+ <summary>Returns a string that represents the current XXX object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.TryParseAdd(System.String)">
+ <summary>Determines whether a string is valid XXX information.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.</returns>
+ <param name="input">The string to validate.</param>
+ </member>
+ <member name="T:System.Net.Http.Headers.HttpRequestHeaders">
+ <summary>Represents the collection of Request Headers as defined in RFC 2616.</summary>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Accept">
+ <summary>Gets the value of the Accept header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Accept header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.AcceptCharset">
+ <summary>Gets the value of the Accept-Charset header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Accept-Charset header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.AcceptEncoding">
+ <summary>Gets the value of the Accept-Encoding header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Accept-Encoding header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.AcceptLanguage">
+ <summary>Gets the value of the Accept-Language header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Accept-Language header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Authorization">
+ <summary>Gets or sets the value of the Authorization header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" />.The value of the Authorization header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.CacheControl">
+ <summary>Gets or sets the value of the Cache-Control header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" />.The value of the Cache-Control header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Connection">
+ <summary>Gets the value of the Connection header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Connection header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.ConnectionClose">
+ <summary>Gets or sets a value that indicates if the Connection header for an HTTP request contains Close.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the Connection header contains Close, otherwise false.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Date">
+ <summary>Gets or sets the value of the Date header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.DateTimeOffset" />.The value of the Date header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Expect">
+ <summary>Gets the value of the Expect header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Expect header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.ExpectContinue">
+ <summary>Gets or sets a value that indicates if the Expect header for an HTTP request contains Continue.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the Expect header contains Continue, otherwise false.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.From">
+ <summary>Gets or sets the value of the From header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.String" />.The value of the From header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Host">
+ <summary>Gets or sets the value of the Host header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.String" />.The value of the Host header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.IfMatch">
+ <summary>Gets the value of the If-Match header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the If-Match header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.IfModifiedSince">
+ <summary>Gets or sets the value of the If-Modified-Since header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.DateTimeOffset" />.The value of the If-Modified-Since header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.IfNoneMatch">
+ <summary>Gets the value of the If-None-Match header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.Gets the value of the If-None-Match header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.IfRange">
+ <summary>Gets or sets the value of the If-Range header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" />.The value of the If-Range header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.IfUnmodifiedSince">
+ <summary>Gets or sets the value of the If-Unmodified-Since header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.DateTimeOffset" />.The value of the If-Unmodified-Since header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.MaxForwards">
+ <summary>Gets or sets the value of the Max-Forwards header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.The value of the Max-Forwards header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Pragma">
+ <summary>Gets the value of the Pragma header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Pragma header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.ProxyAuthorization">
+ <summary>Gets or sets the value of the Proxy-Authorization header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" />.The value of the Proxy-Authorization header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Range">
+ <summary>Gets or sets the value of the Range header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.RangeHeaderValue" />.The value of the Range header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Referrer">
+ <summary>Gets or sets the value of the Referer header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Uri" />.The value of the Referer header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.TE">
+ <summary>Gets the value of the TE header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the TE header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Trailer">
+ <summary>Gets the value of the Trailer header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Trailer header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.TransferEncoding">
+ <summary>Gets the value of the Transfer-Encoding header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Transfer-Encoding header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.TransferEncodingChunked">
+ <summary>Gets or sets a value that indicates if the Transfer-Encoding header for an HTTP request contains chunked.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the Transfer-Encoding header contains chunked, otherwise false.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Upgrade">
+ <summary>Gets the value of the Upgrade header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Upgrade header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.UserAgent">
+ <summary>Gets the value of the User-Agent header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the User-Agent header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Via">
+ <summary>Gets the value of the Via header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Via header for an HTTP request.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Warning">
+ <summary>Gets the value of the Warning header for an HTTP request.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Warning header for an HTTP request.</returns>
+ </member>
+ <member name="T:System.Net.Http.Headers.HttpResponseHeaders">
+ <summary>Represents the collection of Response Headers as defined in RFC 2616.</summary>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpResponseHeaders.AcceptRanges">
+ <summary>Gets the value of the Accept-Ranges header for an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Accept-Ranges header for an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Age">
+ <summary>Gets or sets the value of the Age header for an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.TimeSpan" />.The value of the Age header for an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpResponseHeaders.CacheControl">
+ <summary>Gets or sets the value of the Cache-Control header for an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" />.The value of the Cache-Control header for an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Connection">
+ <summary>Gets the value of the Connection header for an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Connection header for an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpResponseHeaders.ConnectionClose">
+ <summary>Gets or sets a value that indicates if the Connection header for an HTTP response contains Close.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the Connection header contains Close, otherwise false.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Date">
+ <summary>Gets or sets the value of the Date header for an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.DateTimeOffset" />.The value of the Date header for an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpResponseHeaders.ETag">
+ <summary>Gets or sets the value of the ETag header for an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" />.The value of the ETag header for an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Location">
+ <summary>Gets or sets the value of the Location header for an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Uri" />.The value of the Location header for an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Pragma">
+ <summary>Gets the value of the Pragma header for an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Pragma header for an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpResponseHeaders.ProxyAuthenticate">
+ <summary>Gets the value of the Proxy-Authenticate header for an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Proxy-Authenticate header for an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpResponseHeaders.RetryAfter">
+ <summary>Gets or sets the value of the Retry-After header for an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" />.The value of the Retry-After header for an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Server">
+ <summary>Gets the value of the Server header for an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Server header for an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Trailer">
+ <summary>Gets the value of the Trailer header for an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Trailer header for an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpResponseHeaders.TransferEncoding">
+ <summary>Gets the value of the Transfer-Encoding header for an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Transfer-Encoding header for an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpResponseHeaders.TransferEncodingChunked">
+ <summary>Gets or sets a value that indicates if the Transfer-Encoding header for an HTTP response contains chunked.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the Transfer-Encoding header contains chunked, otherwise false.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Upgrade">
+ <summary>Gets the value of the Upgrade header for an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Upgrade header for an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Vary">
+ <summary>Gets the value of the Vary header for an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Vary header for an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Via">
+ <summary>Gets the value of the Via header for an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Via header for an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Warning">
+ <summary>Gets the value of the Warning header for an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Warning header for an HTTP response.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.HttpResponseHeaders.WwwAuthenticate">
+ <summary>Gets the value of the WWW-Authenticate header for an HTTP response.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the WWW-Authenticate header for an HTTP response.</returns>
+ </member>
+ <member name="T:System.Net.Http.Headers.MediaTypeHeaderValue">
+ <summary>Represents a media-type as defined in the RFC 2616.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.#ctor(System.Net.Http.Headers.MediaTypeHeaderValue)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> class.</summary>
+ </member>
+ <member name="P:System.Net.Http.Headers.MediaTypeHeaderValue.CharSet">
+ <summary>Gets or sets the character set.</summary>
+ <returns>Returns <see cref="T:System.String" />.The character set.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.Equals(System.Object)">
+ <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
+ <param name="obj">The object to compare with the current object.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.GetHashCode">
+ <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.MediaTypeHeaderValue.MediaType">
+ <summary>Gets or sets the media-type header value.</summary>
+ <returns>Returns <see cref="T:System.String" />.The media-type header value.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.MediaTypeHeaderValue.Parameters">
+ <summary>Gets or sets the media-type header value parameters.</summary>
+ <returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.The media-type header value parameters.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.Parse(System.String)">
+ <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" />.An <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> instance.</returns>
+ <param name="input">A string that represents media type header value information.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="input" /> is a null reference.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="input" /> is not valid media type header value information.</exception>
+ </member>
+ <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.ToString">
+ <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.TryParse(System.String,System.Net.Http.Headers.MediaTypeHeaderValue@)">
+ <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> information.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> information; otherwise, false.</returns>
+ <param name="input">The string to validate.</param>
+ <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> version of the string.</param>
+ </member>
+ <member name="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue">
+ <summary>Represents a content-type header value with an additional quality.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.#ctor(System.String,System.Double)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse(System.String)">
+ <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue" />.An <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue" /> instance.</returns>
+ <param name="input">A string that represents media type with quality header value information.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="input" /> is a null reference.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="input" /> is not valid media type with quality header value information.</exception>
+ </member>
+ <member name="P:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Quality">
+ <returns>Returns <see cref="T:System.Double" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.TryParse(System.String,System.Net.Http.Headers.MediaTypeWithQualityHeaderValue@)">
+ <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue" /> information.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue" /> information; otherwise, false.</returns>
+ <param name="input">The string to validate.</param>
+ <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue" /> version of the string.</param>
+ </member>
+ <member name="T:System.Net.Http.Headers.NameValueHeaderValue">
+ <summary>Represents a name/value pair.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.NameValueHeaderValue.#ctor(System.Net.Http.Headers.NameValueHeaderValue)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.NameValueHeaderValue.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> class.</summary>
+ <param name="name">The header name.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.NameValueHeaderValue.#ctor(System.String,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> class.</summary>
+ <param name="name">The header name.</param>
+ <param name="value">The header value.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.NameValueHeaderValue.Equals(System.Object)">
+ <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
+ <param name="obj">The object to compare with the current object.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.NameValueHeaderValue.GetHashCode">
+ <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.NameValueHeaderValue.Name">
+ <summary>Gets the header name.</summary>
+ <returns>Returns <see cref="T:System.String" />.The header name.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.NameValueHeaderValue.Parse(System.String)">
+ <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" />.An <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> instance.</returns>
+ <param name="input">A string that represents name value header value information.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="input" /> is a null reference.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="input" /> is not valid name value header value information.</exception>
+ </member>
+ <member name="M:System.Net.Http.Headers.NameValueHeaderValue.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.NameValueHeaderValue.ToString">
+ <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.NameValueHeaderValue.TryParse(System.String,System.Net.Http.Headers.NameValueHeaderValue@)">
+ <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> information.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> information; otherwise, false.</returns>
+ <param name="input">The string to validate.</param>
+ <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> version of the string.</param>
+ </member>
+ <member name="P:System.Net.Http.Headers.NameValueHeaderValue.Value">
+ <summary>Gets the header value.</summary>
+ <returns>Returns <see cref="T:System.String" />.The header value.</returns>
+ </member>
+ <member name="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue">
+ <summary>Represents a name/value pair with parameters.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.#ctor(System.Net.Http.Headers.NameValueWithParametersHeaderValue)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.#ctor(System.String,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.Equals(System.Object)">
+ <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
+ <param name="obj">The object to compare with the current object.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.GetHashCode">
+ <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.NameValueWithParametersHeaderValue.Parameters">
+ <returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.Parse(System.String)">
+ <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" />.An <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> instance.</returns>
+ <param name="input">A string that represents name value with parameter header value information.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="input" /> is a null reference.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="input" /> is not valid name value with parameter header value information.</exception>
+ </member>
+ <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.ToString">
+ <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.TryParse(System.String,System.Net.Http.Headers.NameValueWithParametersHeaderValue@)">
+ <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> information.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> information; otherwise, false.</returns>
+ <param name="input">The string to validate.</param>
+ <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> version of the string.</param>
+ </member>
+ <member name="T:System.Net.Http.Headers.ProductHeaderValue">
+ <summary>Represents a product token in header value.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.ProductHeaderValue.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ProductHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.ProductHeaderValue.#ctor(System.String,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ProductHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.ProductHeaderValue.Equals(System.Object)">
+ <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.ProductHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
+ <param name="obj">The object to compare with the current object.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.ProductHeaderValue.GetHashCode">
+ <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.ProductHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.ProductHeaderValue.Name">
+ <summary>Gets the name of the product token.</summary>
+ <returns>Returns <see cref="T:System.String" />.The name of the product token.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ProductHeaderValue.Parse(System.String)">
+ <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.ProductHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.ProductHeaderValue" />.An <see cref="T:System.Net.Http.Headers.ProductHeaderValue" /> instance.</returns>
+ <param name="input">A string that represents product header value information.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.ProductHeaderValue.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.ProductHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ProductHeaderValue.ToString">
+ <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.ProductHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ProductHeaderValue.TryParse(System.String,System.Net.Http.Headers.ProductHeaderValue@)">
+ <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.ProductHeaderValue" /> information.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.ProductHeaderValue" /> information; otherwise, false.</returns>
+ <param name="input">The string to validate.</param>
+ <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.ProductHeaderValue" /> version of the string.</param>
+ </member>
+ <member name="P:System.Net.Http.Headers.ProductHeaderValue.Version">
+ <summary>Gets the version of the product token.</summary>
+ <returns>Returns <see cref="T:System.String" />.The version of the product token. </returns>
+ </member>
+ <member name="T:System.Net.Http.Headers.ProductInfoHeaderValue">
+ <summary>Represents a value which can either be a product or a comment.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.#ctor(System.Net.Http.Headers.ProductHeaderValue)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.#ctor(System.String,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> class.</summary>
+ </member>
+ <member name="P:System.Net.Http.Headers.ProductInfoHeaderValue.Comment">
+ <returns>Returns <see cref="T:System.String" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.Equals(System.Object)">
+ <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
+ <param name="obj">The object to compare with the current object.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.GetHashCode">
+ <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.Parse(System.String)">
+ <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" />.An <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> instance.</returns>
+ <param name="input">A string that represents product info header value information.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="input" /> is a null reference.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="input" /> is not valid product info header value information.</exception>
+ </member>
+ <member name="P:System.Net.Http.Headers.ProductInfoHeaderValue.Product">
+ <returns>Returns <see cref="T:System.Net.Http.Headers.ProductHeaderValue" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.ToString">
+ <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.TryParse(System.String,System.Net.Http.Headers.ProductInfoHeaderValue@)">
+ <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> information.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> information; otherwise, false.</returns>
+ <param name="input">The string to validate.</param>
+ <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> version of the string.</param>
+ </member>
+ <member name="T:System.Net.Http.Headers.RangeConditionHeaderValue">
+ <summary>Represents a header value which can either be a date/time or an entity-tag value.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.#ctor(System.DateTimeOffset)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.#ctor(System.Net.Http.Headers.EntityTagHeaderValue)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> class.</summary>
+ </member>
+ <member name="P:System.Net.Http.Headers.RangeConditionHeaderValue.Date">
+ <returns>Returns <see cref="T:System.DateTimeOffset" />.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.RangeConditionHeaderValue.EntityTag">
+ <returns>Returns <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.Equals(System.Object)">
+ <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.GetHashCode">
+ <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.Parse(System.String)">
+ <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" />.An <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> instance.</returns>
+ <param name="input">A string that represents range condition header value information.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="input" /> is a null reference.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="input" /> is not valid range Condition header value information.</exception>
+ </member>
+ <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.ToString">
+ <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.TryParse(System.String,System.Net.Http.Headers.RangeConditionHeaderValue@)">
+ <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> information.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> information; otherwise, false.</returns>
+ <param name="input">The string to validate.</param>
+ <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> version of the string.</param>
+ </member>
+ <member name="T:System.Net.Http.Headers.RangeHeaderValue">
+ <summary>Represents the value of the Range header.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.RangeHeaderValue.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.RangeHeaderValue.#ctor(System.Nullable{System.Int64},System.Nullable{System.Int64})">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.RangeHeaderValue.Equals(System.Object)">
+ <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
+ <param name="obj">The object to compare with the current object.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.RangeHeaderValue.GetHashCode">
+ <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.RangeHeaderValue.Parse(System.String)">
+ <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.RangeHeaderValue" />.An <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> instance.</returns>
+ <param name="input">A string that represents range header value information.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="input" /> is a null reference.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="input" /> is not valid range header value information.</exception>
+ </member>
+ <member name="P:System.Net.Http.Headers.RangeHeaderValue.Ranges">
+ <returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.RangeHeaderValue.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.RangeHeaderValue.ToString">
+ <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.RangeHeaderValue.TryParse(System.String,System.Net.Http.Headers.RangeHeaderValue@)">
+ <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> information.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> information; otherwise, false.</returns>
+ <param name="input">he string to validate.</param>
+ <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> version of the string.</param>
+ </member>
+ <member name="P:System.Net.Http.Headers.RangeHeaderValue.Unit">
+ <returns>Returns <see cref="T:System.String" />.</returns>
+ </member>
+ <member name="T:System.Net.Http.Headers.RangeItemHeaderValue">
+ <summary>Represents a byte-range header value.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.RangeItemHeaderValue.#ctor(System.Nullable{System.Int64},System.Nullable{System.Int64})">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RangeItemHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.RangeItemHeaderValue.Equals(System.Object)">
+ <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.RangeItemHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
+ <param name="obj">The object to compare with the current object.</param>
+ </member>
+ <member name="P:System.Net.Http.Headers.RangeItemHeaderValue.From">
+ <returns>Returns <see cref="T:System.Int64" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.RangeItemHeaderValue.GetHashCode">
+ <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.RangeItemHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.RangeItemHeaderValue.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.RangeItemHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.RangeItemHeaderValue.To">
+ <returns>Returns <see cref="T:System.Int64" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.RangeItemHeaderValue.ToString">
+ <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.RangeItemHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
+ </member>
+ <member name="T:System.Net.Http.Headers.RetryConditionHeaderValue">
+ <summary>Represents a header value which can either be a date/time or a timespan value.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.#ctor(System.DateTimeOffset)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.#ctor(System.TimeSpan)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> class.</summary>
+ </member>
+ <member name="P:System.Net.Http.Headers.RetryConditionHeaderValue.Date">
+ <returns>Returns <see cref="T:System.DateTimeOffset" />.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.RetryConditionHeaderValue.Delta">
+ <returns>Returns <see cref="T:System.TimeSpan" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.Equals(System.Object)">
+ <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
+ <param name="obj">The object to compare with the current object.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.GetHashCode">
+ <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.Parse(System.String)">
+ <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" />.An <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> instance.</returns>
+ <param name="input">A string that represents retry condition header value information.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="input" /> is a null reference.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="input" /> is not valid retry condition header value information.</exception>
+ </member>
+ <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.ToString">
+ <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.TryParse(System.String,System.Net.Http.Headers.RetryConditionHeaderValue@)">
+ <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> information.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> information; otherwise, false.</returns>
+ <param name="input">The string to validate.</param>
+ <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> version of the string.</param>
+ </member>
+ <member name="T:System.Net.Http.Headers.StringWithQualityHeaderValue">
+ <summary>Represents a string header value with an optional quality.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.#ctor(System.String,System.Double)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.Equals(System.Object)">
+ <summary>Determines whether the specified Object is equal to the current <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
+ <param name="obj">The object to compare with the current object.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.GetHashCode">
+ <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.Parse(System.String)">
+ <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" />.An <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> instance.</returns>
+ <param name="input">A string that represents quality header value information.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="input" /> is a null reference.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="input" /> is not valid string with quality header value information.</exception>
+ </member>
+ <member name="P:System.Net.Http.Headers.StringWithQualityHeaderValue.Quality">
+ <returns>Returns <see cref="T:System.Double" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.ToString">
+ <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.TryParse(System.String,System.Net.Http.Headers.StringWithQualityHeaderValue@)">
+ <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> information.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> information; otherwise, false.</returns>
+ <param name="input">The string to validate.</param>
+ <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> version of the string.</param>
+ </member>
+ <member name="P:System.Net.Http.Headers.StringWithQualityHeaderValue.Value">
+ <returns>Returns <see cref="T:System.String" />.</returns>
+ </member>
+ <member name="T:System.Net.Http.Headers.TransferCodingHeaderValue">
+ <summary>Represents a transfer-coding header value.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.#ctor(System.Net.Http.Headers.TransferCodingHeaderValue)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.Equals(System.Object)">
+ <summary>Determines whether the specified Object is equal to the current <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
+ <param name="obj">The object to compare with the current object.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.GetHashCode">
+ <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.TransferCodingHeaderValue.Parameters">
+ <summary>Gets the transfer-coding parameters.</summary>
+ <returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.The transfer-coding parameters.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.Parse(System.String)">
+ <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue" />.An <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> instance.</returns>
+ <param name="input">A string that represents transfer-coding header value information.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="input" /> is a null reference.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="input" /> is not valid transfer-coding header value information.</exception>
+ </member>
+ <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.ToString">
+ <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.TryParse(System.String,System.Net.Http.Headers.TransferCodingHeaderValue@)">
+ <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue" /> information.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue" /> information; otherwise, false.</returns>
+ <param name="input">The string to validate.</param>
+ <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue" /> version of the string.</param>
+ </member>
+ <member name="P:System.Net.Http.Headers.TransferCodingHeaderValue.Value">
+ <summary>Gets the transfer-coding value.</summary>
+ <returns>Returns <see cref="T:System.String" />.The transfer-coding value.</returns>
+ </member>
+ <member name="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue">
+ <summary>Represents a transfer-coding header value with optional quality.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue.#ctor(System.String,System.Double)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue" /> class.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue.Parse(System.String)">
+ <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue" />.An <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue" /> instance.</returns>
+ <param name="input">A string that represents transfer-coding value information.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="input" /> is a null reference.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="input" /> is not valid transfer-coding with quality header value information.</exception>
+ </member>
+ <member name="P:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue.Quality">
+ <returns>Returns <see cref="T:System.Double" />.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue.TryParse(System.String,System.Net.Http.Headers.TransferCodingWithQualityHeaderValue@)">
+ <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue" /> information.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue" /> information; otherwise, false.</returns>
+ <param name="input">The string to validate.</param>
+ <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue" /> version of the string.</param>
+ </member>
+ <member name="T:System.Net.Http.Headers.ViaHeaderValue">
+ <summary>Represents the value of a Via header.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.ViaHeaderValue.#ctor(System.String,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ViaHeaderValue" /> class.</summary>
+ <param name="protocolVersion">The protocol version of the received protocol.</param>
+ <param name="receivedBy">The host and port that the request or response was received by.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.ViaHeaderValue.#ctor(System.String,System.String,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ViaHeaderValue" /> class.</summary>
+ <param name="protocolVersion">The protocol version of the received protocol.</param>
+ <param name="receivedBy">The host and port that the request or response was received by.</param>
+ <param name="protocolName">The protocol name of the received protocol.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.ViaHeaderValue.#ctor(System.String,System.String,System.String,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ViaHeaderValue" /> class.</summary>
+ <param name="protocolVersion">The protocol version of the received protocol.</param>
+ <param name="receivedBy">The host and port that the request or response was received by.</param>
+ <param name="protocolName">The protocol name of the received protocol.</param>
+ <param name="comment">The comment field used to identify the software of the recipient proxy or gateway.</param>
+ </member>
+ <member name="P:System.Net.Http.Headers.ViaHeaderValue.Comment">
+ <summary>Gets the comment field used to identify the software of the recipient proxy or gateway.</summary>
+ <returns>Returns <see cref="T:System.String" />.The comment field used to identify the software of the recipient proxy or gateway.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ViaHeaderValue.Equals(System.Object)">
+ <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.ViaHeaderValue" />object.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
+ <param name="obj">The object to compare with the current object.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.ViaHeaderValue.GetHashCode">
+ <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.ViaHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.Returns a hash code for the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ViaHeaderValue.Parse(System.String)">
+ <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.ViaHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Net.Http.Headers.ViaHeaderValue" />.An <see cref="T:System.Net.Http.Headers.ViaHeaderValue" /> instance.</returns>
+ <param name="input">A string that represents via header value information.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="input" /> is a null reference.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="input" /> is not valid via header value information.</exception>
+ </member>
+ <member name="P:System.Net.Http.Headers.ViaHeaderValue.ProtocolName">
+ <summary>Gets the protocol name of the received protocol.</summary>
+ <returns>Returns <see cref="T:System.String" />.The protocol name.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.ViaHeaderValue.ProtocolVersion">
+ <summary>Gets the protocol version of the received protocol.</summary>
+ <returns>Returns <see cref="T:System.String" />.The protocol version.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.ViaHeaderValue.ReceivedBy">
+ <summary>Gets the host and port that the request or response was received by.</summary>
+ <returns>Returns <see cref="T:System.String" />.The host and port that the request or response was received by.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ViaHeaderValue.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.ViaHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ViaHeaderValue.ToString">
+ <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.ViaHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.ViaHeaderValue.TryParse(System.String,System.Net.Http.Headers.ViaHeaderValue@)">
+ <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.ViaHeaderValue" /> information.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.ViaHeaderValue" /> information; otherwise, false.</returns>
+ <param name="input">The string to validate.</param>
+ <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.ViaHeaderValue" /> version of the string.</param>
+ </member>
+ <member name="T:System.Net.Http.Headers.WarningHeaderValue">
+ <summary>Represents a warning value used by the Warning header.</summary>
+ </member>
+ <member name="M:System.Net.Http.Headers.WarningHeaderValue.#ctor(System.Int32,System.String,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.WarningHeaderValue" /> class.</summary>
+ <param name="code">The specific warning code.</param>
+ <param name="agent">The host that attached the warning.</param>
+ <param name="text">A quoted-string containing the warning text.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.WarningHeaderValue.#ctor(System.Int32,System.String,System.String,System.DateTimeOffset)">
+ <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.WarningHeaderValue" /> class.</summary>
+ <param name="code">The specific warning code.</param>
+ <param name="agent">The host that attached the warning.</param>
+ <param name="text">A quoted-string containing the warning text.</param>
+ <param name="date">The date/time stamp of the warning.</param>
+ </member>
+ <member name="P:System.Net.Http.Headers.WarningHeaderValue.Agent">
+ <summary>Gets the host that attached the warning.</summary>
+ <returns>Returns <see cref="T:System.String" />.The host that attached the warning.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.WarningHeaderValue.Code">
+ <summary>Gets the specific warning code.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.The specific warning code.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.WarningHeaderValue.Date">
+ <summary>Gets the date/time stamp of the warning.</summary>
+ <returns>Returns <see cref="T:System.DateTimeOffset" />.The date/time stamp of the warning.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.WarningHeaderValue.Equals(System.Object)">
+ <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.WarningHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
+ <param name="obj">The object to compare with the current object.</param>
+ </member>
+ <member name="M:System.Net.Http.Headers.WarningHeaderValue.GetHashCode">
+ <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.WarningHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.WarningHeaderValue.Parse(System.String)">
+ <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.WarningHeaderValue" /> instance.</summary>
+ <returns>Returns an <see cref="T:System.Net.Http.Headers.WarningHeaderValue" /> instance.</returns>
+ <param name="input">A string that represents authentication header value information.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="input" /> is a null reference.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="input" /> is not valid authentication header value information.</exception>
+ </member>
+ <member name="M:System.Net.Http.Headers.WarningHeaderValue.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.WarningHeaderValue" /> instance.</summary>
+ <returns>Returns <see cref="T:System.Object" />.Returns a copy of the current instance.</returns>
+ </member>
+ <member name="P:System.Net.Http.Headers.WarningHeaderValue.Text">
+ <summary>Gets a quoted-string containing the warning text.</summary>
+ <returns>Returns <see cref="T:System.String" />.A quoted-string containing the warning text.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.WarningHeaderValue.ToString">
+ <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.WarningHeaderValue" /> object.</summary>
+ <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
+ </member>
+ <member name="M:System.Net.Http.Headers.WarningHeaderValue.TryParse(System.String,System.Net.Http.Headers.WarningHeaderValue@)">
+ <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.WarningHeaderValue" /> information.</summary>
+ <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.WarningHeaderValue" /> information; otherwise, false.</returns>
+ <param name="input">The string to validate.</param>
+ <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.WarningHeaderValue" /> version of the string.</param>
+ </member>
+ </members>
+</doc>
\ No newline at end of file diff --git a/SendGrid/packages/Microsoft.Net.Http.2.0.20710.0/lib/net45/_._ b/SendGrid/packages/Microsoft.Net.Http.2.0.20710.0/lib/net45/_._ new file mode 100644 index 0000000..5f28270 --- /dev/null +++ b/SendGrid/packages/Microsoft.Net.Http.2.0.20710.0/lib/net45/_._ @@ -0,0 +1 @@ +
\ No newline at end of file diff --git a/SendGrid/packages/Moq.4.0.10827/License.txt b/SendGrid/packages/Moq.4.0.10827/License.txt index 8b6bcf8..8b6bcf8 100755..100644 --- a/SendGrid/packages/Moq.4.0.10827/License.txt +++ b/SendGrid/packages/Moq.4.0.10827/License.txt diff --git a/SendGrid/packages/Moq.4.0.10827/Moq.chm b/SendGrid/packages/Moq.4.0.10827/Moq.chm Binary files differindex f5779bb..f5779bb 100755..100644 --- a/SendGrid/packages/Moq.4.0.10827/Moq.chm +++ b/SendGrid/packages/Moq.4.0.10827/Moq.chm diff --git a/SendGrid/packages/Moq.4.0.10827/lib/NET35/Moq.dll b/SendGrid/packages/Moq.4.0.10827/lib/NET35/Moq.dll Binary files differindex 3d3b8cc..3d3b8cc 100755..100644 --- a/SendGrid/packages/Moq.4.0.10827/lib/NET35/Moq.dll +++ b/SendGrid/packages/Moq.4.0.10827/lib/NET35/Moq.dll diff --git a/SendGrid/packages/Moq.4.0.10827/lib/NET35/Moq.pdb b/SendGrid/packages/Moq.4.0.10827/lib/NET35/Moq.pdb Binary files differindex b0eaa80..b0eaa80 100755..100644 --- a/SendGrid/packages/Moq.4.0.10827/lib/NET35/Moq.pdb +++ b/SendGrid/packages/Moq.4.0.10827/lib/NET35/Moq.pdb diff --git a/SendGrid/packages/Moq.4.0.10827/lib/NET35/Moq.xml b/SendGrid/packages/Moq.4.0.10827/lib/NET35/Moq.xml index 4320775..4320775 100755..100644 --- a/SendGrid/packages/Moq.4.0.10827/lib/NET35/Moq.xml +++ b/SendGrid/packages/Moq.4.0.10827/lib/NET35/Moq.xml diff --git a/SendGrid/packages/Moq.4.0.10827/lib/NET40/Moq.dll b/SendGrid/packages/Moq.4.0.10827/lib/NET40/Moq.dll Binary files differindex 3a3e653..3a3e653 100755..100644 --- a/SendGrid/packages/Moq.4.0.10827/lib/NET40/Moq.dll +++ b/SendGrid/packages/Moq.4.0.10827/lib/NET40/Moq.dll diff --git a/SendGrid/packages/Moq.4.0.10827/lib/NET40/Moq.pdb b/SendGrid/packages/Moq.4.0.10827/lib/NET40/Moq.pdb Binary files differindex 03cca56..03cca56 100755..100644 --- a/SendGrid/packages/Moq.4.0.10827/lib/NET40/Moq.pdb +++ b/SendGrid/packages/Moq.4.0.10827/lib/NET40/Moq.pdb diff --git a/SendGrid/packages/Moq.4.0.10827/lib/NET40/Moq.xml b/SendGrid/packages/Moq.4.0.10827/lib/NET40/Moq.xml index e0743a6..e0743a6 100755..100644 --- a/SendGrid/packages/Moq.4.0.10827/lib/NET40/Moq.xml +++ b/SendGrid/packages/Moq.4.0.10827/lib/NET40/Moq.xml diff --git a/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Castle.Core.dll b/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Castle.Core.dll Binary files differindex a887ecd..a887ecd 100755..100644 --- a/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Castle.Core.dll +++ b/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Castle.Core.dll diff --git a/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.dll b/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.dll Binary files differindex fb516c1..fb516c1 100755..100644 --- a/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.dll +++ b/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.dll diff --git a/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.pdb b/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.pdb Binary files differindex d33d394..d33d394 100755..100644 --- a/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.pdb +++ b/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.pdb diff --git a/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.xml b/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.xml index 90efe10..90efe10 100755..100644 --- a/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.xml +++ b/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.xml diff --git a/SendGrid/packages/NUnit.2.5.10.11092/Logo.ico b/SendGrid/packages/NUnit.2.5.10.11092/Logo.ico Binary files differindex 13c4ff9..13c4ff9 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/Logo.ico +++ b/SendGrid/packages/NUnit.2.5.10.11092/Logo.ico diff --git a/SendGrid/packages/NUnit.2.5.10.11092/NUnitFitTests.html b/SendGrid/packages/NUnit.2.5.10.11092/NUnitFitTests.html index b7eb5c9..b7eb5c9 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/NUnitFitTests.html +++ b/SendGrid/packages/NUnit.2.5.10.11092/NUnitFitTests.html diff --git a/SendGrid/packages/NUnit.2.5.10.11092/fit-license.txt b/SendGrid/packages/NUnit.2.5.10.11092/fit-license.txt index af37532..af37532 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/fit-license.txt +++ b/SendGrid/packages/NUnit.2.5.10.11092/fit-license.txt diff --git a/SendGrid/packages/NUnit.2.5.10.11092/lib/nunit.framework.dll b/SendGrid/packages/NUnit.2.5.10.11092/lib/nunit.framework.dll Binary files differindex 6856e51..6856e51 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/lib/nunit.framework.dll +++ b/SendGrid/packages/NUnit.2.5.10.11092/lib/nunit.framework.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/lib/nunit.framework.xml b/SendGrid/packages/NUnit.2.5.10.11092/lib/nunit.framework.xml index c98e5ad..c98e5ad 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/lib/nunit.framework.xml +++ b/SendGrid/packages/NUnit.2.5.10.11092/lib/nunit.framework.xml diff --git a/SendGrid/packages/NUnit.2.5.10.11092/lib/nunit.mocks.dll b/SendGrid/packages/NUnit.2.5.10.11092/lib/nunit.mocks.dll Binary files differindex 6ee2c1c..6ee2c1c 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/lib/nunit.mocks.dll +++ b/SendGrid/packages/NUnit.2.5.10.11092/lib/nunit.mocks.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/lib/pnunit.framework.dll b/SendGrid/packages/NUnit.2.5.10.11092/lib/pnunit.framework.dll Binary files differindex 6c105d7..6c105d7 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/lib/pnunit.framework.dll +++ b/SendGrid/packages/NUnit.2.5.10.11092/lib/pnunit.framework.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/license.txt b/SendGrid/packages/NUnit.2.5.10.11092/license.txt index ab91df4..ab91df4 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/license.txt +++ b/SendGrid/packages/NUnit.2.5.10.11092/license.txt diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/NUnitTests.VisualState.xml b/SendGrid/packages/NUnit.2.5.10.11092/tools/NUnitTests.VisualState.xml index 603cda7..603cda7 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/NUnitTests.VisualState.xml +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/NUnitTests.VisualState.xml diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/NUnitTests.config b/SendGrid/packages/NUnit.2.5.10.11092/tools/NUnitTests.config index 9487c07..9487c07 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/NUnitTests.config +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/NUnitTests.config diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/NUnitTests.nunit b/SendGrid/packages/NUnit.2.5.10.11092/tools/NUnitTests.nunit index bb80dd6..bb80dd6 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/NUnitTests.nunit +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/NUnitTests.nunit diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/TestResult.xml b/SendGrid/packages/NUnit.2.5.10.11092/tools/TestResult.xml index 058d42b..058d42b 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/TestResult.xml +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/TestResult.xml diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/agent.conf b/SendGrid/packages/NUnit.2.5.10.11092/tools/agent.conf index b4cf550..b4cf550 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/agent.conf +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/agent.conf diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/agent.log.conf b/SendGrid/packages/NUnit.2.5.10.11092/tools/agent.log.conf index d340cad..d340cad 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/agent.log.conf +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/agent.log.conf diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/launcher.log.conf b/SendGrid/packages/NUnit.2.5.10.11092/tools/launcher.log.conf index d340cad..d340cad 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/launcher.log.conf +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/launcher.log.conf diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Failure.png b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Failure.png Binary files differindex 2e400b2..2e400b2 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Failure.png +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Failure.png diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Ignored.png b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Ignored.png Binary files differindex 478efbf..478efbf 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Ignored.png +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Ignored.png diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Inconclusive.png b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Inconclusive.png Binary files differindex 4807b7c..4807b7c 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Inconclusive.png +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Inconclusive.png diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Skipped.png b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Skipped.png Binary files differindex 7c9fc64..7c9fc64 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Skipped.png +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Skipped.png diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Success.png b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Success.png Binary files differindex 2a30150..2a30150 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Success.png +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Success.png diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/fit.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/fit.dll Binary files differindex 40bbef0..40bbef0 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/fit.dll +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/fit.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/log4net.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/log4net.dll Binary files differindex 20a2e1c..20a2e1c 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/log4net.dll +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/log4net.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit-console-runner.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit-console-runner.dll Binary files differindex 1709ce7..1709ce7 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit-console-runner.dll +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit-console-runner.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit-gui-runner.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit-gui-runner.dll Binary files differindex 35efa73..35efa73 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit-gui-runner.dll +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit-gui-runner.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.core.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.core.dll Binary files differindex a1dd698..a1dd698 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.core.dll +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.core.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.core.interfaces.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.core.interfaces.dll Binary files differindex 0ac8788..0ac8788 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.core.interfaces.dll +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.core.interfaces.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.fixtures.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.fixtures.dll Binary files differindex 8fd1932..8fd1932 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.fixtures.dll +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.fixtures.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.uiexception.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.uiexception.dll Binary files differindex 610c170..610c170 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.uiexception.dll +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.uiexception.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.uikit.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.uikit.dll Binary files differindex 9087db2..9087db2 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.uikit.dll +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.uikit.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.util.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.util.dll Binary files differindex 0b315c2..0b315c2 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.util.dll +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.util.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent-x86.exe b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent-x86.exe Binary files differindex ebcee1b..ebcee1b 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent-x86.exe +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent-x86.exe diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent-x86.exe.config b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent-x86.exe.config index 84c2906..84c2906 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent-x86.exe.config +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent-x86.exe.config diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent.exe b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent.exe Binary files differindex ec41f32..ec41f32 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent.exe +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent.exe diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent.exe.config b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent.exe.config index 84c2906..84c2906 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent.exe.config +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent.exe.config diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console-x86.exe b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console-x86.exe Binary files differindex e08ac9c..e08ac9c 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console-x86.exe +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console-x86.exe diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console-x86.exe.config b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console-x86.exe.config index ce92b5b..ce92b5b 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console-x86.exe.config +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console-x86.exe.config diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console.exe b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console.exe Binary files differindex 1544a9d..1544a9d 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console.exe +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console.exe diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console.exe.config b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console.exe.config index ce92b5b..ce92b5b 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console.exe.config +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console.exe.config diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-x86.exe b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-x86.exe Binary files differindex fd342c0..fd342c0 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-x86.exe +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-x86.exe diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-x86.exe.config b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-x86.exe.config index 6c0320e..6c0320e 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-x86.exe.config +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-x86.exe.config diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit.exe b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit.exe Binary files differindex ad8b08a..ad8b08a 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit.exe +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit.exe diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit.exe.config b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit.exe.config index 6c0320e..6c0320e 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit.exe.config +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit.exe.config diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit.framework.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit.framework.dll Binary files differindex 6856e51..6856e51 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit.framework.dll +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit.framework.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-agent.exe b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-agent.exe Binary files differindex 7a555e1..7a555e1 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-agent.exe +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-agent.exe diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-agent.exe.config b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-agent.exe.config index 5ed5f7b..5ed5f7b 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-agent.exe.config +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-agent.exe.config diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-launcher.exe b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-launcher.exe Binary files differindex c70e58e..c70e58e 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-launcher.exe +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-launcher.exe diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-launcher.exe.config b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-launcher.exe.config index 5ed5f7b..5ed5f7b 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-launcher.exe.config +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-launcher.exe.config diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit.framework.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit.framework.dll Binary files differindex 6c105d7..6c105d7 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit.framework.dll +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit.framework.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit.tests.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit.tests.dll Binary files differindex dce018a..dce018a 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit.tests.dll +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit.tests.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/runFile.exe b/SendGrid/packages/NUnit.2.5.10.11092/tools/runFile.exe Binary files differindex a794458..a794458 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/runFile.exe +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/runFile.exe diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/runFile.exe.config b/SendGrid/packages/NUnit.2.5.10.11092/tools/runFile.exe.config index 35909b4..35909b4 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/runFile.exe.config +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/runFile.exe.config diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/runpnunit.bat b/SendGrid/packages/NUnit.2.5.10.11092/tools/runpnunit.bat index 6efc8b4..6efc8b4 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/runpnunit.bat +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/runpnunit.bat diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/test.conf b/SendGrid/packages/NUnit.2.5.10.11092/tools/test.conf index a35e718..a35e718 100755..100644 --- a/SendGrid/packages/NUnit.2.5.10.11092/tools/test.conf +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/test.conf diff --git a/SendGrid/packages/RestSharp.104.1/RestSharp.104.1.nupkg b/SendGrid/packages/RestSharp.104.1/RestSharp.104.1.nupkg Binary files differdeleted file mode 100644 index c9822a3..0000000 --- a/SendGrid/packages/RestSharp.104.1/RestSharp.104.1.nupkg +++ /dev/null diff --git a/SendGrid/packages/RestSharp.104.1/RestSharp.104.1.nuspec b/SendGrid/packages/RestSharp.104.1/RestSharp.104.1.nuspec deleted file mode 100644 index 1ac3d86..0000000 --- a/SendGrid/packages/RestSharp.104.1/RestSharp.104.1.nuspec +++ /dev/null @@ -1,22 +0,0 @@ -<?xml version="1.0"?>
-<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
- <metadata>
- <id>RestSharp</id>
- <version>104.1</version>
- <authors>John Sheehan, RestSharp Community</authors>
- <owners>John Sheehan, RestSharp Community</owners>
- <licenseUrl>https://github.com/restsharp/RestSharp/blob/master/LICENSE.txt</licenseUrl>
- <projectUrl>http://restsharp.org/</projectUrl>
- <iconUrl>http://dl.dropbox.com/u/1827/restsharp100.png</iconUrl>
- <requireLicenseAcceptance>false</requireLicenseAcceptance>
- <description>Simple REST and HTTP API Client</description>
- <releaseNotes>For full release notes see https://github.com/restsharp/RestSharp/blob/master/releasenotes.markdown</releaseNotes>
- <language>en-US</language>
- <tags>REST HTTP API JSON XML</tags>
- <references>
- <reference file="RestSharp.dll" />
- <reference file="RestSharp.WindowsPhone.dll" />
- <reference file="RestSharp.Silverlight.dll" />
- </references>
- </metadata>
-</package>
\ No newline at end of file diff --git a/SendGrid/packages/RestSharp.104.1/lib/net35-client/RestSharp.dll b/SendGrid/packages/RestSharp.104.1/lib/net35-client/RestSharp.dll Binary files differdeleted file mode 100644 index 66e3817..0000000 --- a/SendGrid/packages/RestSharp.104.1/lib/net35-client/RestSharp.dll +++ /dev/null diff --git a/SendGrid/packages/RestSharp.104.1/lib/net35-client/RestSharp.xml b/SendGrid/packages/RestSharp.104.1/lib/net35-client/RestSharp.xml deleted file mode 100644 index fa69be1..0000000 --- a/SendGrid/packages/RestSharp.104.1/lib/net35-client/RestSharp.xml +++ /dev/null @@ -1,2611 +0,0 @@ -<?xml version="1.0"?>
-<doc>
- <assembly>
- <name>RestSharp</name>
- </assembly>
- <members>
- <member name="T:RestSharp.NtlmAuthenticator">
- <summary>
- Tries to Authenticate with the credentials of the currently logged in user, or impersonate a user
- </summary>
- </member>
- <member name="M:RestSharp.NtlmAuthenticator.#ctor">
- <summary>
- Authenticate with the credentials of the currently logged in user
- </summary>
- </member>
- <member name="M:RestSharp.NtlmAuthenticator.#ctor(System.String,System.String)">
- <summary>
- Authenticate by impersonation
- </summary>
- <param name="username"></param>
- <param name="password"></param>
- </member>
- <member name="M:RestSharp.NtlmAuthenticator.#ctor(System.Net.ICredentials)">
- <summary>
- Authenticate by impersonation, using an existing <c>ICredentials</c> instance
- </summary>
- <param name="credentials"></param>
- </member>
- <member name="T:RestSharp.Authenticators.OAuth1Authenticator">
- <seealso href="http://tools.ietf.org/html/rfc5849"/>
- </member>
- <member name="T:RestSharp.OAuth2Authenticator">
- <summary>
- Base class for OAuth 2 Authenticators.
- </summary>
- <remarks>
- Since there are many ways to authenticate in OAuth2,
- this is used as a base class to differentiate between
- other authenticators.
-
- Any other OAuth2 authenticators must derive from this
- abstract class.
- </remarks>
- </member>
- <member name="F:RestSharp.OAuth2Authenticator._accessToken">
- <summary>
- Access token to be used when authenticating.
- </summary>
- </member>
- <member name="M:RestSharp.OAuth2Authenticator.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.OAuth2Authenticator"/> class.
- </summary>
- <param name="accessToken">
- The access token.
- </param>
- </member>
- <member name="P:RestSharp.OAuth2Authenticator.AccessToken">
- <summary>
- Gets the access token.
- </summary>
- </member>
- <member name="T:RestSharp.OAuth2UriQueryParameterAuthenticator">
- <summary>
- The OAuth 2 authenticator using URI query parameter.
- </summary>
- <remarks>
- Based on http://tools.ietf.org/html/draft-ietf-oauth-v2-10#section-5.1.2
- </remarks>
- </member>
- <member name="M:RestSharp.OAuth2UriQueryParameterAuthenticator.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.OAuth2UriQueryParameterAuthenticator"/> class.
- </summary>
- <param name="accessToken">
- The access token.
- </param>
- </member>
- <member name="T:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator">
- <summary>
- The OAuth 2 authenticator using the authorization request header field.
- </summary>
- <remarks>
- Based on http://tools.ietf.org/html/draft-ietf-oauth-v2-10#section-5.1.1
- </remarks>
- </member>
- <member name="F:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator._authorizationValue">
- <summary>
- Stores the Authoriztion header value as "OAuth accessToken". used for performance.
- </summary>
- </member>
- <member name="M:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator"/> class.
- </summary>
- <param name="accessToken">
- The access token.
- </param>
- </member>
- <member name="F:RestSharp.Authenticators.OAuth.OAuthTools._encoding">
- <summary>
- All text parameters are UTF-8 encoded (per section 5.1).
- </summary>
- <seealso cref="!:http://www.hueniverse.com/hueniverse/2008/10/beginners-gui-1.html"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetNonce">
- <summary>
- Generates a random 16-byte lowercase alphanumeric string.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#nonce"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetTimestamp">
- <summary>
- Generates a timestamp based on the current elapsed seconds since '01/01/1970 0000 GMT"
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#nonce"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetTimestamp(System.DateTime)">
- <summary>
- Generates a timestamp based on the elapsed seconds of a given time since '01/01/1970 0000 GMT"
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#nonce"/>
- <param name="dateTime">A specified point in time.</param>
- <returns></returns>
- </member>
- <member name="F:RestSharp.Authenticators.OAuth.OAuthTools.UriRfc3986CharsToEscape">
- <summary>
- The set of characters that are unreserved in RFC 2396 but are NOT unreserved in RFC 3986.
- </summary>
- <seealso cref="!:http://stackoverflow.com/questions/846487/how-to-get-uri-escapedatastring-to-comply-with-rfc-3986"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.UrlEncodeRelaxed(System.String)">
- <summary>
- URL encodes a string based on section 5.1 of the OAuth spec.
- Namely, percent encoding with [RFC3986], avoiding unreserved characters,
- upper-casing hexadecimal characters, and UTF-8 encoding for text value pairs.
- </summary>
- <param name="value">The value to escape.</param>
- <returns>The escaped value.</returns>
- <remarks>
- The <see cref="M:System.Uri.EscapeDataString(System.String)"/> method is <i>supposed</i> to take on
- RFC 3986 behavior if certain elements are present in a .config file. Even if this
- actually worked (which in my experiments it <i>doesn't</i>), we can't rely on every
- host actually having this configuration element present.
- </remarks>
- <seealso cref="!:http://oauth.net/core/1.0#encoding_parameters"/>
- <seealso cref="!:http://stackoverflow.com/questions/846487/how-to-get-uri-escapedatastring-to-comply-with-rfc-3986"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.UrlEncodeStrict(System.String)">
- <summary>
- URL encodes a string based on section 5.1 of the OAuth spec.
- Namely, percent encoding with [RFC3986], avoiding unreserved characters,
- upper-casing hexadecimal characters, and UTF-8 encoding for text value pairs.
- </summary>
- <param name="value"></param>
- <seealso cref="!:http://oauth.net/core/1.0#encoding_parameters"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.NormalizeRequestParameters(RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Sorts a collection of key-value pairs by name, and then value if equal,
- concatenating them into a single string. This string should be encoded
- prior to, or after normalization is run.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.1"/>
- <param name="parameters"></param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.SortParametersExcludingSignature(RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Sorts a <see cref="T:RestSharp.Authenticators.OAuth.WebParameterCollection"/> by name, and then value if equal.
- </summary>
- <param name="parameters">A collection of parameters to sort</param>
- <returns>A sorted parameter collection</returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.ConstructRequestUrl(System.Uri)">
- <summary>
- Creates a request URL suitable for making OAuth requests.
- Resulting URLs must exclude port 80 or port 443 when accompanied by HTTP and HTTPS, respectively.
- Resulting URLs must be lower case.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.2"/>
- <param name="url">The original request URL</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.ConcatenateRequestElements(System.String,System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Creates a request elements concatentation value to send with a request.
- This is also known as the signature base.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.3"/>
- <seealso cref="!:http://oauth.net/core/1.0#sig_base_example"/>
- <param name="method">The request's HTTP method type</param>
- <param name="url">The request URL</param>
- <param name="parameters">The request's parameters</param>
- <returns>A signature base string</returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret.
- This method is used when the token secret is currently unknown.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer key</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,RestSharp.Authenticators.OAuth.OAuthSignatureTreatment,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret.
- This method is used when the token secret is currently unknown.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureTreatment">The treatment to use on a signature value</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer key</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,System.String,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret and a known token secret.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer secret</param>
- <param name="tokenSecret">The token secret</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,RestSharp.Authenticators.OAuth.OAuthSignatureTreatment,System.String,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret and a known token secret.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureTreatment">The treatment to use on a signature value</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer secret</param>
- <param name="tokenSecret">The token secret</param>
- <returns></returns>
- </member>
- <member name="T:RestSharp.Authenticators.OAuth.OAuthWorkflow">
- <summary>
- A class to encapsulate OAuth authentication flow.
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- </summary>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildRequestTokenInfo(System.String)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of requesting an
- unauthorized request token.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildRequestTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of requesting an
- unauthorized request token.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildAccessTokenInfo(System.String)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of exchanging a request token
- for an access token authorized by the user at the Service Provider site.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildAccessTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of exchanging a request token
- for an access token authorized by the user at the Service Provider site.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- <param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildClientAuthAccessTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of exchanging user credentials
- for an access token authorized by the user at the Service Provider site.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://tools.ietf.org/html/draft-dehora-farrell-oauth-accesstoken-creds-00#section-4"/>
- <param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
- </member>
- <member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.RequestTokenUrl">
- <seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
- </member>
- <member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.AccessTokenUrl">
- <seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
- </member>
- <member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.AuthorizationUrl">
- <seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
- </member>
- <member name="T:RestSharp.Deserializers.DeserializeAsAttribute">
- <summary>
- Allows control how class and property names and values are deserialized by XmlAttributeDeserializer
- </summary>
- </member>
- <member name="P:RestSharp.Deserializers.DeserializeAsAttribute.Name">
- <summary>
- The name to use for the serialized element
- </summary>
- </member>
- <member name="P:RestSharp.Deserializers.DeserializeAsAttribute.Attribute">
- <summary>
- Sets if the property to Deserialize is an Attribute or Element (Default: false)
- </summary>
- </member>
- <member name="M:RestSharp.Contrib.HttpUtility.HtmlDecode(System.String)">
- <summary>
- Decodes an HTML-encoded string and returns the decoded string.
- </summary>
- <param name="s">The HTML string to decode. </param>
- <returns>The decoded text.</returns>
- </member>
- <member name="M:RestSharp.Contrib.HttpUtility.HtmlDecode(System.String,System.IO.TextWriter)">
- <summary>
- Decodes an HTML-encoded string and sends the resulting output to a TextWriter output stream.
- </summary>
- <param name="s">The HTML string to decode</param>
- <param name="output">The TextWriter output stream containing the decoded string. </param>
- </member>
- <member name="M:RestSharp.Contrib.HttpUtility.HtmlEncode(System.String,System.IO.TextWriter)">
- <summary>
- HTML-encodes a string and sends the resulting output to a TextWriter output stream.
- </summary>
- <param name="s">The string to encode. </param>
- <param name="output">The TextWriter output stream containing the encoded string. </param>
- </member>
- <member name="M:RestSharp.RestClientExtensions.ExecuteAsync(RestSharp.IRestClient,RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <param name="client">The IRestClient this method extends</param>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- </member>
- <member name="M:RestSharp.RestClientExtensions.ExecuteAsync``1(RestSharp.IRestClient,RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0}})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <param name="client">The IRestClient this method extends</param>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle</param>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultParameter(RestSharp.IRestClient,RestSharp.Parameter)">
- <summary>
- Add a parameter to use on every request made with this client instance
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="p">Parameter to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultParameter(RestSharp.IRestClient,System.String,System.Object)">
- <summary>
- Adds a HTTP parameter (QueryString for GET, DELETE, OPTIONS and HEAD; Encoded form for POST and PUT)
- Used on every request made by this client instance
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultParameter(RestSharp.IRestClient,System.String,System.Object,RestSharp.ParameterType)">
- <summary>
- Adds a parameter to the request. There are four types of parameters:
- - GetOrPost: Either a QueryString value or encoded form value based on method
- - HttpHeader: Adds the name/value pair to the HTTP request's Headers collection
- - UrlSegment: Inserted into URL if there is a matching url token e.g. {AccountId}
- - RequestBody: Used by AddBody() (not recommended to use directly)
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <param name="type">The type of parameter to add</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultHeader(RestSharp.IRestClient,System.String,System.String)">
- <summary>
- Shortcut to AddDefaultParameter(name, value, HttpHeader) overload
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the header to add</param>
- <param name="value">Value of the header to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultUrlSegment(RestSharp.IRestClient,System.String,System.String)">
- <summary>
- Shortcut to AddDefaultParameter(name, value, UrlSegment) overload
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the segment to add</param>
- <param name="value">Value of the segment to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.UrlEncode(System.String)">
- <summary>
- Uses Uri.EscapeDataString() based on recommendations on MSDN
- http://blogs.msdn.com/b/yangxind/archive/2006/11/09/don-t-use-net-system-uri-unescapedatastring-in-url-decoding.aspx
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.HasValue(System.String)">
- <summary>
- Check that a string is not null or empty
- </summary>
- <param name="input">String to check</param>
- <returns>bool</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.RemoveUnderscoresAndDashes(System.String)">
- <summary>
- Remove underscores from a string
- </summary>
- <param name="input">String to process</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ParseJsonDate(System.String,System.Globalization.CultureInfo)">
- <summary>
- Parses most common JSON date formats
- </summary>
- <param name="input">JSON value to parse</param>
- <returns>DateTime</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.RemoveSurroundingQuotes(System.String)">
- <summary>
- Remove leading and trailing " from a string
- </summary>
- <param name="input">String to parse</param>
- <returns>String</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.Matches(System.String,System.String)">
- <summary>
- Checks a string to see if it matches a regex
- </summary>
- <param name="input">String to check</param>
- <param name="pattern">Pattern to match</param>
- <returns>bool</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ToPascalCase(System.String,System.Globalization.CultureInfo)">
- <summary>
- Converts a string to pascal case
- </summary>
- <param name="lowercaseAndUnderscoredWord">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ToPascalCase(System.String,System.Boolean,System.Globalization.CultureInfo)">
- <summary>
- Converts a string to pascal case with the option to remove underscores
- </summary>
- <param name="text">String to convert</param>
- <param name="removeUnderscores">Option to remove underscores</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ToCamelCase(System.String,System.Globalization.CultureInfo)">
- <summary>
- Converts a string to camel case
- </summary>
- <param name="lowercaseAndUnderscoredWord">String to convert</param>
- <returns>String</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.MakeInitialLowerCase(System.String)">
- <summary>
- Convert the first letter of a string to lower case
- </summary>
- <param name="word">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.IsUpperCase(System.String)">
- <summary>
- Checks to see if a string is all uppper case
- </summary>
- <param name="inputString">String to check</param>
- <returns>bool</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.AddUnderscores(System.String)">
- <summary>
- Add underscores to a pascal-cased string
- </summary>
- <param name="pascalCasedWord">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.AddDashes(System.String)">
- <summary>
- Add dashes to a pascal-cased string
- </summary>
- <param name="pascalCasedWord">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.AddUnderscorePrefix(System.String)">
- <summary>
- Add an undescore prefix to a pascasl-cased string
- </summary>
- <param name="pascalCasedWord"></param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.GetNameVariants(System.String,System.Globalization.CultureInfo)">
- <summary>
- Return possible variants of a name for name matching.
- </summary>
- <param name="name">String to convert</param>
- <param name="culture">The culture to use for conversion</param>
- <returns>IEnumerable<string></returns>
- </member>
- <member name="T:RestSharp.Http">
- <summary>
- HttpWebRequest wrapper (sync methods)
- </summary>
- <summary>
- HttpWebRequest wrapper
- </summary>
- <summary>
- HttpWebRequest wrapper (async methods)
- </summary>
- </member>
- <member name="M:RestSharp.Http.Post">
- <summary>
- Execute a POST request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Put">
- <summary>
- Execute a PUT request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Get">
- <summary>
- Execute a GET request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Head">
- <summary>
- Execute a HEAD request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Options">
- <summary>
- Execute an OPTIONS request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Delete">
- <summary>
- Execute a DELETE request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Patch">
- <summary>
- Execute a PATCH request
- </summary>
- </member>
- <member name="M:RestSharp.Http.AsGet(System.String)">
- <summary>
- Execute a GET-style request with the specified HTTP Method.
- </summary>
- <param name="httpMethod">The HTTP method to execute.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Http.AsPost(System.String)">
- <summary>
- Execute a POST-style request with the specified HTTP Method.
- </summary>
- <param name="httpMethod">The HTTP method to execute.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Http.Create">
- <summary>
- Creates an IHttp
- </summary>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Http.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="M:RestSharp.Http.AsPostAsync(System.Action{RestSharp.HttpResponse},System.String)">
- <summary>
- Execute an async POST-style request with the specified HTTP Method.
- </summary>
- <param name="httpMethod">The HTTP method to execute.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Http.AsGetAsync(System.Action{RestSharp.HttpResponse},System.String)">
- <summary>
- Execute an async GET-style request with the specified HTTP Method.
- </summary>
- <param name="httpMethod">The HTTP method to execute.</param>
- <returns></returns>
- </member>
- <member name="P:RestSharp.Http.HasParameters">
- <summary>
- True if this HTTP request has any HTTP parameters
- </summary>
- </member>
- <member name="P:RestSharp.Http.HasCookies">
- <summary>
- True if this HTTP request has any HTTP cookies
- </summary>
- </member>
- <member name="P:RestSharp.Http.HasBody">
- <summary>
- True if a request body has been specified
- </summary>
- </member>
- <member name="P:RestSharp.Http.HasFiles">
- <summary>
- True if files have been set to be uploaded
- </summary>
- </member>
- <member name="P:RestSharp.Http.UserAgent">
- <summary>
- UserAgent to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Timeout">
- <summary>
- Timeout in milliseconds to be used for the request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Credentials">
- <summary>
- System.Net.ICredentials to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.CookieContainer">
- <summary>
- The System.Net.CookieContainer to be used for the request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Files">
- <summary>
- Collection of files to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.FollowRedirects">
- <summary>
- Whether or not HTTP 3xx response redirects should be automatically followed
- </summary>
- </member>
- <member name="P:RestSharp.Http.ClientCertificates">
- <summary>
- X509CertificateCollection to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.MaxRedirects">
- <summary>
- Maximum number of automatic redirects to follow if FollowRedirects is true
- </summary>
- </member>
- <member name="P:RestSharp.Http.Headers">
- <summary>
- HTTP headers to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Parameters">
- <summary>
- HTTP parameters (QueryString or Form values) to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Cookies">
- <summary>
- HTTP cookies to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.RequestBody">
- <summary>
- Request body to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.RequestContentType">
- <summary>
- Content type of the request body.
- </summary>
- </member>
- <member name="P:RestSharp.Http.Url">
- <summary>
- URL to call for this request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Proxy">
- <summary>
- Proxy info to be sent with request
- </summary>
- </member>
- <member name="T:RestSharp.HttpCookie">
- <summary>
- Representation of an HTTP cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Comment">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.CommentUri">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Discard">
- <summary>
- Indicates whether the cookie should be discarded at the end of the session
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Domain">
- <summary>
- Domain of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Expired">
- <summary>
- Indicates whether the cookie is expired
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Expires">
- <summary>
- Date and time that the cookie expires
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.HttpOnly">
- <summary>
- Indicates that this cookie should only be accessed by the server
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Name">
- <summary>
- Name of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Path">
- <summary>
- Path of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Port">
- <summary>
- Port of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Secure">
- <summary>
- Indicates that the cookie should only be sent over secure channels
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.TimeStamp">
- <summary>
- Date and time the cookie was created
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Value">
- <summary>
- Value of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Version">
- <summary>
- Version of the cookie
- </summary>
- </member>
- <member name="T:RestSharp.HttpResponse">
- <summary>
- HTTP response data
- </summary>
- </member>
- <member name="T:RestSharp.IHttpResponse">
- <summary>
- HTTP response data
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Content">
- <summary>
- String representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ErrorException">
- <summary>
- Exception thrown when error is encountered.
- </summary>
- </member>
- <member name="M:RestSharp.HttpResponse.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Content">
- <summary>
- Lazy-loaded string representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ErrorException">
- <summary>
- Exception thrown when error is encountered.
- </summary>
- </member>
- <member name="T:RestSharp.ParameterType">
- <summary>
- Types of parameters that can be added to requests
- </summary>
- </member>
- <member name="T:RestSharp.DataFormat">
- <summary>
- Data formats
- </summary>
- </member>
- <member name="T:RestSharp.Method">
- <summary>
- HTTP method to use when making requests
- </summary>
- </member>
- <member name="T:RestSharp.DateFormat">
- <summary>
- Format strings for commonly-used date formats
- </summary>
- </member>
- <member name="F:RestSharp.DateFormat.Iso8601">
- <summary>
- .NET format string for ISO 8601 date format
- </summary>
- </member>
- <member name="F:RestSharp.DateFormat.RoundTrip">
- <summary>
- .NET format string for roundtrip date format
- </summary>
- </member>
- <member name="T:RestSharp.ResponseStatus">
- <summary>
- Status for responses (surprised?)
- </summary>
- </member>
- <member name="T:RestSharp.Extensions.MiscExtensions">
- <summary>
- Extension method overload!
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.SaveAs(System.Byte[],System.String)">
- <summary>
- Save a byte array to a file
- </summary>
- <param name="input">Bytes to save</param>
- <param name="path">Full path to save file to</param>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.ReadAsBytes(System.IO.Stream)">
- <summary>
- Read a stream into a byte array
- </summary>
- <param name="input">Stream to read</param>
- <returns>byte[]</returns>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.CopyTo(System.IO.Stream,System.IO.Stream)">
- <summary>
- Copies bytes from one stream to another
- </summary>
- <param name="input">The input stream.</param>
- <param name="output">The output stream.</param>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.AsString(System.Byte[])">
- <summary>
- Converts a byte array to a string, using its byte order mark to convert it to the right encoding.
- http://www.shrinkrays.net/code-snippets/csharp/an-extension-method-for-converting-a-byte-array-to-a-string.aspx
- </summary>
- <param name="buffer">An array of bytes to convert</param>
- <returns>The byte as a string.</returns>
- </member>
- <member name="T:RestSharp.Extensions.ReflectionExtensions">
- <summary>
- Reflection extensions
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.ReflectionExtensions.GetAttribute``1(System.Reflection.MemberInfo)">
- <summary>
- Retrieve an attribute from a member (property)
- </summary>
- <typeparam name="T">Type of attribute to retrieve</typeparam>
- <param name="prop">Member to retrieve attribute from</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.ReflectionExtensions.GetAttribute``1(System.Type)">
- <summary>
- Retrieve an attribute from a type
- </summary>
- <typeparam name="T">Type of attribute to retrieve</typeparam>
- <param name="type">Type to retrieve attribute from</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.ReflectionExtensions.IsSubclassOfRawGeneric(System.Type,System.Type)">
- <summary>
- Checks a type to see if it derives from a raw generic (e.g. List[[]])
- </summary>
- <param name="toCheck"></param>
- <param name="generic"></param>
- <returns></returns>
- </member>
- <!-- Badly formed XML comment ignored for member "M:RestSharp.Extensions.ReflectionExtensions.FindEnumValue(System.Type,System.String,System.Globalization.CultureInfo)" -->
- <member name="T:RestSharp.Extensions.XmlExtensions">
- <summary>
- XML Extension Methods
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.XmlExtensions.AsNamespaced(System.String,System.String)">
- <summary>
- Returns the name of an element with the namespace if specified
- </summary>
- <param name="name">Element name</param>
- <param name="namespace">XML Namespace</param>
- <returns></returns>
- </member>
- <member name="T:RestSharp.FileParameter">
- <summary>
- Container for files to be uploaded with requests
- </summary>
- </member>
- <member name="M:RestSharp.FileParameter.Create(System.String,System.Byte[],System.String,System.String)">
- <summary>
- Creates a file parameter from an array of bytes.
- </summary>
- <param name="name">The parameter name to use in the request.</param>
- <param name="data">The data to use as the file's contents.</param>
- <param name="filename">The filename to use in the request.</param>
- <param name="contentType">The content type to use in the request.</param>
- <returns>The <see cref="T:RestSharp.FileParameter"/></returns>
- </member>
- <member name="M:RestSharp.FileParameter.Create(System.String,System.Byte[],System.String)">
- <summary>
- Creates a file parameter from an array of bytes.
- </summary>
- <param name="name">The parameter name to use in the request.</param>
- <param name="data">The data to use as the file's contents.</param>
- <param name="filename">The filename to use in the request.</param>
- <returns>The <see cref="T:RestSharp.FileParameter"/> using the default content type.</returns>
- </member>
- <member name="P:RestSharp.FileParameter.ContentLength">
- <summary>
- The length of data to be sent
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.Writer">
- <summary>
- Provides raw data for file
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.FileName">
- <summary>
- Name of the file to use when uploading
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.ContentType">
- <summary>
- MIME content type of file
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.HttpFile">
- <summary>
- Container for HTTP file
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.ContentLength">
- <summary>
- The length of data to be sent
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.Writer">
- <summary>
- Provides raw data for file
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.FileName">
- <summary>
- Name of the file to use when uploading
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.ContentType">
- <summary>
- MIME content type of file
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.HttpHeader">
- <summary>
- Representation of an HTTP header
- </summary>
- </member>
- <member name="P:RestSharp.HttpHeader.Name">
- <summary>
- Name of the header
- </summary>
- </member>
- <member name="P:RestSharp.HttpHeader.Value">
- <summary>
- Value of the header
- </summary>
- </member>
- <member name="T:RestSharp.HttpParameter">
- <summary>
- Representation of an HTTP parameter (QueryString or Form value)
- </summary>
- </member>
- <member name="P:RestSharp.HttpParameter.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="P:RestSharp.HttpParameter.Value">
- <summary>
- Value of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.IRestClient">
- <summary>
-
- </summary>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsync(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle})">
- <summary>
-
- </summary>
- <param name="request"></param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsync``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle})">
- <summary>
-
- </summary>
- <param name="request"></param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncGet(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncPost(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a POST-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncGet``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncPost``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="P:RestSharp.IRestClient.CookieContainer">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.UserAgent">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.Timeout">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.UseSynchronizationContext">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.Authenticator">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.BaseUrl">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.DefaultParameters">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.ClientCertificates">
- <summary>
- X509CertificateCollection to be sent with request
- </summary>
- </member>
- <member name="M:RestSharp.IRestRequest.AddFile(System.String,System.String)">
- <summary>
- Adds a file to the Files collection to be included with a POST or PUT request
- (other methods do not support file uploads).
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="path">Full path to file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddFile(System.String,System.Byte[],System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="bytes">The file data</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddFile(System.String,System.Byte[],System.String,System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name and content type
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="bytes">The file data</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <param name="contentType">The MIME type of the file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddBody(System.Object,System.String)">
- <summary>
- Serializes obj to format specified by RequestFormat, but passes xmlNamespace if using the default XmlSerializer
- </summary>
- <param name="obj">The object to serialize</param>
- <param name="xmlNamespace">The XML namespace to use when serializing</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddBody(System.Object)">
- <summary>
- Serializes obj to data format specified by RequestFormat and adds it to the request body.
- </summary>
- <param name="obj">The object to serialize</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddObject(System.Object,System.String[])">
- <summary>
- Calls AddParameter() for all public, readable properties specified in the white list
- </summary>
- <example>
- request.AddObject(product, "ProductId", "Price", ...);
- </example>
- <param name="obj">The object with properties to add as parameters</param>
- <param name="whitelist">The names of the properties to include</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddObject(System.Object)">
- <summary>
- Calls AddParameter() for all public, readable properties of obj
- </summary>
- <param name="obj">The object with properties to add as parameters</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddParameter(RestSharp.Parameter)">
- <summary>
- Add the parameter to the request
- </summary>
- <param name="p">Parameter to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddParameter(System.String,System.Object)">
- <summary>
- Adds a HTTP parameter to the request (QueryString for GET, DELETE, OPTIONS and HEAD; Encoded form for POST and PUT)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddParameter(System.String,System.Object,RestSharp.ParameterType)">
- <summary>
- Adds a parameter to the request. There are five types of parameters:
- - GetOrPost: Either a QueryString value or encoded form value based on method
- - HttpHeader: Adds the name/value pair to the HTTP request's Headers collection
- - UrlSegment: Inserted into URL if there is a matching url token e.g. {AccountId}
- - Cookie: Adds the name/value pair to the HTTP request's Cookies collection
- - RequestBody: Used by AddBody() (not recommended to use directly)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <param name="type">The type of parameter to add</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddHeader(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, HttpHeader) overload
- </summary>
- <param name="name">Name of the header to add</param>
- <param name="value">Value of the header to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddCookie(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, Cookie) overload
- </summary>
- <param name="name">Name of the cookie to add</param>
- <param name="value">Value of the cookie to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddUrlSegment(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, UrlSegment) overload
- </summary>
- <param name="name">Name of the segment to add</param>
- <param name="value">Value of the segment to add</param>
- <returns></returns>
- </member>
- <member name="P:RestSharp.IRestRequest.JsonSerializer">
- <summary>
- Serializer to use when writing JSON request bodies. Used if RequestFormat is Json.
- By default the included JsonSerializer is used (currently using JSON.NET default serialization).
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.XmlSerializer">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default the included XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Parameters">
- <summary>
- Container of all HTTP parameters to be passed with the request.
- See AddParameter() for explanation of the types of parameters that can be passed
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Files">
- <summary>
- Container of all the files to be uploaded with the request.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Method">
- <summary>
- Determines what HTTP method to use for this request. Supported methods: GET, POST, PUT, DELETE, HEAD, OPTIONS
- Default is GET
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Resource">
- <summary>
- The Resource URL to make the request against.
- Tokens are substituted with UrlSegment parameters and match by name.
- Should not include the scheme or domain. Do not include leading slash.
- Combined with RestClient.BaseUrl to assemble final URL:
- {BaseUrl}/{Resource} (BaseUrl is scheme + domain, e.g. http://example.com)
- </summary>
- <example>
- // example for url token replacement
- request.Resource = "Products/{ProductId}";
- request.AddParameter("ProductId", 123, ParameterType.UrlSegment);
- </example>
- </member>
- <member name="P:RestSharp.IRestRequest.RequestFormat">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.RootElement">
- <summary>
- Used by the default deserializers to determine where to start deserializing from.
- Can be used to skip container or root elements that do not have corresponding deserialzation targets.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.DateFormat">
- <summary>
- Used by the default deserializers to explicitly set which date format string to use when parsing dates.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.XmlNamespace">
- <summary>
- Used by XmlDeserializer. If not specified, XmlDeserializer will flatten response by removing namespaces from element names.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Credentials">
- <summary>
- In general you would not need to set this directly. Used by the NtlmAuthenticator.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Timeout">
- <summary>
- Timeout in milliseconds to be used for the request. This timeout value overrides a timeout set on the RestClient.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Attempts">
- <summary>
- How many attempts were made to send this Request?
- </summary>
- <remarks>
- This Number is incremented each time the RestClient sends the request.
- Useful when using Asynchronous Execution with Callbacks
- </remarks>
- </member>
- <member name="T:RestSharp.IRestResponse">
- <summary>
- Container for data sent back from API
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Request">
- <summary>
- The RestRequest that was made to get this RestResponse
- </summary>
- <remarks>
- Mainly for debugging if ResponseStatus is not OK
- </remarks>
- </member>
- <member name="P:RestSharp.IRestResponse.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Content">
- <summary>
- String representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ErrorException">
- <summary>
- The exception thrown during the request, if any
- </summary>
- </member>
- <member name="T:RestSharp.IRestResponse`1">
- <summary>
- Container for data sent back from API including deserialized data
- </summary>
- <typeparam name="T">Type of data to deserialize to</typeparam>
- </member>
- <member name="P:RestSharp.IRestResponse`1.Data">
- <summary>
- Deserialized entity data
- </summary>
- </member>
- <member name="T:RestSharp.RestResponseBase">
- <summary>
- Base class for common properties shared by RestResponse and RestResponse[[T]]
- </summary>
- </member>
- <member name="M:RestSharp.RestResponseBase.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Request">
- <summary>
- The RestRequest that was made to get this RestResponse
- </summary>
- <remarks>
- Mainly for debugging if ResponseStatus is not OK
- </remarks>
- </member>
- <member name="P:RestSharp.RestResponseBase.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Content">
- <summary>
- String representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ErrorException">
- <summary>
- The exception thrown during the request, if any
- </summary>
- </member>
- <member name="T:RestSharp.RestResponse`1">
- <summary>
- Container for data sent back from API including deserialized data
- </summary>
- <typeparam name="T">Type of data to deserialize to</typeparam>
- </member>
- <member name="P:RestSharp.RestResponse`1.Data">
- <summary>
- Deserialized entity data
- </summary>
- </member>
- <member name="T:RestSharp.RestResponse">
- <summary>
- Container for data sent back from API
- </summary>
- </member>
- <member name="T:RestSharp.Parameter">
- <summary>
- Parameter container for REST requests
- </summary>
- </member>
- <member name="M:RestSharp.Parameter.ToString">
- <summary>
- Return a human-readable representation of this parameter
- </summary>
- <returns>String</returns>
- </member>
- <member name="P:RestSharp.Parameter.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="P:RestSharp.Parameter.Value">
- <summary>
- Value of the parameter
- </summary>
- </member>
- <member name="P:RestSharp.Parameter.Type">
- <summary>
- Type of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.RestClient">
- <summary>
- Client to translate RestRequests into Http requests and process response result
- </summary>
- </member>
- <member name="M:RestSharp.RestClient.#ctor">
- <summary>
- Default constructor that registers default content handlers
- </summary>
- </member>
- <member name="M:RestSharp.RestClient.#ctor(System.String)">
- <summary>
- Sets the BaseUrl property for requests made by this client instance
- </summary>
- <param name="baseUrl"></param>
- </member>
- <member name="M:RestSharp.RestClient.AddHandler(System.String,RestSharp.Deserializers.IDeserializer)">
- <summary>
- Registers a content handler to process response content
- </summary>
- <param name="contentType">MIME content type of the response content</param>
- <param name="deserializer">Deserializer to use to process content</param>
- </member>
- <member name="M:RestSharp.RestClient.RemoveHandler(System.String)">
- <summary>
- Remove a content handler for the specified MIME content type
- </summary>
- <param name="contentType">MIME content type to remove</param>
- </member>
- <member name="M:RestSharp.RestClient.ClearHandlers">
- <summary>
- Remove all content handlers
- </summary>
- </member>
- <member name="M:RestSharp.RestClient.GetHandler(System.String)">
- <summary>
- Retrieve the handler for the specified MIME content type
- </summary>
- <param name="contentType">MIME content type to retrieve</param>
- <returns>IDeserializer instance</returns>
- </member>
- <member name="M:RestSharp.RestClient.BuildUri(RestSharp.IRestRequest)">
- <summary>
- Assembles URL to call based on parameters, method and resource
- </summary>
- <param name="request">RestRequest to execute</param>
- <returns>Assembled System.Uri</returns>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsync(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncGet(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncPost(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a POST-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsync``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncGet``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncPost``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a POST-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.DownloadData(RestSharp.IRestRequest)">
- <summary>
- Executes the specified request and downloads the response data
- </summary>
- <param name="request">Request to execute</param>
- <returns>Response data</returns>
- </member>
- <member name="M:RestSharp.RestClient.Execute(RestSharp.IRestRequest)">
- <summary>
- Executes the request and returns a response, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <returns>RestResponse</returns>
- </member>
- <member name="M:RestSharp.RestClient.Execute``1(RestSharp.IRestRequest)">
- <summary>
- Executes the specified request and deserializes the response content using the appropriate content handler
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to execute</param>
- <returns>RestResponse[[T]] with deserialized data in Data property</returns>
- </member>
- <member name="P:RestSharp.RestClient.DefaultParameters">
- <summary>
- Parameters included with every request made with this instance of RestClient
- If specified in both client and request, the request wins
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.MaxRedirects">
- <summary>
- Maximum number of redirects to follow if FollowRedirects is true
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.ClientCertificates">
- <summary>
- X509CertificateCollection to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.FollowRedirects">
- <summary>
- Default is true. Determine whether or not requests that result in
- HTTP status codes of 3xx should follow returned redirect
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.CookieContainer">
- <summary>
- The CookieContainer used for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.UserAgent">
- <summary>
- UserAgent to use for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.Timeout">
- <summary>
- Timeout in milliseconds to use for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.UseSynchronizationContext">
- <summary>
- Whether to invoke async callbacks using the SynchronizationContext.Current captured when invoked
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.Authenticator">
- <summary>
- Authenticator to use for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.BaseUrl">
- <summary>
- Combined with Request.Resource to construct URL for request
- Should include scheme and domain without trailing slash.
- </summary>
- <example>
- client.BaseUrl = "http://example.com";
- </example>
- </member>
- <member name="P:RestSharp.RestClient.Proxy">
- <summary>
- Proxy to use for requests made by this client instance.
- Passed on to underying WebRequest if set.
- </summary>
- </member>
- <member name="T:RestSharp.RestRequest">
- <summary>
- Container for data used to make requests
- </summary>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(RestSharp.Method)">
- <summary>
- Sets Method property to value of method
- </summary>
- <param name="method">Method to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.String)">
- <summary>
- Sets Resource property
- </summary>
- <param name="resource">Resource to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.String,RestSharp.Method)">
- <summary>
- Sets Resource and Method properties
- </summary>
- <param name="resource">Resource to use for this request</param>
- <param name="method">Method to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.Uri)">
- <summary>
- Sets Resource property
- </summary>
- <param name="resource">Resource to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.Uri,RestSharp.Method)">
- <summary>
- Sets Resource and Method properties
- </summary>
- <param name="resource">Resource to use for this request</param>
- <param name="method">Method to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.String)">
- <summary>
- Adds a file to the Files collection to be included with a POST or PUT request
- (other methods do not support file uploads).
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="path">Full path to file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Byte[],System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="bytes">The file data</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Byte[],System.String,System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name and content type
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="bytes">The file data</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <param name="contentType">The MIME type of the file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Action{System.IO.Stream},System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name and content type
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="writer">A function that writes directly to the stream. Should NOT close the stream.</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Action{System.IO.Stream},System.String,System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name and content type
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="writer">A function that writes directly to the stream. Should NOT close the stream.</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <param name="contentType">The MIME type of the file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddBody(System.Object,System.String)">
- <summary>
- Serializes obj to format specified by RequestFormat, but passes xmlNamespace if using the default XmlSerializer
- </summary>
- <param name="obj">The object to serialize</param>
- <param name="xmlNamespace">The XML namespace to use when serializing</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddBody(System.Object)">
- <summary>
- Serializes obj to data format specified by RequestFormat and adds it to the request body.
- </summary>
- <param name="obj">The object to serialize</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddObject(System.Object,System.String[])">
- <summary>
- Calls AddParameter() for all public, readable properties specified in the white list
- </summary>
- <example>
- request.AddObject(product, "ProductId", "Price", ...);
- </example>
- <param name="obj">The object with properties to add as parameters</param>
- <param name="whitelist">The names of the properties to include</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddObject(System.Object)">
- <summary>
- Calls AddParameter() for all public, readable properties of obj
- </summary>
- <param name="obj">The object with properties to add as parameters</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddParameter(RestSharp.Parameter)">
- <summary>
- Add the parameter to the request
- </summary>
- <param name="p">Parameter to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddParameter(System.String,System.Object)">
- <summary>
- Adds a HTTP parameter to the request (QueryString for GET, DELETE, OPTIONS and HEAD; Encoded form for POST and PUT)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddParameter(System.String,System.Object,RestSharp.ParameterType)">
- <summary>
- Adds a parameter to the request. There are four types of parameters:
- - GetOrPost: Either a QueryString value or encoded form value based on method
- - HttpHeader: Adds the name/value pair to the HTTP request's Headers collection
- - UrlSegment: Inserted into URL if there is a matching url token e.g. {AccountId}
- - RequestBody: Used by AddBody() (not recommended to use directly)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <param name="type">The type of parameter to add</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddHeader(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, HttpHeader) overload
- </summary>
- <param name="name">Name of the header to add</param>
- <param name="value">Value of the header to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddCookie(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, Cookie) overload
- </summary>
- <param name="name">Name of the cookie to add</param>
- <param name="value">Value of the cookie to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddUrlSegment(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, UrlSegment) overload
- </summary>
- <param name="name">Name of the segment to add</param>
- <param name="value">Value of the segment to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.IncreaseNumAttempts">
- <summary>
- Internal Method so that RestClient can increase the number of attempts
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.JsonSerializer">
- <summary>
- Serializer to use when writing JSON request bodies. Used if RequestFormat is Json.
- By default the included JsonSerializer is used (currently using JSON.NET default serialization).
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.XmlSerializer">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default the included XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Parameters">
- <summary>
- Container of all HTTP parameters to be passed with the request.
- See AddParameter() for explanation of the types of parameters that can be passed
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Files">
- <summary>
- Container of all the files to be uploaded with the request.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Method">
- <summary>
- Determines what HTTP method to use for this request. Supported methods: GET, POST, PUT, DELETE, HEAD, OPTIONS
- Default is GET
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Resource">
- <summary>
- The Resource URL to make the request against.
- Tokens are substituted with UrlSegment parameters and match by name.
- Should not include the scheme or domain. Do not include leading slash.
- Combined with RestClient.BaseUrl to assemble final URL:
- {BaseUrl}/{Resource} (BaseUrl is scheme + domain, e.g. http://example.com)
- </summary>
- <example>
- // example for url token replacement
- request.Resource = "Products/{ProductId}";
- request.AddParameter("ProductId", 123, ParameterType.UrlSegment);
- </example>
- </member>
- <member name="P:RestSharp.RestRequest.RequestFormat">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.RootElement">
- <summary>
- Used by the default deserializers to determine where to start deserializing from.
- Can be used to skip container or root elements that do not have corresponding deserialzation targets.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.OnBeforeDeserialization">
- <summary>
- A function to run prior to deserializing starting (e.g. change settings if error encountered)
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.DateFormat">
- <summary>
- Used by the default deserializers to explicitly set which date format string to use when parsing dates.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.XmlNamespace">
- <summary>
- Used by XmlDeserializer. If not specified, XmlDeserializer will flatten response by removing namespaces from element names.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Credentials">
- <summary>
- In general you would not need to set this directly. Used by the NtlmAuthenticator.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.UserState">
- <summary>
- Gets or sets a user-defined state object that contains information about a request and which can be later
- retrieved when the request completes.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Timeout">
- <summary>
- Timeout in milliseconds to be used for the request. This timeout value overrides a timeout set on the RestClient.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Attempts">
- <summary>
- How many attempts were made to send this Request?
- </summary>
- <remarks>
- This Number is incremented each time the RestClient sends the request.
- Useful when using Asynchronous Execution with Callbacks
- </remarks>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Comment">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.CommentUri">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Discard">
- <summary>
- Indicates whether the cookie should be discarded at the end of the session
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Domain">
- <summary>
- Domain of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Expired">
- <summary>
- Indicates whether the cookie is expired
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Expires">
- <summary>
- Date and time that the cookie expires
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.HttpOnly">
- <summary>
- Indicates that this cookie should only be accessed by the server
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Name">
- <summary>
- Name of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Path">
- <summary>
- Path of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Port">
- <summary>
- Port of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Secure">
- <summary>
- Indicates that the cookie should only be sent over secure channels
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.TimeStamp">
- <summary>
- Date and time the cookie was created
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Value">
- <summary>
- Value of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Version">
- <summary>
- Version of the cookie
- </summary>
- </member>
- <member name="T:RestSharp.Deserializers.DotNetXmlDeserializer">
- <summary>
- Wrapper for System.Xml.Serialization.XmlSerializer.
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.DotNetXmlSerializer">
- <summary>
- Wrapper for System.Xml.Serialization.XmlSerializer.
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.DotNetXmlSerializer.#ctor">
- <summary>
- Default constructor, does not specify namespace
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.DotNetXmlSerializer.#ctor(System.String)">
- <summary>
- Specify the namespaced to be used when serializing
- </summary>
- <param name="namespace">XML namespace</param>
- </member>
- <member name="M:RestSharp.Serializers.DotNetXmlSerializer.Serialize(System.Object)">
- <summary>
- Serialize the object as XML
- </summary>
- <param name="obj">Object to serialize</param>
- <returns>XML as string</returns>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.RootElement">
- <summary>
- Name of the root element to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.Namespace">
- <summary>
- XML namespace to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.DateFormat">
- <summary>
- Format string to use when serializing dates
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.ContentType">
- <summary>
- Content type for serialized content
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.Encoding">
- <summary>
- Encoding for serialized content
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.DotNetXmlSerializer.EncodingStringWriter">
- <summary>
- Need to subclass StringWriter in order to override Encoding
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.JsonSerializer">
- <summary>
- Default JSON serializer for request bodies
- Doesn't currently use the SerializeAs attribute, defers to Newtonsoft's attributes
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.JsonSerializer.#ctor">
- <summary>
- Default serializer
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.JsonSerializer.Serialize(System.Object)">
- <summary>
- Serialize the object as JSON
- </summary>
- <param name="obj">Object to serialize</param>
- <returns>JSON as String</returns>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.DateFormat">
- <summary>
- Unused for JSON Serialization
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.RootElement">
- <summary>
- Unused for JSON Serialization
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.Namespace">
- <summary>
- Unused for JSON Serialization
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.ContentType">
- <summary>
- Content type for serialized content
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.SerializeAsAttribute">
- <summary>
- Allows control how class and property names and values are serialized by XmlSerializer
- Currently not supported with the JsonSerializer
- When specified at the property level the class-level specification is overridden
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.SerializeAsAttribute.TransformName(System.String)">
- <summary>
- Called by the attribute when NameStyle is speficied
- </summary>
- <param name="input">The string to transform</param>
- <returns>String</returns>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Name">
- <summary>
- The name to use for the serialized element
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Attribute">
- <summary>
- Sets the value to be serialized as an Attribute instead of an Element
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Culture">
- <summary>
- The culture to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.NameStyle">
- <summary>
- Transforms the casing of the name based on the selected value.
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Index">
- <summary>
- The order to serialize the element. Default is int.MaxValue.
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.NameStyle">
- <summary>
- Options for transforming casing of element names
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.XmlSerializer">
- <summary>
- Default XML Serializer
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.XmlSerializer.#ctor">
- <summary>
- Default constructor, does not specify namespace
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.XmlSerializer.#ctor(System.String)">
- <summary>
- Specify the namespaced to be used when serializing
- </summary>
- <param name="namespace">XML namespace</param>
- </member>
- <member name="M:RestSharp.Serializers.XmlSerializer.Serialize(System.Object)">
- <summary>
- Serialize the object as XML
- </summary>
- <param name="obj">Object to serialize</param>
- <returns>XML as string</returns>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.RootElement">
- <summary>
- Name of the root element to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.Namespace">
- <summary>
- XML namespace to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.DateFormat">
- <summary>
- Format string to use when serializing dates
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.ContentType">
- <summary>
- Content type for serialized content
- </summary>
- </member>
- <member name="T:RestSharp.JsonArray">
- <summary>
- Represents the json array.
- </summary>
- </member>
- <member name="M:RestSharp.JsonArray.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.JsonArray"/> class.
- </summary>
- </member>
- <member name="M:RestSharp.JsonArray.#ctor(System.Int32)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.JsonArray"/> class.
- </summary>
- <param name="capacity">The capacity of the json array.</param>
- </member>
- <member name="M:RestSharp.JsonArray.ToString">
- <summary>
- The json representation of the array.
- </summary>
- <returns>The json representation of the array.</returns>
- </member>
- <member name="T:RestSharp.JsonObject">
- <summary>
- Represents the json object.
- </summary>
- </member>
- <member name="F:RestSharp.JsonObject._members">
- <summary>
- The internal member dictionary.
- </summary>
- </member>
- <member name="M:RestSharp.JsonObject.Add(System.String,System.Object)">
- <summary>
- Adds the specified key.
- </summary>
- <param name="key">The key.</param>
- <param name="value">The value.</param>
- </member>
- <member name="M:RestSharp.JsonObject.ContainsKey(System.String)">
- <summary>
- Determines whether the specified key contains key.
- </summary>
- <param name="key">The key.</param>
- <returns>
- <c>true</c> if the specified key contains key; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.Remove(System.String)">
- <summary>
- Removes the specified key.
- </summary>
- <param name="key">The key.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.TryGetValue(System.String,System.Object@)">
- <summary>
- Tries the get value.
- </summary>
- <param name="key">The key.</param>
- <param name="value">The value.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.Add(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
- <summary>
- Adds the specified item.
- </summary>
- <param name="item">The item.</param>
- </member>
- <member name="M:RestSharp.JsonObject.Clear">
- <summary>
- Clears this instance.
- </summary>
- </member>
- <member name="M:RestSharp.JsonObject.Contains(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
- <summary>
- Determines whether [contains] [the specified item].
- </summary>
- <param name="item">The item.</param>
- <returns>
- <c>true</c> if [contains] [the specified item]; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Object}[],System.Int32)">
- <summary>
- Copies to.
- </summary>
- <param name="array">The array.</param>
- <param name="arrayIndex">Index of the array.</param>
- </member>
- <member name="M:RestSharp.JsonObject.Remove(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
- <summary>
- Removes the specified item.
- </summary>
- <param name="item">The item.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.GetEnumerator">
- <summary>
- Gets the enumerator.
- </summary>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.System#Collections#IEnumerable#GetEnumerator">
- <summary>
- Returns an enumerator that iterates through a collection.
- </summary>
- <returns>
- An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.ToString">
- <summary>
- Returns a json <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
- </summary>
- <returns>
- A json <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
- </returns>
- </member>
- <member name="P:RestSharp.JsonObject.Item(System.Int32)">
- <summary>
- Gets the <see cref="T:System.Object"/> at the specified index.
- </summary>
- <value></value>
- </member>
- <member name="P:RestSharp.JsonObject.Keys">
- <summary>
- Gets the keys.
- </summary>
- <value>The keys.</value>
- </member>
- <member name="P:RestSharp.JsonObject.Values">
- <summary>
- Gets the values.
- </summary>
- <value>The values.</value>
- </member>
- <member name="P:RestSharp.JsonObject.Item(System.String)">
- <summary>
- Gets or sets the <see cref="T:System.Object"/> with the specified key.
- </summary>
- <value></value>
- </member>
- <member name="P:RestSharp.JsonObject.Count">
- <summary>
- Gets the count.
- </summary>
- <value>The count.</value>
- </member>
- <member name="P:RestSharp.JsonObject.IsReadOnly">
- <summary>
- Gets a value indicating whether this instance is read only.
- </summary>
- <value>
- <c>true</c> if this instance is read only; otherwise, <c>false</c>.
- </value>
- </member>
- <member name="T:RestSharp.SimpleJson">
- <summary>
- This class encodes and decodes JSON strings.
- Spec. details, see http://www.json.org/
-
- JSON uses Arrays and Objects. These correspond here to the datatypes JsonArray(IList<object>) and JsonObject(IDictionary<string,object>).
- All numbers are parsed to doubles.
- </summary>
- </member>
- <member name="M:RestSharp.SimpleJson.DeserializeObject(System.String)">
- <summary>
- Parses the string json into a value
- </summary>
- <param name="json">A JSON string.</param>
- <returns>An IList<object>, a IDictionary<string,object>, a double, a string, null, true, or false</returns>
- </member>
- <member name="M:RestSharp.SimpleJson.TryDeserializeObject(System.String,System.Object@)">
- <summary>
- Try parsing the json string into a value.
- </summary>
- <param name="json">
- A JSON string.
- </param>
- <param name="object">
- The object.
- </param>
- <returns>
- Returns true if successfull otherwise false.
- </returns>
- </member>
- <member name="M:RestSharp.SimpleJson.SerializeObject(System.Object,RestSharp.IJsonSerializerStrategy)">
- <summary>
- Converts a IDictionary<string,object> / IList<object> object into a JSON string
- </summary>
- <param name="json">A IDictionary<string,object> / IList<object></param>
- <param name="jsonSerializerStrategy">Serializer strategy to use</param>
- <returns>A JSON encoded string, or null if object 'json' is not serializable</returns>
- </member>
- <member name="M:RestSharp.SimpleJson.IsNumeric(System.Object)">
- <summary>
- Determines if a given object is numeric in any way
- (can be integer, double, null, etc).
- </summary>
- </member>
- <member name="T:RestSharp.Validation.Validate">
- <summary>
- Helper methods for validating values
- </summary>
- </member>
- <member name="M:RestSharp.Validation.Validate.IsBetween(System.Int32,System.Int32,System.Int32)">
- <summary>
- Validate an integer value is between the specified values (exclusive of min/max)
- </summary>
- <param name="value">Value to validate</param>
- <param name="min">Exclusive minimum value</param>
- <param name="max">Exclusive maximum value</param>
- </member>
- <member name="M:RestSharp.Validation.Validate.IsValidLength(System.String,System.Int32)">
- <summary>
- Validate a string length
- </summary>
- <param name="value">String to be validated</param>
- <param name="maxSize">Maximum length of the string</param>
- </member>
- <member name="T:RestSharp.Validation.Require">
- <summary>
- Helper methods for validating required values
- </summary>
- </member>
- <member name="M:RestSharp.Validation.Require.Argument(System.String,System.Object)">
- <summary>
- Require a parameter to not be null
- </summary>
- <param name="argumentName">Name of the parameter</param>
- <param name="argumentValue">Value of the parameter</param>
- </member>
- </members>
-</doc>
diff --git a/SendGrid/packages/RestSharp.104.1/lib/net35/RestSharp.dll b/SendGrid/packages/RestSharp.104.1/lib/net35/RestSharp.dll Binary files differdeleted file mode 100644 index 66e3817..0000000 --- a/SendGrid/packages/RestSharp.104.1/lib/net35/RestSharp.dll +++ /dev/null diff --git a/SendGrid/packages/RestSharp.104.1/lib/net35/RestSharp.xml b/SendGrid/packages/RestSharp.104.1/lib/net35/RestSharp.xml deleted file mode 100644 index fa69be1..0000000 --- a/SendGrid/packages/RestSharp.104.1/lib/net35/RestSharp.xml +++ /dev/null @@ -1,2611 +0,0 @@ -<?xml version="1.0"?>
-<doc>
- <assembly>
- <name>RestSharp</name>
- </assembly>
- <members>
- <member name="T:RestSharp.NtlmAuthenticator">
- <summary>
- Tries to Authenticate with the credentials of the currently logged in user, or impersonate a user
- </summary>
- </member>
- <member name="M:RestSharp.NtlmAuthenticator.#ctor">
- <summary>
- Authenticate with the credentials of the currently logged in user
- </summary>
- </member>
- <member name="M:RestSharp.NtlmAuthenticator.#ctor(System.String,System.String)">
- <summary>
- Authenticate by impersonation
- </summary>
- <param name="username"></param>
- <param name="password"></param>
- </member>
- <member name="M:RestSharp.NtlmAuthenticator.#ctor(System.Net.ICredentials)">
- <summary>
- Authenticate by impersonation, using an existing <c>ICredentials</c> instance
- </summary>
- <param name="credentials"></param>
- </member>
- <member name="T:RestSharp.Authenticators.OAuth1Authenticator">
- <seealso href="http://tools.ietf.org/html/rfc5849"/>
- </member>
- <member name="T:RestSharp.OAuth2Authenticator">
- <summary>
- Base class for OAuth 2 Authenticators.
- </summary>
- <remarks>
- Since there are many ways to authenticate in OAuth2,
- this is used as a base class to differentiate between
- other authenticators.
-
- Any other OAuth2 authenticators must derive from this
- abstract class.
- </remarks>
- </member>
- <member name="F:RestSharp.OAuth2Authenticator._accessToken">
- <summary>
- Access token to be used when authenticating.
- </summary>
- </member>
- <member name="M:RestSharp.OAuth2Authenticator.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.OAuth2Authenticator"/> class.
- </summary>
- <param name="accessToken">
- The access token.
- </param>
- </member>
- <member name="P:RestSharp.OAuth2Authenticator.AccessToken">
- <summary>
- Gets the access token.
- </summary>
- </member>
- <member name="T:RestSharp.OAuth2UriQueryParameterAuthenticator">
- <summary>
- The OAuth 2 authenticator using URI query parameter.
- </summary>
- <remarks>
- Based on http://tools.ietf.org/html/draft-ietf-oauth-v2-10#section-5.1.2
- </remarks>
- </member>
- <member name="M:RestSharp.OAuth2UriQueryParameterAuthenticator.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.OAuth2UriQueryParameterAuthenticator"/> class.
- </summary>
- <param name="accessToken">
- The access token.
- </param>
- </member>
- <member name="T:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator">
- <summary>
- The OAuth 2 authenticator using the authorization request header field.
- </summary>
- <remarks>
- Based on http://tools.ietf.org/html/draft-ietf-oauth-v2-10#section-5.1.1
- </remarks>
- </member>
- <member name="F:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator._authorizationValue">
- <summary>
- Stores the Authoriztion header value as "OAuth accessToken". used for performance.
- </summary>
- </member>
- <member name="M:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator"/> class.
- </summary>
- <param name="accessToken">
- The access token.
- </param>
- </member>
- <member name="F:RestSharp.Authenticators.OAuth.OAuthTools._encoding">
- <summary>
- All text parameters are UTF-8 encoded (per section 5.1).
- </summary>
- <seealso cref="!:http://www.hueniverse.com/hueniverse/2008/10/beginners-gui-1.html"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetNonce">
- <summary>
- Generates a random 16-byte lowercase alphanumeric string.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#nonce"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetTimestamp">
- <summary>
- Generates a timestamp based on the current elapsed seconds since '01/01/1970 0000 GMT"
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#nonce"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetTimestamp(System.DateTime)">
- <summary>
- Generates a timestamp based on the elapsed seconds of a given time since '01/01/1970 0000 GMT"
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#nonce"/>
- <param name="dateTime">A specified point in time.</param>
- <returns></returns>
- </member>
- <member name="F:RestSharp.Authenticators.OAuth.OAuthTools.UriRfc3986CharsToEscape">
- <summary>
- The set of characters that are unreserved in RFC 2396 but are NOT unreserved in RFC 3986.
- </summary>
- <seealso cref="!:http://stackoverflow.com/questions/846487/how-to-get-uri-escapedatastring-to-comply-with-rfc-3986"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.UrlEncodeRelaxed(System.String)">
- <summary>
- URL encodes a string based on section 5.1 of the OAuth spec.
- Namely, percent encoding with [RFC3986], avoiding unreserved characters,
- upper-casing hexadecimal characters, and UTF-8 encoding for text value pairs.
- </summary>
- <param name="value">The value to escape.</param>
- <returns>The escaped value.</returns>
- <remarks>
- The <see cref="M:System.Uri.EscapeDataString(System.String)"/> method is <i>supposed</i> to take on
- RFC 3986 behavior if certain elements are present in a .config file. Even if this
- actually worked (which in my experiments it <i>doesn't</i>), we can't rely on every
- host actually having this configuration element present.
- </remarks>
- <seealso cref="!:http://oauth.net/core/1.0#encoding_parameters"/>
- <seealso cref="!:http://stackoverflow.com/questions/846487/how-to-get-uri-escapedatastring-to-comply-with-rfc-3986"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.UrlEncodeStrict(System.String)">
- <summary>
- URL encodes a string based on section 5.1 of the OAuth spec.
- Namely, percent encoding with [RFC3986], avoiding unreserved characters,
- upper-casing hexadecimal characters, and UTF-8 encoding for text value pairs.
- </summary>
- <param name="value"></param>
- <seealso cref="!:http://oauth.net/core/1.0#encoding_parameters"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.NormalizeRequestParameters(RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Sorts a collection of key-value pairs by name, and then value if equal,
- concatenating them into a single string. This string should be encoded
- prior to, or after normalization is run.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.1"/>
- <param name="parameters"></param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.SortParametersExcludingSignature(RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Sorts a <see cref="T:RestSharp.Authenticators.OAuth.WebParameterCollection"/> by name, and then value if equal.
- </summary>
- <param name="parameters">A collection of parameters to sort</param>
- <returns>A sorted parameter collection</returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.ConstructRequestUrl(System.Uri)">
- <summary>
- Creates a request URL suitable for making OAuth requests.
- Resulting URLs must exclude port 80 or port 443 when accompanied by HTTP and HTTPS, respectively.
- Resulting URLs must be lower case.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.2"/>
- <param name="url">The original request URL</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.ConcatenateRequestElements(System.String,System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Creates a request elements concatentation value to send with a request.
- This is also known as the signature base.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.3"/>
- <seealso cref="!:http://oauth.net/core/1.0#sig_base_example"/>
- <param name="method">The request's HTTP method type</param>
- <param name="url">The request URL</param>
- <param name="parameters">The request's parameters</param>
- <returns>A signature base string</returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret.
- This method is used when the token secret is currently unknown.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer key</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,RestSharp.Authenticators.OAuth.OAuthSignatureTreatment,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret.
- This method is used when the token secret is currently unknown.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureTreatment">The treatment to use on a signature value</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer key</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,System.String,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret and a known token secret.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer secret</param>
- <param name="tokenSecret">The token secret</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,RestSharp.Authenticators.OAuth.OAuthSignatureTreatment,System.String,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret and a known token secret.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureTreatment">The treatment to use on a signature value</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer secret</param>
- <param name="tokenSecret">The token secret</param>
- <returns></returns>
- </member>
- <member name="T:RestSharp.Authenticators.OAuth.OAuthWorkflow">
- <summary>
- A class to encapsulate OAuth authentication flow.
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- </summary>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildRequestTokenInfo(System.String)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of requesting an
- unauthorized request token.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildRequestTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of requesting an
- unauthorized request token.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildAccessTokenInfo(System.String)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of exchanging a request token
- for an access token authorized by the user at the Service Provider site.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildAccessTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of exchanging a request token
- for an access token authorized by the user at the Service Provider site.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- <param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildClientAuthAccessTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of exchanging user credentials
- for an access token authorized by the user at the Service Provider site.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://tools.ietf.org/html/draft-dehora-farrell-oauth-accesstoken-creds-00#section-4"/>
- <param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
- </member>
- <member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.RequestTokenUrl">
- <seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
- </member>
- <member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.AccessTokenUrl">
- <seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
- </member>
- <member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.AuthorizationUrl">
- <seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
- </member>
- <member name="T:RestSharp.Deserializers.DeserializeAsAttribute">
- <summary>
- Allows control how class and property names and values are deserialized by XmlAttributeDeserializer
- </summary>
- </member>
- <member name="P:RestSharp.Deserializers.DeserializeAsAttribute.Name">
- <summary>
- The name to use for the serialized element
- </summary>
- </member>
- <member name="P:RestSharp.Deserializers.DeserializeAsAttribute.Attribute">
- <summary>
- Sets if the property to Deserialize is an Attribute or Element (Default: false)
- </summary>
- </member>
- <member name="M:RestSharp.Contrib.HttpUtility.HtmlDecode(System.String)">
- <summary>
- Decodes an HTML-encoded string and returns the decoded string.
- </summary>
- <param name="s">The HTML string to decode. </param>
- <returns>The decoded text.</returns>
- </member>
- <member name="M:RestSharp.Contrib.HttpUtility.HtmlDecode(System.String,System.IO.TextWriter)">
- <summary>
- Decodes an HTML-encoded string and sends the resulting output to a TextWriter output stream.
- </summary>
- <param name="s">The HTML string to decode</param>
- <param name="output">The TextWriter output stream containing the decoded string. </param>
- </member>
- <member name="M:RestSharp.Contrib.HttpUtility.HtmlEncode(System.String,System.IO.TextWriter)">
- <summary>
- HTML-encodes a string and sends the resulting output to a TextWriter output stream.
- </summary>
- <param name="s">The string to encode. </param>
- <param name="output">The TextWriter output stream containing the encoded string. </param>
- </member>
- <member name="M:RestSharp.RestClientExtensions.ExecuteAsync(RestSharp.IRestClient,RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <param name="client">The IRestClient this method extends</param>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- </member>
- <member name="M:RestSharp.RestClientExtensions.ExecuteAsync``1(RestSharp.IRestClient,RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0}})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <param name="client">The IRestClient this method extends</param>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle</param>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultParameter(RestSharp.IRestClient,RestSharp.Parameter)">
- <summary>
- Add a parameter to use on every request made with this client instance
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="p">Parameter to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultParameter(RestSharp.IRestClient,System.String,System.Object)">
- <summary>
- Adds a HTTP parameter (QueryString for GET, DELETE, OPTIONS and HEAD; Encoded form for POST and PUT)
- Used on every request made by this client instance
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultParameter(RestSharp.IRestClient,System.String,System.Object,RestSharp.ParameterType)">
- <summary>
- Adds a parameter to the request. There are four types of parameters:
- - GetOrPost: Either a QueryString value or encoded form value based on method
- - HttpHeader: Adds the name/value pair to the HTTP request's Headers collection
- - UrlSegment: Inserted into URL if there is a matching url token e.g. {AccountId}
- - RequestBody: Used by AddBody() (not recommended to use directly)
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <param name="type">The type of parameter to add</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultHeader(RestSharp.IRestClient,System.String,System.String)">
- <summary>
- Shortcut to AddDefaultParameter(name, value, HttpHeader) overload
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the header to add</param>
- <param name="value">Value of the header to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultUrlSegment(RestSharp.IRestClient,System.String,System.String)">
- <summary>
- Shortcut to AddDefaultParameter(name, value, UrlSegment) overload
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the segment to add</param>
- <param name="value">Value of the segment to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.UrlEncode(System.String)">
- <summary>
- Uses Uri.EscapeDataString() based on recommendations on MSDN
- http://blogs.msdn.com/b/yangxind/archive/2006/11/09/don-t-use-net-system-uri-unescapedatastring-in-url-decoding.aspx
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.HasValue(System.String)">
- <summary>
- Check that a string is not null or empty
- </summary>
- <param name="input">String to check</param>
- <returns>bool</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.RemoveUnderscoresAndDashes(System.String)">
- <summary>
- Remove underscores from a string
- </summary>
- <param name="input">String to process</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ParseJsonDate(System.String,System.Globalization.CultureInfo)">
- <summary>
- Parses most common JSON date formats
- </summary>
- <param name="input">JSON value to parse</param>
- <returns>DateTime</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.RemoveSurroundingQuotes(System.String)">
- <summary>
- Remove leading and trailing " from a string
- </summary>
- <param name="input">String to parse</param>
- <returns>String</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.Matches(System.String,System.String)">
- <summary>
- Checks a string to see if it matches a regex
- </summary>
- <param name="input">String to check</param>
- <param name="pattern">Pattern to match</param>
- <returns>bool</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ToPascalCase(System.String,System.Globalization.CultureInfo)">
- <summary>
- Converts a string to pascal case
- </summary>
- <param name="lowercaseAndUnderscoredWord">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ToPascalCase(System.String,System.Boolean,System.Globalization.CultureInfo)">
- <summary>
- Converts a string to pascal case with the option to remove underscores
- </summary>
- <param name="text">String to convert</param>
- <param name="removeUnderscores">Option to remove underscores</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ToCamelCase(System.String,System.Globalization.CultureInfo)">
- <summary>
- Converts a string to camel case
- </summary>
- <param name="lowercaseAndUnderscoredWord">String to convert</param>
- <returns>String</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.MakeInitialLowerCase(System.String)">
- <summary>
- Convert the first letter of a string to lower case
- </summary>
- <param name="word">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.IsUpperCase(System.String)">
- <summary>
- Checks to see if a string is all uppper case
- </summary>
- <param name="inputString">String to check</param>
- <returns>bool</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.AddUnderscores(System.String)">
- <summary>
- Add underscores to a pascal-cased string
- </summary>
- <param name="pascalCasedWord">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.AddDashes(System.String)">
- <summary>
- Add dashes to a pascal-cased string
- </summary>
- <param name="pascalCasedWord">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.AddUnderscorePrefix(System.String)">
- <summary>
- Add an undescore prefix to a pascasl-cased string
- </summary>
- <param name="pascalCasedWord"></param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.GetNameVariants(System.String,System.Globalization.CultureInfo)">
- <summary>
- Return possible variants of a name for name matching.
- </summary>
- <param name="name">String to convert</param>
- <param name="culture">The culture to use for conversion</param>
- <returns>IEnumerable<string></returns>
- </member>
- <member name="T:RestSharp.Http">
- <summary>
- HttpWebRequest wrapper (sync methods)
- </summary>
- <summary>
- HttpWebRequest wrapper
- </summary>
- <summary>
- HttpWebRequest wrapper (async methods)
- </summary>
- </member>
- <member name="M:RestSharp.Http.Post">
- <summary>
- Execute a POST request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Put">
- <summary>
- Execute a PUT request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Get">
- <summary>
- Execute a GET request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Head">
- <summary>
- Execute a HEAD request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Options">
- <summary>
- Execute an OPTIONS request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Delete">
- <summary>
- Execute a DELETE request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Patch">
- <summary>
- Execute a PATCH request
- </summary>
- </member>
- <member name="M:RestSharp.Http.AsGet(System.String)">
- <summary>
- Execute a GET-style request with the specified HTTP Method.
- </summary>
- <param name="httpMethod">The HTTP method to execute.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Http.AsPost(System.String)">
- <summary>
- Execute a POST-style request with the specified HTTP Method.
- </summary>
- <param name="httpMethod">The HTTP method to execute.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Http.Create">
- <summary>
- Creates an IHttp
- </summary>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Http.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="M:RestSharp.Http.AsPostAsync(System.Action{RestSharp.HttpResponse},System.String)">
- <summary>
- Execute an async POST-style request with the specified HTTP Method.
- </summary>
- <param name="httpMethod">The HTTP method to execute.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Http.AsGetAsync(System.Action{RestSharp.HttpResponse},System.String)">
- <summary>
- Execute an async GET-style request with the specified HTTP Method.
- </summary>
- <param name="httpMethod">The HTTP method to execute.</param>
- <returns></returns>
- </member>
- <member name="P:RestSharp.Http.HasParameters">
- <summary>
- True if this HTTP request has any HTTP parameters
- </summary>
- </member>
- <member name="P:RestSharp.Http.HasCookies">
- <summary>
- True if this HTTP request has any HTTP cookies
- </summary>
- </member>
- <member name="P:RestSharp.Http.HasBody">
- <summary>
- True if a request body has been specified
- </summary>
- </member>
- <member name="P:RestSharp.Http.HasFiles">
- <summary>
- True if files have been set to be uploaded
- </summary>
- </member>
- <member name="P:RestSharp.Http.UserAgent">
- <summary>
- UserAgent to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Timeout">
- <summary>
- Timeout in milliseconds to be used for the request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Credentials">
- <summary>
- System.Net.ICredentials to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.CookieContainer">
- <summary>
- The System.Net.CookieContainer to be used for the request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Files">
- <summary>
- Collection of files to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.FollowRedirects">
- <summary>
- Whether or not HTTP 3xx response redirects should be automatically followed
- </summary>
- </member>
- <member name="P:RestSharp.Http.ClientCertificates">
- <summary>
- X509CertificateCollection to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.MaxRedirects">
- <summary>
- Maximum number of automatic redirects to follow if FollowRedirects is true
- </summary>
- </member>
- <member name="P:RestSharp.Http.Headers">
- <summary>
- HTTP headers to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Parameters">
- <summary>
- HTTP parameters (QueryString or Form values) to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Cookies">
- <summary>
- HTTP cookies to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.RequestBody">
- <summary>
- Request body to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.RequestContentType">
- <summary>
- Content type of the request body.
- </summary>
- </member>
- <member name="P:RestSharp.Http.Url">
- <summary>
- URL to call for this request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Proxy">
- <summary>
- Proxy info to be sent with request
- </summary>
- </member>
- <member name="T:RestSharp.HttpCookie">
- <summary>
- Representation of an HTTP cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Comment">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.CommentUri">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Discard">
- <summary>
- Indicates whether the cookie should be discarded at the end of the session
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Domain">
- <summary>
- Domain of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Expired">
- <summary>
- Indicates whether the cookie is expired
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Expires">
- <summary>
- Date and time that the cookie expires
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.HttpOnly">
- <summary>
- Indicates that this cookie should only be accessed by the server
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Name">
- <summary>
- Name of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Path">
- <summary>
- Path of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Port">
- <summary>
- Port of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Secure">
- <summary>
- Indicates that the cookie should only be sent over secure channels
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.TimeStamp">
- <summary>
- Date and time the cookie was created
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Value">
- <summary>
- Value of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Version">
- <summary>
- Version of the cookie
- </summary>
- </member>
- <member name="T:RestSharp.HttpResponse">
- <summary>
- HTTP response data
- </summary>
- </member>
- <member name="T:RestSharp.IHttpResponse">
- <summary>
- HTTP response data
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Content">
- <summary>
- String representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ErrorException">
- <summary>
- Exception thrown when error is encountered.
- </summary>
- </member>
- <member name="M:RestSharp.HttpResponse.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Content">
- <summary>
- Lazy-loaded string representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ErrorException">
- <summary>
- Exception thrown when error is encountered.
- </summary>
- </member>
- <member name="T:RestSharp.ParameterType">
- <summary>
- Types of parameters that can be added to requests
- </summary>
- </member>
- <member name="T:RestSharp.DataFormat">
- <summary>
- Data formats
- </summary>
- </member>
- <member name="T:RestSharp.Method">
- <summary>
- HTTP method to use when making requests
- </summary>
- </member>
- <member name="T:RestSharp.DateFormat">
- <summary>
- Format strings for commonly-used date formats
- </summary>
- </member>
- <member name="F:RestSharp.DateFormat.Iso8601">
- <summary>
- .NET format string for ISO 8601 date format
- </summary>
- </member>
- <member name="F:RestSharp.DateFormat.RoundTrip">
- <summary>
- .NET format string for roundtrip date format
- </summary>
- </member>
- <member name="T:RestSharp.ResponseStatus">
- <summary>
- Status for responses (surprised?)
- </summary>
- </member>
- <member name="T:RestSharp.Extensions.MiscExtensions">
- <summary>
- Extension method overload!
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.SaveAs(System.Byte[],System.String)">
- <summary>
- Save a byte array to a file
- </summary>
- <param name="input">Bytes to save</param>
- <param name="path">Full path to save file to</param>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.ReadAsBytes(System.IO.Stream)">
- <summary>
- Read a stream into a byte array
- </summary>
- <param name="input">Stream to read</param>
- <returns>byte[]</returns>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.CopyTo(System.IO.Stream,System.IO.Stream)">
- <summary>
- Copies bytes from one stream to another
- </summary>
- <param name="input">The input stream.</param>
- <param name="output">The output stream.</param>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.AsString(System.Byte[])">
- <summary>
- Converts a byte array to a string, using its byte order mark to convert it to the right encoding.
- http://www.shrinkrays.net/code-snippets/csharp/an-extension-method-for-converting-a-byte-array-to-a-string.aspx
- </summary>
- <param name="buffer">An array of bytes to convert</param>
- <returns>The byte as a string.</returns>
- </member>
- <member name="T:RestSharp.Extensions.ReflectionExtensions">
- <summary>
- Reflection extensions
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.ReflectionExtensions.GetAttribute``1(System.Reflection.MemberInfo)">
- <summary>
- Retrieve an attribute from a member (property)
- </summary>
- <typeparam name="T">Type of attribute to retrieve</typeparam>
- <param name="prop">Member to retrieve attribute from</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.ReflectionExtensions.GetAttribute``1(System.Type)">
- <summary>
- Retrieve an attribute from a type
- </summary>
- <typeparam name="T">Type of attribute to retrieve</typeparam>
- <param name="type">Type to retrieve attribute from</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.ReflectionExtensions.IsSubclassOfRawGeneric(System.Type,System.Type)">
- <summary>
- Checks a type to see if it derives from a raw generic (e.g. List[[]])
- </summary>
- <param name="toCheck"></param>
- <param name="generic"></param>
- <returns></returns>
- </member>
- <!-- Badly formed XML comment ignored for member "M:RestSharp.Extensions.ReflectionExtensions.FindEnumValue(System.Type,System.String,System.Globalization.CultureInfo)" -->
- <member name="T:RestSharp.Extensions.XmlExtensions">
- <summary>
- XML Extension Methods
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.XmlExtensions.AsNamespaced(System.String,System.String)">
- <summary>
- Returns the name of an element with the namespace if specified
- </summary>
- <param name="name">Element name</param>
- <param name="namespace">XML Namespace</param>
- <returns></returns>
- </member>
- <member name="T:RestSharp.FileParameter">
- <summary>
- Container for files to be uploaded with requests
- </summary>
- </member>
- <member name="M:RestSharp.FileParameter.Create(System.String,System.Byte[],System.String,System.String)">
- <summary>
- Creates a file parameter from an array of bytes.
- </summary>
- <param name="name">The parameter name to use in the request.</param>
- <param name="data">The data to use as the file's contents.</param>
- <param name="filename">The filename to use in the request.</param>
- <param name="contentType">The content type to use in the request.</param>
- <returns>The <see cref="T:RestSharp.FileParameter"/></returns>
- </member>
- <member name="M:RestSharp.FileParameter.Create(System.String,System.Byte[],System.String)">
- <summary>
- Creates a file parameter from an array of bytes.
- </summary>
- <param name="name">The parameter name to use in the request.</param>
- <param name="data">The data to use as the file's contents.</param>
- <param name="filename">The filename to use in the request.</param>
- <returns>The <see cref="T:RestSharp.FileParameter"/> using the default content type.</returns>
- </member>
- <member name="P:RestSharp.FileParameter.ContentLength">
- <summary>
- The length of data to be sent
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.Writer">
- <summary>
- Provides raw data for file
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.FileName">
- <summary>
- Name of the file to use when uploading
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.ContentType">
- <summary>
- MIME content type of file
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.HttpFile">
- <summary>
- Container for HTTP file
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.ContentLength">
- <summary>
- The length of data to be sent
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.Writer">
- <summary>
- Provides raw data for file
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.FileName">
- <summary>
- Name of the file to use when uploading
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.ContentType">
- <summary>
- MIME content type of file
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.HttpHeader">
- <summary>
- Representation of an HTTP header
- </summary>
- </member>
- <member name="P:RestSharp.HttpHeader.Name">
- <summary>
- Name of the header
- </summary>
- </member>
- <member name="P:RestSharp.HttpHeader.Value">
- <summary>
- Value of the header
- </summary>
- </member>
- <member name="T:RestSharp.HttpParameter">
- <summary>
- Representation of an HTTP parameter (QueryString or Form value)
- </summary>
- </member>
- <member name="P:RestSharp.HttpParameter.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="P:RestSharp.HttpParameter.Value">
- <summary>
- Value of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.IRestClient">
- <summary>
-
- </summary>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsync(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle})">
- <summary>
-
- </summary>
- <param name="request"></param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsync``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle})">
- <summary>
-
- </summary>
- <param name="request"></param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncGet(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncPost(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a POST-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncGet``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncPost``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="P:RestSharp.IRestClient.CookieContainer">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.UserAgent">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.Timeout">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.UseSynchronizationContext">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.Authenticator">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.BaseUrl">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.DefaultParameters">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.ClientCertificates">
- <summary>
- X509CertificateCollection to be sent with request
- </summary>
- </member>
- <member name="M:RestSharp.IRestRequest.AddFile(System.String,System.String)">
- <summary>
- Adds a file to the Files collection to be included with a POST or PUT request
- (other methods do not support file uploads).
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="path">Full path to file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddFile(System.String,System.Byte[],System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="bytes">The file data</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddFile(System.String,System.Byte[],System.String,System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name and content type
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="bytes">The file data</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <param name="contentType">The MIME type of the file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddBody(System.Object,System.String)">
- <summary>
- Serializes obj to format specified by RequestFormat, but passes xmlNamespace if using the default XmlSerializer
- </summary>
- <param name="obj">The object to serialize</param>
- <param name="xmlNamespace">The XML namespace to use when serializing</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddBody(System.Object)">
- <summary>
- Serializes obj to data format specified by RequestFormat and adds it to the request body.
- </summary>
- <param name="obj">The object to serialize</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddObject(System.Object,System.String[])">
- <summary>
- Calls AddParameter() for all public, readable properties specified in the white list
- </summary>
- <example>
- request.AddObject(product, "ProductId", "Price", ...);
- </example>
- <param name="obj">The object with properties to add as parameters</param>
- <param name="whitelist">The names of the properties to include</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddObject(System.Object)">
- <summary>
- Calls AddParameter() for all public, readable properties of obj
- </summary>
- <param name="obj">The object with properties to add as parameters</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddParameter(RestSharp.Parameter)">
- <summary>
- Add the parameter to the request
- </summary>
- <param name="p">Parameter to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddParameter(System.String,System.Object)">
- <summary>
- Adds a HTTP parameter to the request (QueryString for GET, DELETE, OPTIONS and HEAD; Encoded form for POST and PUT)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddParameter(System.String,System.Object,RestSharp.ParameterType)">
- <summary>
- Adds a parameter to the request. There are five types of parameters:
- - GetOrPost: Either a QueryString value or encoded form value based on method
- - HttpHeader: Adds the name/value pair to the HTTP request's Headers collection
- - UrlSegment: Inserted into URL if there is a matching url token e.g. {AccountId}
- - Cookie: Adds the name/value pair to the HTTP request's Cookies collection
- - RequestBody: Used by AddBody() (not recommended to use directly)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <param name="type">The type of parameter to add</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddHeader(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, HttpHeader) overload
- </summary>
- <param name="name">Name of the header to add</param>
- <param name="value">Value of the header to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddCookie(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, Cookie) overload
- </summary>
- <param name="name">Name of the cookie to add</param>
- <param name="value">Value of the cookie to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddUrlSegment(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, UrlSegment) overload
- </summary>
- <param name="name">Name of the segment to add</param>
- <param name="value">Value of the segment to add</param>
- <returns></returns>
- </member>
- <member name="P:RestSharp.IRestRequest.JsonSerializer">
- <summary>
- Serializer to use when writing JSON request bodies. Used if RequestFormat is Json.
- By default the included JsonSerializer is used (currently using JSON.NET default serialization).
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.XmlSerializer">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default the included XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Parameters">
- <summary>
- Container of all HTTP parameters to be passed with the request.
- See AddParameter() for explanation of the types of parameters that can be passed
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Files">
- <summary>
- Container of all the files to be uploaded with the request.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Method">
- <summary>
- Determines what HTTP method to use for this request. Supported methods: GET, POST, PUT, DELETE, HEAD, OPTIONS
- Default is GET
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Resource">
- <summary>
- The Resource URL to make the request against.
- Tokens are substituted with UrlSegment parameters and match by name.
- Should not include the scheme or domain. Do not include leading slash.
- Combined with RestClient.BaseUrl to assemble final URL:
- {BaseUrl}/{Resource} (BaseUrl is scheme + domain, e.g. http://example.com)
- </summary>
- <example>
- // example for url token replacement
- request.Resource = "Products/{ProductId}";
- request.AddParameter("ProductId", 123, ParameterType.UrlSegment);
- </example>
- </member>
- <member name="P:RestSharp.IRestRequest.RequestFormat">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.RootElement">
- <summary>
- Used by the default deserializers to determine where to start deserializing from.
- Can be used to skip container or root elements that do not have corresponding deserialzation targets.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.DateFormat">
- <summary>
- Used by the default deserializers to explicitly set which date format string to use when parsing dates.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.XmlNamespace">
- <summary>
- Used by XmlDeserializer. If not specified, XmlDeserializer will flatten response by removing namespaces from element names.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Credentials">
- <summary>
- In general you would not need to set this directly. Used by the NtlmAuthenticator.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Timeout">
- <summary>
- Timeout in milliseconds to be used for the request. This timeout value overrides a timeout set on the RestClient.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Attempts">
- <summary>
- How many attempts were made to send this Request?
- </summary>
- <remarks>
- This Number is incremented each time the RestClient sends the request.
- Useful when using Asynchronous Execution with Callbacks
- </remarks>
- </member>
- <member name="T:RestSharp.IRestResponse">
- <summary>
- Container for data sent back from API
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Request">
- <summary>
- The RestRequest that was made to get this RestResponse
- </summary>
- <remarks>
- Mainly for debugging if ResponseStatus is not OK
- </remarks>
- </member>
- <member name="P:RestSharp.IRestResponse.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Content">
- <summary>
- String representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ErrorException">
- <summary>
- The exception thrown during the request, if any
- </summary>
- </member>
- <member name="T:RestSharp.IRestResponse`1">
- <summary>
- Container for data sent back from API including deserialized data
- </summary>
- <typeparam name="T">Type of data to deserialize to</typeparam>
- </member>
- <member name="P:RestSharp.IRestResponse`1.Data">
- <summary>
- Deserialized entity data
- </summary>
- </member>
- <member name="T:RestSharp.RestResponseBase">
- <summary>
- Base class for common properties shared by RestResponse and RestResponse[[T]]
- </summary>
- </member>
- <member name="M:RestSharp.RestResponseBase.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Request">
- <summary>
- The RestRequest that was made to get this RestResponse
- </summary>
- <remarks>
- Mainly for debugging if ResponseStatus is not OK
- </remarks>
- </member>
- <member name="P:RestSharp.RestResponseBase.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Content">
- <summary>
- String representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ErrorException">
- <summary>
- The exception thrown during the request, if any
- </summary>
- </member>
- <member name="T:RestSharp.RestResponse`1">
- <summary>
- Container for data sent back from API including deserialized data
- </summary>
- <typeparam name="T">Type of data to deserialize to</typeparam>
- </member>
- <member name="P:RestSharp.RestResponse`1.Data">
- <summary>
- Deserialized entity data
- </summary>
- </member>
- <member name="T:RestSharp.RestResponse">
- <summary>
- Container for data sent back from API
- </summary>
- </member>
- <member name="T:RestSharp.Parameter">
- <summary>
- Parameter container for REST requests
- </summary>
- </member>
- <member name="M:RestSharp.Parameter.ToString">
- <summary>
- Return a human-readable representation of this parameter
- </summary>
- <returns>String</returns>
- </member>
- <member name="P:RestSharp.Parameter.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="P:RestSharp.Parameter.Value">
- <summary>
- Value of the parameter
- </summary>
- </member>
- <member name="P:RestSharp.Parameter.Type">
- <summary>
- Type of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.RestClient">
- <summary>
- Client to translate RestRequests into Http requests and process response result
- </summary>
- </member>
- <member name="M:RestSharp.RestClient.#ctor">
- <summary>
- Default constructor that registers default content handlers
- </summary>
- </member>
- <member name="M:RestSharp.RestClient.#ctor(System.String)">
- <summary>
- Sets the BaseUrl property for requests made by this client instance
- </summary>
- <param name="baseUrl"></param>
- </member>
- <member name="M:RestSharp.RestClient.AddHandler(System.String,RestSharp.Deserializers.IDeserializer)">
- <summary>
- Registers a content handler to process response content
- </summary>
- <param name="contentType">MIME content type of the response content</param>
- <param name="deserializer">Deserializer to use to process content</param>
- </member>
- <member name="M:RestSharp.RestClient.RemoveHandler(System.String)">
- <summary>
- Remove a content handler for the specified MIME content type
- </summary>
- <param name="contentType">MIME content type to remove</param>
- </member>
- <member name="M:RestSharp.RestClient.ClearHandlers">
- <summary>
- Remove all content handlers
- </summary>
- </member>
- <member name="M:RestSharp.RestClient.GetHandler(System.String)">
- <summary>
- Retrieve the handler for the specified MIME content type
- </summary>
- <param name="contentType">MIME content type to retrieve</param>
- <returns>IDeserializer instance</returns>
- </member>
- <member name="M:RestSharp.RestClient.BuildUri(RestSharp.IRestRequest)">
- <summary>
- Assembles URL to call based on parameters, method and resource
- </summary>
- <param name="request">RestRequest to execute</param>
- <returns>Assembled System.Uri</returns>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsync(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncGet(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncPost(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a POST-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsync``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncGet``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncPost``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a POST-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.DownloadData(RestSharp.IRestRequest)">
- <summary>
- Executes the specified request and downloads the response data
- </summary>
- <param name="request">Request to execute</param>
- <returns>Response data</returns>
- </member>
- <member name="M:RestSharp.RestClient.Execute(RestSharp.IRestRequest)">
- <summary>
- Executes the request and returns a response, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <returns>RestResponse</returns>
- </member>
- <member name="M:RestSharp.RestClient.Execute``1(RestSharp.IRestRequest)">
- <summary>
- Executes the specified request and deserializes the response content using the appropriate content handler
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to execute</param>
- <returns>RestResponse[[T]] with deserialized data in Data property</returns>
- </member>
- <member name="P:RestSharp.RestClient.DefaultParameters">
- <summary>
- Parameters included with every request made with this instance of RestClient
- If specified in both client and request, the request wins
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.MaxRedirects">
- <summary>
- Maximum number of redirects to follow if FollowRedirects is true
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.ClientCertificates">
- <summary>
- X509CertificateCollection to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.FollowRedirects">
- <summary>
- Default is true. Determine whether or not requests that result in
- HTTP status codes of 3xx should follow returned redirect
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.CookieContainer">
- <summary>
- The CookieContainer used for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.UserAgent">
- <summary>
- UserAgent to use for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.Timeout">
- <summary>
- Timeout in milliseconds to use for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.UseSynchronizationContext">
- <summary>
- Whether to invoke async callbacks using the SynchronizationContext.Current captured when invoked
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.Authenticator">
- <summary>
- Authenticator to use for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.BaseUrl">
- <summary>
- Combined with Request.Resource to construct URL for request
- Should include scheme and domain without trailing slash.
- </summary>
- <example>
- client.BaseUrl = "http://example.com";
- </example>
- </member>
- <member name="P:RestSharp.RestClient.Proxy">
- <summary>
- Proxy to use for requests made by this client instance.
- Passed on to underying WebRequest if set.
- </summary>
- </member>
- <member name="T:RestSharp.RestRequest">
- <summary>
- Container for data used to make requests
- </summary>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(RestSharp.Method)">
- <summary>
- Sets Method property to value of method
- </summary>
- <param name="method">Method to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.String)">
- <summary>
- Sets Resource property
- </summary>
- <param name="resource">Resource to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.String,RestSharp.Method)">
- <summary>
- Sets Resource and Method properties
- </summary>
- <param name="resource">Resource to use for this request</param>
- <param name="method">Method to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.Uri)">
- <summary>
- Sets Resource property
- </summary>
- <param name="resource">Resource to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.Uri,RestSharp.Method)">
- <summary>
- Sets Resource and Method properties
- </summary>
- <param name="resource">Resource to use for this request</param>
- <param name="method">Method to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.String)">
- <summary>
- Adds a file to the Files collection to be included with a POST or PUT request
- (other methods do not support file uploads).
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="path">Full path to file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Byte[],System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="bytes">The file data</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Byte[],System.String,System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name and content type
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="bytes">The file data</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <param name="contentType">The MIME type of the file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Action{System.IO.Stream},System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name and content type
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="writer">A function that writes directly to the stream. Should NOT close the stream.</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Action{System.IO.Stream},System.String,System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name and content type
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="writer">A function that writes directly to the stream. Should NOT close the stream.</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <param name="contentType">The MIME type of the file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddBody(System.Object,System.String)">
- <summary>
- Serializes obj to format specified by RequestFormat, but passes xmlNamespace if using the default XmlSerializer
- </summary>
- <param name="obj">The object to serialize</param>
- <param name="xmlNamespace">The XML namespace to use when serializing</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddBody(System.Object)">
- <summary>
- Serializes obj to data format specified by RequestFormat and adds it to the request body.
- </summary>
- <param name="obj">The object to serialize</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddObject(System.Object,System.String[])">
- <summary>
- Calls AddParameter() for all public, readable properties specified in the white list
- </summary>
- <example>
- request.AddObject(product, "ProductId", "Price", ...);
- </example>
- <param name="obj">The object with properties to add as parameters</param>
- <param name="whitelist">The names of the properties to include</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddObject(System.Object)">
- <summary>
- Calls AddParameter() for all public, readable properties of obj
- </summary>
- <param name="obj">The object with properties to add as parameters</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddParameter(RestSharp.Parameter)">
- <summary>
- Add the parameter to the request
- </summary>
- <param name="p">Parameter to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddParameter(System.String,System.Object)">
- <summary>
- Adds a HTTP parameter to the request (QueryString for GET, DELETE, OPTIONS and HEAD; Encoded form for POST and PUT)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddParameter(System.String,System.Object,RestSharp.ParameterType)">
- <summary>
- Adds a parameter to the request. There are four types of parameters:
- - GetOrPost: Either a QueryString value or encoded form value based on method
- - HttpHeader: Adds the name/value pair to the HTTP request's Headers collection
- - UrlSegment: Inserted into URL if there is a matching url token e.g. {AccountId}
- - RequestBody: Used by AddBody() (not recommended to use directly)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <param name="type">The type of parameter to add</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddHeader(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, HttpHeader) overload
- </summary>
- <param name="name">Name of the header to add</param>
- <param name="value">Value of the header to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddCookie(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, Cookie) overload
- </summary>
- <param name="name">Name of the cookie to add</param>
- <param name="value">Value of the cookie to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddUrlSegment(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, UrlSegment) overload
- </summary>
- <param name="name">Name of the segment to add</param>
- <param name="value">Value of the segment to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.IncreaseNumAttempts">
- <summary>
- Internal Method so that RestClient can increase the number of attempts
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.JsonSerializer">
- <summary>
- Serializer to use when writing JSON request bodies. Used if RequestFormat is Json.
- By default the included JsonSerializer is used (currently using JSON.NET default serialization).
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.XmlSerializer">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default the included XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Parameters">
- <summary>
- Container of all HTTP parameters to be passed with the request.
- See AddParameter() for explanation of the types of parameters that can be passed
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Files">
- <summary>
- Container of all the files to be uploaded with the request.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Method">
- <summary>
- Determines what HTTP method to use for this request. Supported methods: GET, POST, PUT, DELETE, HEAD, OPTIONS
- Default is GET
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Resource">
- <summary>
- The Resource URL to make the request against.
- Tokens are substituted with UrlSegment parameters and match by name.
- Should not include the scheme or domain. Do not include leading slash.
- Combined with RestClient.BaseUrl to assemble final URL:
- {BaseUrl}/{Resource} (BaseUrl is scheme + domain, e.g. http://example.com)
- </summary>
- <example>
- // example for url token replacement
- request.Resource = "Products/{ProductId}";
- request.AddParameter("ProductId", 123, ParameterType.UrlSegment);
- </example>
- </member>
- <member name="P:RestSharp.RestRequest.RequestFormat">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.RootElement">
- <summary>
- Used by the default deserializers to determine where to start deserializing from.
- Can be used to skip container or root elements that do not have corresponding deserialzation targets.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.OnBeforeDeserialization">
- <summary>
- A function to run prior to deserializing starting (e.g. change settings if error encountered)
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.DateFormat">
- <summary>
- Used by the default deserializers to explicitly set which date format string to use when parsing dates.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.XmlNamespace">
- <summary>
- Used by XmlDeserializer. If not specified, XmlDeserializer will flatten response by removing namespaces from element names.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Credentials">
- <summary>
- In general you would not need to set this directly. Used by the NtlmAuthenticator.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.UserState">
- <summary>
- Gets or sets a user-defined state object that contains information about a request and which can be later
- retrieved when the request completes.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Timeout">
- <summary>
- Timeout in milliseconds to be used for the request. This timeout value overrides a timeout set on the RestClient.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Attempts">
- <summary>
- How many attempts were made to send this Request?
- </summary>
- <remarks>
- This Number is incremented each time the RestClient sends the request.
- Useful when using Asynchronous Execution with Callbacks
- </remarks>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Comment">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.CommentUri">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Discard">
- <summary>
- Indicates whether the cookie should be discarded at the end of the session
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Domain">
- <summary>
- Domain of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Expired">
- <summary>
- Indicates whether the cookie is expired
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Expires">
- <summary>
- Date and time that the cookie expires
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.HttpOnly">
- <summary>
- Indicates that this cookie should only be accessed by the server
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Name">
- <summary>
- Name of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Path">
- <summary>
- Path of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Port">
- <summary>
- Port of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Secure">
- <summary>
- Indicates that the cookie should only be sent over secure channels
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.TimeStamp">
- <summary>
- Date and time the cookie was created
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Value">
- <summary>
- Value of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Version">
- <summary>
- Version of the cookie
- </summary>
- </member>
- <member name="T:RestSharp.Deserializers.DotNetXmlDeserializer">
- <summary>
- Wrapper for System.Xml.Serialization.XmlSerializer.
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.DotNetXmlSerializer">
- <summary>
- Wrapper for System.Xml.Serialization.XmlSerializer.
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.DotNetXmlSerializer.#ctor">
- <summary>
- Default constructor, does not specify namespace
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.DotNetXmlSerializer.#ctor(System.String)">
- <summary>
- Specify the namespaced to be used when serializing
- </summary>
- <param name="namespace">XML namespace</param>
- </member>
- <member name="M:RestSharp.Serializers.DotNetXmlSerializer.Serialize(System.Object)">
- <summary>
- Serialize the object as XML
- </summary>
- <param name="obj">Object to serialize</param>
- <returns>XML as string</returns>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.RootElement">
- <summary>
- Name of the root element to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.Namespace">
- <summary>
- XML namespace to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.DateFormat">
- <summary>
- Format string to use when serializing dates
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.ContentType">
- <summary>
- Content type for serialized content
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.Encoding">
- <summary>
- Encoding for serialized content
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.DotNetXmlSerializer.EncodingStringWriter">
- <summary>
- Need to subclass StringWriter in order to override Encoding
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.JsonSerializer">
- <summary>
- Default JSON serializer for request bodies
- Doesn't currently use the SerializeAs attribute, defers to Newtonsoft's attributes
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.JsonSerializer.#ctor">
- <summary>
- Default serializer
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.JsonSerializer.Serialize(System.Object)">
- <summary>
- Serialize the object as JSON
- </summary>
- <param name="obj">Object to serialize</param>
- <returns>JSON as String</returns>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.DateFormat">
- <summary>
- Unused for JSON Serialization
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.RootElement">
- <summary>
- Unused for JSON Serialization
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.Namespace">
- <summary>
- Unused for JSON Serialization
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.ContentType">
- <summary>
- Content type for serialized content
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.SerializeAsAttribute">
- <summary>
- Allows control how class and property names and values are serialized by XmlSerializer
- Currently not supported with the JsonSerializer
- When specified at the property level the class-level specification is overridden
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.SerializeAsAttribute.TransformName(System.String)">
- <summary>
- Called by the attribute when NameStyle is speficied
- </summary>
- <param name="input">The string to transform</param>
- <returns>String</returns>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Name">
- <summary>
- The name to use for the serialized element
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Attribute">
- <summary>
- Sets the value to be serialized as an Attribute instead of an Element
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Culture">
- <summary>
- The culture to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.NameStyle">
- <summary>
- Transforms the casing of the name based on the selected value.
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Index">
- <summary>
- The order to serialize the element. Default is int.MaxValue.
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.NameStyle">
- <summary>
- Options for transforming casing of element names
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.XmlSerializer">
- <summary>
- Default XML Serializer
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.XmlSerializer.#ctor">
- <summary>
- Default constructor, does not specify namespace
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.XmlSerializer.#ctor(System.String)">
- <summary>
- Specify the namespaced to be used when serializing
- </summary>
- <param name="namespace">XML namespace</param>
- </member>
- <member name="M:RestSharp.Serializers.XmlSerializer.Serialize(System.Object)">
- <summary>
- Serialize the object as XML
- </summary>
- <param name="obj">Object to serialize</param>
- <returns>XML as string</returns>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.RootElement">
- <summary>
- Name of the root element to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.Namespace">
- <summary>
- XML namespace to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.DateFormat">
- <summary>
- Format string to use when serializing dates
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.ContentType">
- <summary>
- Content type for serialized content
- </summary>
- </member>
- <member name="T:RestSharp.JsonArray">
- <summary>
- Represents the json array.
- </summary>
- </member>
- <member name="M:RestSharp.JsonArray.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.JsonArray"/> class.
- </summary>
- </member>
- <member name="M:RestSharp.JsonArray.#ctor(System.Int32)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.JsonArray"/> class.
- </summary>
- <param name="capacity">The capacity of the json array.</param>
- </member>
- <member name="M:RestSharp.JsonArray.ToString">
- <summary>
- The json representation of the array.
- </summary>
- <returns>The json representation of the array.</returns>
- </member>
- <member name="T:RestSharp.JsonObject">
- <summary>
- Represents the json object.
- </summary>
- </member>
- <member name="F:RestSharp.JsonObject._members">
- <summary>
- The internal member dictionary.
- </summary>
- </member>
- <member name="M:RestSharp.JsonObject.Add(System.String,System.Object)">
- <summary>
- Adds the specified key.
- </summary>
- <param name="key">The key.</param>
- <param name="value">The value.</param>
- </member>
- <member name="M:RestSharp.JsonObject.ContainsKey(System.String)">
- <summary>
- Determines whether the specified key contains key.
- </summary>
- <param name="key">The key.</param>
- <returns>
- <c>true</c> if the specified key contains key; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.Remove(System.String)">
- <summary>
- Removes the specified key.
- </summary>
- <param name="key">The key.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.TryGetValue(System.String,System.Object@)">
- <summary>
- Tries the get value.
- </summary>
- <param name="key">The key.</param>
- <param name="value">The value.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.Add(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
- <summary>
- Adds the specified item.
- </summary>
- <param name="item">The item.</param>
- </member>
- <member name="M:RestSharp.JsonObject.Clear">
- <summary>
- Clears this instance.
- </summary>
- </member>
- <member name="M:RestSharp.JsonObject.Contains(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
- <summary>
- Determines whether [contains] [the specified item].
- </summary>
- <param name="item">The item.</param>
- <returns>
- <c>true</c> if [contains] [the specified item]; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Object}[],System.Int32)">
- <summary>
- Copies to.
- </summary>
- <param name="array">The array.</param>
- <param name="arrayIndex">Index of the array.</param>
- </member>
- <member name="M:RestSharp.JsonObject.Remove(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
- <summary>
- Removes the specified item.
- </summary>
- <param name="item">The item.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.GetEnumerator">
- <summary>
- Gets the enumerator.
- </summary>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.System#Collections#IEnumerable#GetEnumerator">
- <summary>
- Returns an enumerator that iterates through a collection.
- </summary>
- <returns>
- An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.ToString">
- <summary>
- Returns a json <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
- </summary>
- <returns>
- A json <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
- </returns>
- </member>
- <member name="P:RestSharp.JsonObject.Item(System.Int32)">
- <summary>
- Gets the <see cref="T:System.Object"/> at the specified index.
- </summary>
- <value></value>
- </member>
- <member name="P:RestSharp.JsonObject.Keys">
- <summary>
- Gets the keys.
- </summary>
- <value>The keys.</value>
- </member>
- <member name="P:RestSharp.JsonObject.Values">
- <summary>
- Gets the values.
- </summary>
- <value>The values.</value>
- </member>
- <member name="P:RestSharp.JsonObject.Item(System.String)">
- <summary>
- Gets or sets the <see cref="T:System.Object"/> with the specified key.
- </summary>
- <value></value>
- </member>
- <member name="P:RestSharp.JsonObject.Count">
- <summary>
- Gets the count.
- </summary>
- <value>The count.</value>
- </member>
- <member name="P:RestSharp.JsonObject.IsReadOnly">
- <summary>
- Gets a value indicating whether this instance is read only.
- </summary>
- <value>
- <c>true</c> if this instance is read only; otherwise, <c>false</c>.
- </value>
- </member>
- <member name="T:RestSharp.SimpleJson">
- <summary>
- This class encodes and decodes JSON strings.
- Spec. details, see http://www.json.org/
-
- JSON uses Arrays and Objects. These correspond here to the datatypes JsonArray(IList<object>) and JsonObject(IDictionary<string,object>).
- All numbers are parsed to doubles.
- </summary>
- </member>
- <member name="M:RestSharp.SimpleJson.DeserializeObject(System.String)">
- <summary>
- Parses the string json into a value
- </summary>
- <param name="json">A JSON string.</param>
- <returns>An IList<object>, a IDictionary<string,object>, a double, a string, null, true, or false</returns>
- </member>
- <member name="M:RestSharp.SimpleJson.TryDeserializeObject(System.String,System.Object@)">
- <summary>
- Try parsing the json string into a value.
- </summary>
- <param name="json">
- A JSON string.
- </param>
- <param name="object">
- The object.
- </param>
- <returns>
- Returns true if successfull otherwise false.
- </returns>
- </member>
- <member name="M:RestSharp.SimpleJson.SerializeObject(System.Object,RestSharp.IJsonSerializerStrategy)">
- <summary>
- Converts a IDictionary<string,object> / IList<object> object into a JSON string
- </summary>
- <param name="json">A IDictionary<string,object> / IList<object></param>
- <param name="jsonSerializerStrategy">Serializer strategy to use</param>
- <returns>A JSON encoded string, or null if object 'json' is not serializable</returns>
- </member>
- <member name="M:RestSharp.SimpleJson.IsNumeric(System.Object)">
- <summary>
- Determines if a given object is numeric in any way
- (can be integer, double, null, etc).
- </summary>
- </member>
- <member name="T:RestSharp.Validation.Validate">
- <summary>
- Helper methods for validating values
- </summary>
- </member>
- <member name="M:RestSharp.Validation.Validate.IsBetween(System.Int32,System.Int32,System.Int32)">
- <summary>
- Validate an integer value is between the specified values (exclusive of min/max)
- </summary>
- <param name="value">Value to validate</param>
- <param name="min">Exclusive minimum value</param>
- <param name="max">Exclusive maximum value</param>
- </member>
- <member name="M:RestSharp.Validation.Validate.IsValidLength(System.String,System.Int32)">
- <summary>
- Validate a string length
- </summary>
- <param name="value">String to be validated</param>
- <param name="maxSize">Maximum length of the string</param>
- </member>
- <member name="T:RestSharp.Validation.Require">
- <summary>
- Helper methods for validating required values
- </summary>
- </member>
- <member name="M:RestSharp.Validation.Require.Argument(System.String,System.Object)">
- <summary>
- Require a parameter to not be null
- </summary>
- <param name="argumentName">Name of the parameter</param>
- <param name="argumentValue">Value of the parameter</param>
- </member>
- </members>
-</doc>
diff --git a/SendGrid/packages/RestSharp.104.1/lib/net4-client/RestSharp.dll b/SendGrid/packages/RestSharp.104.1/lib/net4-client/RestSharp.dll Binary files differdeleted file mode 100644 index c1da1b5..0000000 --- a/SendGrid/packages/RestSharp.104.1/lib/net4-client/RestSharp.dll +++ /dev/null diff --git a/SendGrid/packages/RestSharp.104.1/lib/net4-client/RestSharp.xml b/SendGrid/packages/RestSharp.104.1/lib/net4-client/RestSharp.xml deleted file mode 100644 index baed426..0000000 --- a/SendGrid/packages/RestSharp.104.1/lib/net4-client/RestSharp.xml +++ /dev/null @@ -1,2680 +0,0 @@ -<?xml version="1.0"?>
-<doc>
- <assembly>
- <name>RestSharp</name>
- </assembly>
- <members>
- <member name="T:RestSharp.NtlmAuthenticator">
- <summary>
- Tries to Authenticate with the credentials of the currently logged in user, or impersonate a user
- </summary>
- </member>
- <member name="M:RestSharp.NtlmAuthenticator.#ctor">
- <summary>
- Authenticate with the credentials of the currently logged in user
- </summary>
- </member>
- <member name="M:RestSharp.NtlmAuthenticator.#ctor(System.String,System.String)">
- <summary>
- Authenticate by impersonation
- </summary>
- <param name="username"></param>
- <param name="password"></param>
- </member>
- <member name="M:RestSharp.NtlmAuthenticator.#ctor(System.Net.ICredentials)">
- <summary>
- Authenticate by impersonation, using an existing <c>ICredentials</c> instance
- </summary>
- <param name="credentials"></param>
- </member>
- <member name="T:RestSharp.Authenticators.OAuth1Authenticator">
- <seealso href="http://tools.ietf.org/html/rfc5849"/>
- </member>
- <member name="T:RestSharp.OAuth2Authenticator">
- <summary>
- Base class for OAuth 2 Authenticators.
- </summary>
- <remarks>
- Since there are many ways to authenticate in OAuth2,
- this is used as a base class to differentiate between
- other authenticators.
-
- Any other OAuth2 authenticators must derive from this
- abstract class.
- </remarks>
- </member>
- <member name="F:RestSharp.OAuth2Authenticator._accessToken">
- <summary>
- Access token to be used when authenticating.
- </summary>
- </member>
- <member name="M:RestSharp.OAuth2Authenticator.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.OAuth2Authenticator"/> class.
- </summary>
- <param name="accessToken">
- The access token.
- </param>
- </member>
- <member name="P:RestSharp.OAuth2Authenticator.AccessToken">
- <summary>
- Gets the access token.
- </summary>
- </member>
- <member name="T:RestSharp.OAuth2UriQueryParameterAuthenticator">
- <summary>
- The OAuth 2 authenticator using URI query parameter.
- </summary>
- <remarks>
- Based on http://tools.ietf.org/html/draft-ietf-oauth-v2-10#section-5.1.2
- </remarks>
- </member>
- <member name="M:RestSharp.OAuth2UriQueryParameterAuthenticator.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.OAuth2UriQueryParameterAuthenticator"/> class.
- </summary>
- <param name="accessToken">
- The access token.
- </param>
- </member>
- <member name="T:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator">
- <summary>
- The OAuth 2 authenticator using the authorization request header field.
- </summary>
- <remarks>
- Based on http://tools.ietf.org/html/draft-ietf-oauth-v2-10#section-5.1.1
- </remarks>
- </member>
- <member name="F:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator._authorizationValue">
- <summary>
- Stores the Authoriztion header value as "OAuth accessToken". used for performance.
- </summary>
- </member>
- <member name="M:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator"/> class.
- </summary>
- <param name="accessToken">
- The access token.
- </param>
- </member>
- <member name="F:RestSharp.Authenticators.OAuth.OAuthTools._encoding">
- <summary>
- All text parameters are UTF-8 encoded (per section 5.1).
- </summary>
- <seealso cref="!:http://www.hueniverse.com/hueniverse/2008/10/beginners-gui-1.html"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetNonce">
- <summary>
- Generates a random 16-byte lowercase alphanumeric string.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#nonce"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetTimestamp">
- <summary>
- Generates a timestamp based on the current elapsed seconds since '01/01/1970 0000 GMT"
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#nonce"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetTimestamp(System.DateTime)">
- <summary>
- Generates a timestamp based on the elapsed seconds of a given time since '01/01/1970 0000 GMT"
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#nonce"/>
- <param name="dateTime">A specified point in time.</param>
- <returns></returns>
- </member>
- <member name="F:RestSharp.Authenticators.OAuth.OAuthTools.UriRfc3986CharsToEscape">
- <summary>
- The set of characters that are unreserved in RFC 2396 but are NOT unreserved in RFC 3986.
- </summary>
- <seealso cref="!:http://stackoverflow.com/questions/846487/how-to-get-uri-escapedatastring-to-comply-with-rfc-3986"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.UrlEncodeRelaxed(System.String)">
- <summary>
- URL encodes a string based on section 5.1 of the OAuth spec.
- Namely, percent encoding with [RFC3986], avoiding unreserved characters,
- upper-casing hexadecimal characters, and UTF-8 encoding for text value pairs.
- </summary>
- <param name="value">The value to escape.</param>
- <returns>The escaped value.</returns>
- <remarks>
- The <see cref="M:System.Uri.EscapeDataString(System.String)"/> method is <i>supposed</i> to take on
- RFC 3986 behavior if certain elements are present in a .config file. Even if this
- actually worked (which in my experiments it <i>doesn't</i>), we can't rely on every
- host actually having this configuration element present.
- </remarks>
- <seealso cref="!:http://oauth.net/core/1.0#encoding_parameters"/>
- <seealso cref="!:http://stackoverflow.com/questions/846487/how-to-get-uri-escapedatastring-to-comply-with-rfc-3986"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.UrlEncodeStrict(System.String)">
- <summary>
- URL encodes a string based on section 5.1 of the OAuth spec.
- Namely, percent encoding with [RFC3986], avoiding unreserved characters,
- upper-casing hexadecimal characters, and UTF-8 encoding for text value pairs.
- </summary>
- <param name="value"></param>
- <seealso cref="!:http://oauth.net/core/1.0#encoding_parameters"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.NormalizeRequestParameters(RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Sorts a collection of key-value pairs by name, and then value if equal,
- concatenating them into a single string. This string should be encoded
- prior to, or after normalization is run.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.1"/>
- <param name="parameters"></param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.SortParametersExcludingSignature(RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Sorts a <see cref="T:RestSharp.Authenticators.OAuth.WebParameterCollection"/> by name, and then value if equal.
- </summary>
- <param name="parameters">A collection of parameters to sort</param>
- <returns>A sorted parameter collection</returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.ConstructRequestUrl(System.Uri)">
- <summary>
- Creates a request URL suitable for making OAuth requests.
- Resulting URLs must exclude port 80 or port 443 when accompanied by HTTP and HTTPS, respectively.
- Resulting URLs must be lower case.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.2"/>
- <param name="url">The original request URL</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.ConcatenateRequestElements(System.String,System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Creates a request elements concatentation value to send with a request.
- This is also known as the signature base.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.3"/>
- <seealso cref="!:http://oauth.net/core/1.0#sig_base_example"/>
- <param name="method">The request's HTTP method type</param>
- <param name="url">The request URL</param>
- <param name="parameters">The request's parameters</param>
- <returns>A signature base string</returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret.
- This method is used when the token secret is currently unknown.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer key</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,RestSharp.Authenticators.OAuth.OAuthSignatureTreatment,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret.
- This method is used when the token secret is currently unknown.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureTreatment">The treatment to use on a signature value</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer key</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,System.String,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret and a known token secret.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer secret</param>
- <param name="tokenSecret">The token secret</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,RestSharp.Authenticators.OAuth.OAuthSignatureTreatment,System.String,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret and a known token secret.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureTreatment">The treatment to use on a signature value</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer secret</param>
- <param name="tokenSecret">The token secret</param>
- <returns></returns>
- </member>
- <member name="T:RestSharp.Authenticators.OAuth.OAuthWorkflow">
- <summary>
- A class to encapsulate OAuth authentication flow.
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- </summary>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildRequestTokenInfo(System.String)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of requesting an
- unauthorized request token.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildRequestTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of requesting an
- unauthorized request token.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildAccessTokenInfo(System.String)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of exchanging a request token
- for an access token authorized by the user at the Service Provider site.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildAccessTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of exchanging a request token
- for an access token authorized by the user at the Service Provider site.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- <param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildClientAuthAccessTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of exchanging user credentials
- for an access token authorized by the user at the Service Provider site.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://tools.ietf.org/html/draft-dehora-farrell-oauth-accesstoken-creds-00#section-4"/>
- <param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
- </member>
- <member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.RequestTokenUrl">
- <seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
- </member>
- <member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.AccessTokenUrl">
- <seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
- </member>
- <member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.AuthorizationUrl">
- <seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
- </member>
- <member name="T:RestSharp.Deserializers.DeserializeAsAttribute">
- <summary>
- Allows control how class and property names and values are deserialized by XmlAttributeDeserializer
- </summary>
- </member>
- <member name="P:RestSharp.Deserializers.DeserializeAsAttribute.Name">
- <summary>
- The name to use for the serialized element
- </summary>
- </member>
- <member name="P:RestSharp.Deserializers.DeserializeAsAttribute.Attribute">
- <summary>
- Sets if the property to Deserialize is an Attribute or Element (Default: false)
- </summary>
- </member>
- <member name="T:RestSharp.Deserializers.DotNetXmlDeserializer">
- <summary>
- Wrapper for System.Xml.Serialization.XmlSerializer.
- </summary>
- </member>
- <member name="T:RestSharp.ParameterType">
- <summary>
- Types of parameters that can be added to requests
- </summary>
- </member>
- <member name="T:RestSharp.DataFormat">
- <summary>
- Data formats
- </summary>
- </member>
- <member name="T:RestSharp.Method">
- <summary>
- HTTP method to use when making requests
- </summary>
- </member>
- <member name="T:RestSharp.DateFormat">
- <summary>
- Format strings for commonly-used date formats
- </summary>
- </member>
- <member name="F:RestSharp.DateFormat.Iso8601">
- <summary>
- .NET format string for ISO 8601 date format
- </summary>
- </member>
- <member name="F:RestSharp.DateFormat.RoundTrip">
- <summary>
- .NET format string for roundtrip date format
- </summary>
- </member>
- <member name="T:RestSharp.ResponseStatus">
- <summary>
- Status for responses (surprised?)
- </summary>
- </member>
- <member name="T:RestSharp.Extensions.MiscExtensions">
- <summary>
- Extension method overload!
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.SaveAs(System.Byte[],System.String)">
- <summary>
- Save a byte array to a file
- </summary>
- <param name="input">Bytes to save</param>
- <param name="path">Full path to save file to</param>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.ReadAsBytes(System.IO.Stream)">
- <summary>
- Read a stream into a byte array
- </summary>
- <param name="input">Stream to read</param>
- <returns>byte[]</returns>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.CopyTo(System.IO.Stream,System.IO.Stream)">
- <summary>
- Copies bytes from one stream to another
- </summary>
- <param name="input">The input stream.</param>
- <param name="output">The output stream.</param>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.AsString(System.Byte[])">
- <summary>
- Converts a byte array to a string, using its byte order mark to convert it to the right encoding.
- http://www.shrinkrays.net/code-snippets/csharp/an-extension-method-for-converting-a-byte-array-to-a-string.aspx
- </summary>
- <param name="buffer">An array of bytes to convert</param>
- <returns>The byte as a string.</returns>
- </member>
- <member name="M:RestSharp.Contrib.HttpUtility.HtmlDecode(System.String)">
- <summary>
- Decodes an HTML-encoded string and returns the decoded string.
- </summary>
- <param name="s">The HTML string to decode. </param>
- <returns>The decoded text.</returns>
- </member>
- <member name="M:RestSharp.Contrib.HttpUtility.HtmlDecode(System.String,System.IO.TextWriter)">
- <summary>
- Decodes an HTML-encoded string and sends the resulting output to a TextWriter output stream.
- </summary>
- <param name="s">The HTML string to decode</param>
- <param name="output">The TextWriter output stream containing the decoded string. </param>
- </member>
- <member name="M:RestSharp.Contrib.HttpUtility.HtmlEncode(System.String,System.IO.TextWriter)">
- <summary>
- HTML-encodes a string and sends the resulting output to a TextWriter output stream.
- </summary>
- <param name="s">The string to encode. </param>
- <param name="output">The TextWriter output stream containing the encoded string. </param>
- </member>
- <member name="T:RestSharp.Extensions.ReflectionExtensions">
- <summary>
- Reflection extensions
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.ReflectionExtensions.GetAttribute``1(System.Reflection.MemberInfo)">
- <summary>
- Retrieve an attribute from a member (property)
- </summary>
- <typeparam name="T">Type of attribute to retrieve</typeparam>
- <param name="prop">Member to retrieve attribute from</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.ReflectionExtensions.GetAttribute``1(System.Type)">
- <summary>
- Retrieve an attribute from a type
- </summary>
- <typeparam name="T">Type of attribute to retrieve</typeparam>
- <param name="type">Type to retrieve attribute from</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.ReflectionExtensions.IsSubclassOfRawGeneric(System.Type,System.Type)">
- <summary>
- Checks a type to see if it derives from a raw generic (e.g. List[[]])
- </summary>
- <param name="toCheck"></param>
- <param name="generic"></param>
- <returns></returns>
- </member>
- <!-- Badly formed XML comment ignored for member "M:RestSharp.Extensions.ReflectionExtensions.FindEnumValue(System.Type,System.String,System.Globalization.CultureInfo)" -->
- <member name="M:RestSharp.Extensions.StringExtensions.UrlEncode(System.String)">
- <summary>
- Uses Uri.EscapeDataString() based on recommendations on MSDN
- http://blogs.msdn.com/b/yangxind/archive/2006/11/09/don-t-use-net-system-uri-unescapedatastring-in-url-decoding.aspx
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.HasValue(System.String)">
- <summary>
- Check that a string is not null or empty
- </summary>
- <param name="input">String to check</param>
- <returns>bool</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.RemoveUnderscoresAndDashes(System.String)">
- <summary>
- Remove underscores from a string
- </summary>
- <param name="input">String to process</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ParseJsonDate(System.String,System.Globalization.CultureInfo)">
- <summary>
- Parses most common JSON date formats
- </summary>
- <param name="input">JSON value to parse</param>
- <returns>DateTime</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.RemoveSurroundingQuotes(System.String)">
- <summary>
- Remove leading and trailing " from a string
- </summary>
- <param name="input">String to parse</param>
- <returns>String</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.Matches(System.String,System.String)">
- <summary>
- Checks a string to see if it matches a regex
- </summary>
- <param name="input">String to check</param>
- <param name="pattern">Pattern to match</param>
- <returns>bool</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ToPascalCase(System.String,System.Globalization.CultureInfo)">
- <summary>
- Converts a string to pascal case
- </summary>
- <param name="lowercaseAndUnderscoredWord">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ToPascalCase(System.String,System.Boolean,System.Globalization.CultureInfo)">
- <summary>
- Converts a string to pascal case with the option to remove underscores
- </summary>
- <param name="text">String to convert</param>
- <param name="removeUnderscores">Option to remove underscores</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ToCamelCase(System.String,System.Globalization.CultureInfo)">
- <summary>
- Converts a string to camel case
- </summary>
- <param name="lowercaseAndUnderscoredWord">String to convert</param>
- <returns>String</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.MakeInitialLowerCase(System.String)">
- <summary>
- Convert the first letter of a string to lower case
- </summary>
- <param name="word">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.IsUpperCase(System.String)">
- <summary>
- Checks to see if a string is all uppper case
- </summary>
- <param name="inputString">String to check</param>
- <returns>bool</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.AddUnderscores(System.String)">
- <summary>
- Add underscores to a pascal-cased string
- </summary>
- <param name="pascalCasedWord">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.AddDashes(System.String)">
- <summary>
- Add dashes to a pascal-cased string
- </summary>
- <param name="pascalCasedWord">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.AddUnderscorePrefix(System.String)">
- <summary>
- Add an undescore prefix to a pascasl-cased string
- </summary>
- <param name="pascalCasedWord"></param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.GetNameVariants(System.String,System.Globalization.CultureInfo)">
- <summary>
- Return possible variants of a name for name matching.
- </summary>
- <param name="name">String to convert</param>
- <param name="culture">The culture to use for conversion</param>
- <returns>IEnumerable<string></returns>
- </member>
- <member name="T:RestSharp.Extensions.XmlExtensions">
- <summary>
- XML Extension Methods
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.XmlExtensions.AsNamespaced(System.String,System.String)">
- <summary>
- Returns the name of an element with the namespace if specified
- </summary>
- <param name="name">Element name</param>
- <param name="namespace">XML Namespace</param>
- <returns></returns>
- </member>
- <member name="T:RestSharp.FileParameter">
- <summary>
- Container for files to be uploaded with requests
- </summary>
- </member>
- <member name="M:RestSharp.FileParameter.Create(System.String,System.Byte[],System.String,System.String)">
- <summary>
- Creates a file parameter from an array of bytes.
- </summary>
- <param name="name">The parameter name to use in the request.</param>
- <param name="data">The data to use as the file's contents.</param>
- <param name="filename">The filename to use in the request.</param>
- <param name="contentType">The content type to use in the request.</param>
- <returns>The <see cref="T:RestSharp.FileParameter"/></returns>
- </member>
- <member name="M:RestSharp.FileParameter.Create(System.String,System.Byte[],System.String)">
- <summary>
- Creates a file parameter from an array of bytes.
- </summary>
- <param name="name">The parameter name to use in the request.</param>
- <param name="data">The data to use as the file's contents.</param>
- <param name="filename">The filename to use in the request.</param>
- <returns>The <see cref="T:RestSharp.FileParameter"/> using the default content type.</returns>
- </member>
- <member name="P:RestSharp.FileParameter.ContentLength">
- <summary>
- The length of data to be sent
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.Writer">
- <summary>
- Provides raw data for file
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.FileName">
- <summary>
- Name of the file to use when uploading
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.ContentType">
- <summary>
- MIME content type of file
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.Http">
- <summary>
- HttpWebRequest wrapper (async methods)
- </summary>
- <summary>
- HttpWebRequest wrapper
- </summary>
- <summary>
- HttpWebRequest wrapper (sync methods)
- </summary>
- </member>
- <member name="M:RestSharp.Http.AsPostAsync(System.Action{RestSharp.HttpResponse},System.String)">
- <summary>
- Execute an async POST-style request with the specified HTTP Method.
- </summary>
- <param name="httpMethod">The HTTP method to execute.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Http.AsGetAsync(System.Action{RestSharp.HttpResponse},System.String)">
- <summary>
- Execute an async GET-style request with the specified HTTP Method.
- </summary>
- <param name="httpMethod">The HTTP method to execute.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Http.Create">
- <summary>
- Creates an IHttp
- </summary>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Http.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="M:RestSharp.Http.Post">
- <summary>
- Execute a POST request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Put">
- <summary>
- Execute a PUT request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Get">
- <summary>
- Execute a GET request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Head">
- <summary>
- Execute a HEAD request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Options">
- <summary>
- Execute an OPTIONS request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Delete">
- <summary>
- Execute a DELETE request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Patch">
- <summary>
- Execute a PATCH request
- </summary>
- </member>
- <member name="M:RestSharp.Http.AsGet(System.String)">
- <summary>
- Execute a GET-style request with the specified HTTP Method.
- </summary>
- <param name="httpMethod">The HTTP method to execute.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Http.AsPost(System.String)">
- <summary>
- Execute a POST-style request with the specified HTTP Method.
- </summary>
- <param name="httpMethod">The HTTP method to execute.</param>
- <returns></returns>
- </member>
- <member name="P:RestSharp.Http.HasParameters">
- <summary>
- True if this HTTP request has any HTTP parameters
- </summary>
- </member>
- <member name="P:RestSharp.Http.HasCookies">
- <summary>
- True if this HTTP request has any HTTP cookies
- </summary>
- </member>
- <member name="P:RestSharp.Http.HasBody">
- <summary>
- True if a request body has been specified
- </summary>
- </member>
- <member name="P:RestSharp.Http.HasFiles">
- <summary>
- True if files have been set to be uploaded
- </summary>
- </member>
- <member name="P:RestSharp.Http.UserAgent">
- <summary>
- UserAgent to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Timeout">
- <summary>
- Timeout in milliseconds to be used for the request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Credentials">
- <summary>
- System.Net.ICredentials to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.CookieContainer">
- <summary>
- The System.Net.CookieContainer to be used for the request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Files">
- <summary>
- Collection of files to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.FollowRedirects">
- <summary>
- Whether or not HTTP 3xx response redirects should be automatically followed
- </summary>
- </member>
- <member name="P:RestSharp.Http.ClientCertificates">
- <summary>
- X509CertificateCollection to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.MaxRedirects">
- <summary>
- Maximum number of automatic redirects to follow if FollowRedirects is true
- </summary>
- </member>
- <member name="P:RestSharp.Http.Headers">
- <summary>
- HTTP headers to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Parameters">
- <summary>
- HTTP parameters (QueryString or Form values) to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Cookies">
- <summary>
- HTTP cookies to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.RequestBody">
- <summary>
- Request body to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.RequestContentType">
- <summary>
- Content type of the request body.
- </summary>
- </member>
- <member name="P:RestSharp.Http.Url">
- <summary>
- URL to call for this request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Proxy">
- <summary>
- Proxy info to be sent with request
- </summary>
- </member>
- <member name="T:RestSharp.HttpCookie">
- <summary>
- Representation of an HTTP cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Comment">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.CommentUri">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Discard">
- <summary>
- Indicates whether the cookie should be discarded at the end of the session
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Domain">
- <summary>
- Domain of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Expired">
- <summary>
- Indicates whether the cookie is expired
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Expires">
- <summary>
- Date and time that the cookie expires
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.HttpOnly">
- <summary>
- Indicates that this cookie should only be accessed by the server
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Name">
- <summary>
- Name of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Path">
- <summary>
- Path of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Port">
- <summary>
- Port of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Secure">
- <summary>
- Indicates that the cookie should only be sent over secure channels
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.TimeStamp">
- <summary>
- Date and time the cookie was created
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Value">
- <summary>
- Value of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Version">
- <summary>
- Version of the cookie
- </summary>
- </member>
- <member name="T:RestSharp.HttpFile">
- <summary>
- Container for HTTP file
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.ContentLength">
- <summary>
- The length of data to be sent
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.Writer">
- <summary>
- Provides raw data for file
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.FileName">
- <summary>
- Name of the file to use when uploading
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.ContentType">
- <summary>
- MIME content type of file
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.HttpHeader">
- <summary>
- Representation of an HTTP header
- </summary>
- </member>
- <member name="P:RestSharp.HttpHeader.Name">
- <summary>
- Name of the header
- </summary>
- </member>
- <member name="P:RestSharp.HttpHeader.Value">
- <summary>
- Value of the header
- </summary>
- </member>
- <member name="T:RestSharp.HttpParameter">
- <summary>
- Representation of an HTTP parameter (QueryString or Form value)
- </summary>
- </member>
- <member name="P:RestSharp.HttpParameter.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="P:RestSharp.HttpParameter.Value">
- <summary>
- Value of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.HttpResponse">
- <summary>
- HTTP response data
- </summary>
- </member>
- <member name="T:RestSharp.IHttpResponse">
- <summary>
- HTTP response data
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Content">
- <summary>
- String representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ErrorException">
- <summary>
- Exception thrown when error is encountered.
- </summary>
- </member>
- <member name="M:RestSharp.HttpResponse.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Content">
- <summary>
- Lazy-loaded string representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ErrorException">
- <summary>
- Exception thrown when error is encountered.
- </summary>
- </member>
- <member name="T:RestSharp.IRestClient">
- <summary>
-
- </summary>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsync(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle})">
- <summary>
-
- </summary>
- <param name="request"></param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsync``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle})">
- <summary>
-
- </summary>
- <param name="request"></param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncGet(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncPost(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a POST-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncGet``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncPost``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="P:RestSharp.IRestClient.CookieContainer">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.UserAgent">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.Timeout">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.UseSynchronizationContext">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.Authenticator">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.BaseUrl">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.DefaultParameters">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.ClientCertificates">
- <summary>
- X509CertificateCollection to be sent with request
- </summary>
- </member>
- <member name="M:RestSharp.IRestRequest.AddFile(System.String,System.String)">
- <summary>
- Adds a file to the Files collection to be included with a POST or PUT request
- (other methods do not support file uploads).
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="path">Full path to file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddFile(System.String,System.Byte[],System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="bytes">The file data</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddFile(System.String,System.Byte[],System.String,System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name and content type
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="bytes">The file data</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <param name="contentType">The MIME type of the file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddBody(System.Object,System.String)">
- <summary>
- Serializes obj to format specified by RequestFormat, but passes xmlNamespace if using the default XmlSerializer
- </summary>
- <param name="obj">The object to serialize</param>
- <param name="xmlNamespace">The XML namespace to use when serializing</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddBody(System.Object)">
- <summary>
- Serializes obj to data format specified by RequestFormat and adds it to the request body.
- </summary>
- <param name="obj">The object to serialize</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddObject(System.Object,System.String[])">
- <summary>
- Calls AddParameter() for all public, readable properties specified in the white list
- </summary>
- <example>
- request.AddObject(product, "ProductId", "Price", ...);
- </example>
- <param name="obj">The object with properties to add as parameters</param>
- <param name="whitelist">The names of the properties to include</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddObject(System.Object)">
- <summary>
- Calls AddParameter() for all public, readable properties of obj
- </summary>
- <param name="obj">The object with properties to add as parameters</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddParameter(RestSharp.Parameter)">
- <summary>
- Add the parameter to the request
- </summary>
- <param name="p">Parameter to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddParameter(System.String,System.Object)">
- <summary>
- Adds a HTTP parameter to the request (QueryString for GET, DELETE, OPTIONS and HEAD; Encoded form for POST and PUT)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddParameter(System.String,System.Object,RestSharp.ParameterType)">
- <summary>
- Adds a parameter to the request. There are five types of parameters:
- - GetOrPost: Either a QueryString value or encoded form value based on method
- - HttpHeader: Adds the name/value pair to the HTTP request's Headers collection
- - UrlSegment: Inserted into URL if there is a matching url token e.g. {AccountId}
- - Cookie: Adds the name/value pair to the HTTP request's Cookies collection
- - RequestBody: Used by AddBody() (not recommended to use directly)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <param name="type">The type of parameter to add</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddHeader(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, HttpHeader) overload
- </summary>
- <param name="name">Name of the header to add</param>
- <param name="value">Value of the header to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddCookie(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, Cookie) overload
- </summary>
- <param name="name">Name of the cookie to add</param>
- <param name="value">Value of the cookie to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddUrlSegment(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, UrlSegment) overload
- </summary>
- <param name="name">Name of the segment to add</param>
- <param name="value">Value of the segment to add</param>
- <returns></returns>
- </member>
- <member name="P:RestSharp.IRestRequest.JsonSerializer">
- <summary>
- Serializer to use when writing JSON request bodies. Used if RequestFormat is Json.
- By default the included JsonSerializer is used (currently using JSON.NET default serialization).
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.XmlSerializer">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default the included XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Parameters">
- <summary>
- Container of all HTTP parameters to be passed with the request.
- See AddParameter() for explanation of the types of parameters that can be passed
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Files">
- <summary>
- Container of all the files to be uploaded with the request.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Method">
- <summary>
- Determines what HTTP method to use for this request. Supported methods: GET, POST, PUT, DELETE, HEAD, OPTIONS
- Default is GET
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Resource">
- <summary>
- The Resource URL to make the request against.
- Tokens are substituted with UrlSegment parameters and match by name.
- Should not include the scheme or domain. Do not include leading slash.
- Combined with RestClient.BaseUrl to assemble final URL:
- {BaseUrl}/{Resource} (BaseUrl is scheme + domain, e.g. http://example.com)
- </summary>
- <example>
- // example for url token replacement
- request.Resource = "Products/{ProductId}";
- request.AddParameter("ProductId", 123, ParameterType.UrlSegment);
- </example>
- </member>
- <member name="P:RestSharp.IRestRequest.RequestFormat">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.RootElement">
- <summary>
- Used by the default deserializers to determine where to start deserializing from.
- Can be used to skip container or root elements that do not have corresponding deserialzation targets.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.DateFormat">
- <summary>
- Used by the default deserializers to explicitly set which date format string to use when parsing dates.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.XmlNamespace">
- <summary>
- Used by XmlDeserializer. If not specified, XmlDeserializer will flatten response by removing namespaces from element names.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Credentials">
- <summary>
- In general you would not need to set this directly. Used by the NtlmAuthenticator.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Timeout">
- <summary>
- Timeout in milliseconds to be used for the request. This timeout value overrides a timeout set on the RestClient.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Attempts">
- <summary>
- How many attempts were made to send this Request?
- </summary>
- <remarks>
- This Number is incremented each time the RestClient sends the request.
- Useful when using Asynchronous Execution with Callbacks
- </remarks>
- </member>
- <member name="T:RestSharp.IRestResponse">
- <summary>
- Container for data sent back from API
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Request">
- <summary>
- The RestRequest that was made to get this RestResponse
- </summary>
- <remarks>
- Mainly for debugging if ResponseStatus is not OK
- </remarks>
- </member>
- <member name="P:RestSharp.IRestResponse.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Content">
- <summary>
- String representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ErrorException">
- <summary>
- The exception thrown during the request, if any
- </summary>
- </member>
- <member name="T:RestSharp.IRestResponse`1">
- <summary>
- Container for data sent back from API including deserialized data
- </summary>
- <typeparam name="T">Type of data to deserialize to</typeparam>
- </member>
- <member name="P:RestSharp.IRestResponse`1.Data">
- <summary>
- Deserialized entity data
- </summary>
- </member>
- <member name="T:RestSharp.Parameter">
- <summary>
- Parameter container for REST requests
- </summary>
- </member>
- <member name="M:RestSharp.Parameter.ToString">
- <summary>
- Return a human-readable representation of this parameter
- </summary>
- <returns>String</returns>
- </member>
- <member name="P:RestSharp.Parameter.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="P:RestSharp.Parameter.Value">
- <summary>
- Value of the parameter
- </summary>
- </member>
- <member name="P:RestSharp.Parameter.Type">
- <summary>
- Type of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.RestClient">
- <summary>
- Client to translate RestRequests into Http requests and process response result
- </summary>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsync(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncGet(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncPost(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a POST-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsync``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncGet``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncPost``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a POST-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.#ctor">
- <summary>
- Default constructor that registers default content handlers
- </summary>
- </member>
- <member name="M:RestSharp.RestClient.#ctor(System.String)">
- <summary>
- Sets the BaseUrl property for requests made by this client instance
- </summary>
- <param name="baseUrl"></param>
- </member>
- <member name="M:RestSharp.RestClient.AddHandler(System.String,RestSharp.Deserializers.IDeserializer)">
- <summary>
- Registers a content handler to process response content
- </summary>
- <param name="contentType">MIME content type of the response content</param>
- <param name="deserializer">Deserializer to use to process content</param>
- </member>
- <member name="M:RestSharp.RestClient.RemoveHandler(System.String)">
- <summary>
- Remove a content handler for the specified MIME content type
- </summary>
- <param name="contentType">MIME content type to remove</param>
- </member>
- <member name="M:RestSharp.RestClient.ClearHandlers">
- <summary>
- Remove all content handlers
- </summary>
- </member>
- <member name="M:RestSharp.RestClient.GetHandler(System.String)">
- <summary>
- Retrieve the handler for the specified MIME content type
- </summary>
- <param name="contentType">MIME content type to retrieve</param>
- <returns>IDeserializer instance</returns>
- </member>
- <member name="M:RestSharp.RestClient.BuildUri(RestSharp.IRestRequest)">
- <summary>
- Assembles URL to call based on parameters, method and resource
- </summary>
- <param name="request">RestRequest to execute</param>
- <returns>Assembled System.Uri</returns>
- </member>
- <member name="M:RestSharp.RestClient.DownloadData(RestSharp.IRestRequest)">
- <summary>
- Executes the specified request and downloads the response data
- </summary>
- <param name="request">Request to execute</param>
- <returns>Response data</returns>
- </member>
- <member name="M:RestSharp.RestClient.Execute(RestSharp.IRestRequest)">
- <summary>
- Executes the request and returns a response, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <returns>RestResponse</returns>
- </member>
- <member name="M:RestSharp.RestClient.Execute``1(RestSharp.IRestRequest)">
- <summary>
- Executes the specified request and deserializes the response content using the appropriate content handler
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to execute</param>
- <returns>RestResponse[[T]] with deserialized data in Data property</returns>
- </member>
- <member name="P:RestSharp.RestClient.DefaultParameters">
- <summary>
- Parameters included with every request made with this instance of RestClient
- If specified in both client and request, the request wins
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.MaxRedirects">
- <summary>
- Maximum number of redirects to follow if FollowRedirects is true
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.ClientCertificates">
- <summary>
- X509CertificateCollection to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.FollowRedirects">
- <summary>
- Default is true. Determine whether or not requests that result in
- HTTP status codes of 3xx should follow returned redirect
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.CookieContainer">
- <summary>
- The CookieContainer used for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.UserAgent">
- <summary>
- UserAgent to use for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.Timeout">
- <summary>
- Timeout in milliseconds to use for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.UseSynchronizationContext">
- <summary>
- Whether to invoke async callbacks using the SynchronizationContext.Current captured when invoked
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.Authenticator">
- <summary>
- Authenticator to use for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.BaseUrl">
- <summary>
- Combined with Request.Resource to construct URL for request
- Should include scheme and domain without trailing slash.
- </summary>
- <example>
- client.BaseUrl = "http://example.com";
- </example>
- </member>
- <member name="P:RestSharp.RestClient.Proxy">
- <summary>
- Proxy to use for requests made by this client instance.
- Passed on to underying WebRequest if set.
- </summary>
- </member>
- <member name="M:RestSharp.RestClientExtensions.ExecuteAsync(RestSharp.IRestClient,RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <param name="client">The IRestClient this method extends</param>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- </member>
- <member name="M:RestSharp.RestClientExtensions.ExecuteAsync``1(RestSharp.IRestClient,RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0}})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <param name="client">The IRestClient this method extends</param>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle</param>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultParameter(RestSharp.IRestClient,RestSharp.Parameter)">
- <summary>
- Add a parameter to use on every request made with this client instance
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="p">Parameter to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultParameter(RestSharp.IRestClient,System.String,System.Object)">
- <summary>
- Adds a HTTP parameter (QueryString for GET, DELETE, OPTIONS and HEAD; Encoded form for POST and PUT)
- Used on every request made by this client instance
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultParameter(RestSharp.IRestClient,System.String,System.Object,RestSharp.ParameterType)">
- <summary>
- Adds a parameter to the request. There are four types of parameters:
- - GetOrPost: Either a QueryString value or encoded form value based on method
- - HttpHeader: Adds the name/value pair to the HTTP request's Headers collection
- - UrlSegment: Inserted into URL if there is a matching url token e.g. {AccountId}
- - RequestBody: Used by AddBody() (not recommended to use directly)
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <param name="type">The type of parameter to add</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultHeader(RestSharp.IRestClient,System.String,System.String)">
- <summary>
- Shortcut to AddDefaultParameter(name, value, HttpHeader) overload
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the header to add</param>
- <param name="value">Value of the header to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultUrlSegment(RestSharp.IRestClient,System.String,System.String)">
- <summary>
- Shortcut to AddDefaultParameter(name, value, UrlSegment) overload
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the segment to add</param>
- <param name="value">Value of the segment to add</param>
- <returns></returns>
- </member>
- <member name="T:RestSharp.RestRequest">
- <summary>
- Container for data used to make requests
- </summary>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(RestSharp.Method)">
- <summary>
- Sets Method property to value of method
- </summary>
- <param name="method">Method to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.String)">
- <summary>
- Sets Resource property
- </summary>
- <param name="resource">Resource to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.String,RestSharp.Method)">
- <summary>
- Sets Resource and Method properties
- </summary>
- <param name="resource">Resource to use for this request</param>
- <param name="method">Method to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.Uri)">
- <summary>
- Sets Resource property
- </summary>
- <param name="resource">Resource to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.Uri,RestSharp.Method)">
- <summary>
- Sets Resource and Method properties
- </summary>
- <param name="resource">Resource to use for this request</param>
- <param name="method">Method to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.String)">
- <summary>
- Adds a file to the Files collection to be included with a POST or PUT request
- (other methods do not support file uploads).
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="path">Full path to file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Byte[],System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="bytes">The file data</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Byte[],System.String,System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name and content type
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="bytes">The file data</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <param name="contentType">The MIME type of the file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Action{System.IO.Stream},System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name and content type
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="writer">A function that writes directly to the stream. Should NOT close the stream.</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Action{System.IO.Stream},System.String,System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name and content type
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="writer">A function that writes directly to the stream. Should NOT close the stream.</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <param name="contentType">The MIME type of the file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddBody(System.Object,System.String)">
- <summary>
- Serializes obj to format specified by RequestFormat, but passes xmlNamespace if using the default XmlSerializer
- </summary>
- <param name="obj">The object to serialize</param>
- <param name="xmlNamespace">The XML namespace to use when serializing</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddBody(System.Object)">
- <summary>
- Serializes obj to data format specified by RequestFormat and adds it to the request body.
- </summary>
- <param name="obj">The object to serialize</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddObject(System.Object,System.String[])">
- <summary>
- Calls AddParameter() for all public, readable properties specified in the white list
- </summary>
- <example>
- request.AddObject(product, "ProductId", "Price", ...);
- </example>
- <param name="obj">The object with properties to add as parameters</param>
- <param name="whitelist">The names of the properties to include</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddObject(System.Object)">
- <summary>
- Calls AddParameter() for all public, readable properties of obj
- </summary>
- <param name="obj">The object with properties to add as parameters</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddParameter(RestSharp.Parameter)">
- <summary>
- Add the parameter to the request
- </summary>
- <param name="p">Parameter to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddParameter(System.String,System.Object)">
- <summary>
- Adds a HTTP parameter to the request (QueryString for GET, DELETE, OPTIONS and HEAD; Encoded form for POST and PUT)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddParameter(System.String,System.Object,RestSharp.ParameterType)">
- <summary>
- Adds a parameter to the request. There are four types of parameters:
- - GetOrPost: Either a QueryString value or encoded form value based on method
- - HttpHeader: Adds the name/value pair to the HTTP request's Headers collection
- - UrlSegment: Inserted into URL if there is a matching url token e.g. {AccountId}
- - RequestBody: Used by AddBody() (not recommended to use directly)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <param name="type">The type of parameter to add</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddHeader(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, HttpHeader) overload
- </summary>
- <param name="name">Name of the header to add</param>
- <param name="value">Value of the header to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddCookie(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, Cookie) overload
- </summary>
- <param name="name">Name of the cookie to add</param>
- <param name="value">Value of the cookie to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddUrlSegment(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, UrlSegment) overload
- </summary>
- <param name="name">Name of the segment to add</param>
- <param name="value">Value of the segment to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.IncreaseNumAttempts">
- <summary>
- Internal Method so that RestClient can increase the number of attempts
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.JsonSerializer">
- <summary>
- Serializer to use when writing JSON request bodies. Used if RequestFormat is Json.
- By default the included JsonSerializer is used (currently using JSON.NET default serialization).
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.XmlSerializer">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default the included XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Parameters">
- <summary>
- Container of all HTTP parameters to be passed with the request.
- See AddParameter() for explanation of the types of parameters that can be passed
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Files">
- <summary>
- Container of all the files to be uploaded with the request.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Method">
- <summary>
- Determines what HTTP method to use for this request. Supported methods: GET, POST, PUT, DELETE, HEAD, OPTIONS
- Default is GET
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Resource">
- <summary>
- The Resource URL to make the request against.
- Tokens are substituted with UrlSegment parameters and match by name.
- Should not include the scheme or domain. Do not include leading slash.
- Combined with RestClient.BaseUrl to assemble final URL:
- {BaseUrl}/{Resource} (BaseUrl is scheme + domain, e.g. http://example.com)
- </summary>
- <example>
- // example for url token replacement
- request.Resource = "Products/{ProductId}";
- request.AddParameter("ProductId", 123, ParameterType.UrlSegment);
- </example>
- </member>
- <member name="P:RestSharp.RestRequest.RequestFormat">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.RootElement">
- <summary>
- Used by the default deserializers to determine where to start deserializing from.
- Can be used to skip container or root elements that do not have corresponding deserialzation targets.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.OnBeforeDeserialization">
- <summary>
- A function to run prior to deserializing starting (e.g. change settings if error encountered)
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.DateFormat">
- <summary>
- Used by the default deserializers to explicitly set which date format string to use when parsing dates.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.XmlNamespace">
- <summary>
- Used by XmlDeserializer. If not specified, XmlDeserializer will flatten response by removing namespaces from element names.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Credentials">
- <summary>
- In general you would not need to set this directly. Used by the NtlmAuthenticator.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.UserState">
- <summary>
- Gets or sets a user-defined state object that contains information about a request and which can be later
- retrieved when the request completes.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Timeout">
- <summary>
- Timeout in milliseconds to be used for the request. This timeout value overrides a timeout set on the RestClient.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Attempts">
- <summary>
- How many attempts were made to send this Request?
- </summary>
- <remarks>
- This Number is incremented each time the RestClient sends the request.
- Useful when using Asynchronous Execution with Callbacks
- </remarks>
- </member>
- <member name="T:RestSharp.RestResponseBase">
- <summary>
- Base class for common properties shared by RestResponse and RestResponse[[T]]
- </summary>
- </member>
- <member name="M:RestSharp.RestResponseBase.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Request">
- <summary>
- The RestRequest that was made to get this RestResponse
- </summary>
- <remarks>
- Mainly for debugging if ResponseStatus is not OK
- </remarks>
- </member>
- <member name="P:RestSharp.RestResponseBase.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Content">
- <summary>
- String representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ErrorException">
- <summary>
- The exception thrown during the request, if any
- </summary>
- </member>
- <member name="T:RestSharp.RestResponse`1">
- <summary>
- Container for data sent back from API including deserialized data
- </summary>
- <typeparam name="T">Type of data to deserialize to</typeparam>
- </member>
- <member name="P:RestSharp.RestResponse`1.Data">
- <summary>
- Deserialized entity data
- </summary>
- </member>
- <member name="T:RestSharp.RestResponse">
- <summary>
- Container for data sent back from API
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Comment">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.CommentUri">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Discard">
- <summary>
- Indicates whether the cookie should be discarded at the end of the session
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Domain">
- <summary>
- Domain of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Expired">
- <summary>
- Indicates whether the cookie is expired
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Expires">
- <summary>
- Date and time that the cookie expires
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.HttpOnly">
- <summary>
- Indicates that this cookie should only be accessed by the server
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Name">
- <summary>
- Name of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Path">
- <summary>
- Path of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Port">
- <summary>
- Port of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Secure">
- <summary>
- Indicates that the cookie should only be sent over secure channels
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.TimeStamp">
- <summary>
- Date and time the cookie was created
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Value">
- <summary>
- Value of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Version">
- <summary>
- Version of the cookie
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.DotNetXmlSerializer">
- <summary>
- Wrapper for System.Xml.Serialization.XmlSerializer.
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.DotNetXmlSerializer.#ctor">
- <summary>
- Default constructor, does not specify namespace
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.DotNetXmlSerializer.#ctor(System.String)">
- <summary>
- Specify the namespaced to be used when serializing
- </summary>
- <param name="namespace">XML namespace</param>
- </member>
- <member name="M:RestSharp.Serializers.DotNetXmlSerializer.Serialize(System.Object)">
- <summary>
- Serialize the object as XML
- </summary>
- <param name="obj">Object to serialize</param>
- <returns>XML as string</returns>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.RootElement">
- <summary>
- Name of the root element to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.Namespace">
- <summary>
- XML namespace to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.DateFormat">
- <summary>
- Format string to use when serializing dates
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.ContentType">
- <summary>
- Content type for serialized content
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.Encoding">
- <summary>
- Encoding for serialized content
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.DotNetXmlSerializer.EncodingStringWriter">
- <summary>
- Need to subclass StringWriter in order to override Encoding
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.JsonSerializer">
- <summary>
- Default JSON serializer for request bodies
- Doesn't currently use the SerializeAs attribute, defers to Newtonsoft's attributes
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.JsonSerializer.#ctor">
- <summary>
- Default serializer
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.JsonSerializer.Serialize(System.Object)">
- <summary>
- Serialize the object as JSON
- </summary>
- <param name="obj">Object to serialize</param>
- <returns>JSON as String</returns>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.DateFormat">
- <summary>
- Unused for JSON Serialization
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.RootElement">
- <summary>
- Unused for JSON Serialization
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.Namespace">
- <summary>
- Unused for JSON Serialization
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.ContentType">
- <summary>
- Content type for serialized content
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.SerializeAsAttribute">
- <summary>
- Allows control how class and property names and values are serialized by XmlSerializer
- Currently not supported with the JsonSerializer
- When specified at the property level the class-level specification is overridden
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.SerializeAsAttribute.TransformName(System.String)">
- <summary>
- Called by the attribute when NameStyle is speficied
- </summary>
- <param name="input">The string to transform</param>
- <returns>String</returns>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Name">
- <summary>
- The name to use for the serialized element
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Attribute">
- <summary>
- Sets the value to be serialized as an Attribute instead of an Element
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Culture">
- <summary>
- The culture to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.NameStyle">
- <summary>
- Transforms the casing of the name based on the selected value.
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Index">
- <summary>
- The order to serialize the element. Default is int.MaxValue.
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.NameStyle">
- <summary>
- Options for transforming casing of element names
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.XmlSerializer">
- <summary>
- Default XML Serializer
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.XmlSerializer.#ctor">
- <summary>
- Default constructor, does not specify namespace
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.XmlSerializer.#ctor(System.String)">
- <summary>
- Specify the namespaced to be used when serializing
- </summary>
- <param name="namespace">XML namespace</param>
- </member>
- <member name="M:RestSharp.Serializers.XmlSerializer.Serialize(System.Object)">
- <summary>
- Serialize the object as XML
- </summary>
- <param name="obj">Object to serialize</param>
- <returns>XML as string</returns>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.RootElement">
- <summary>
- Name of the root element to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.Namespace">
- <summary>
- XML namespace to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.DateFormat">
- <summary>
- Format string to use when serializing dates
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.ContentType">
- <summary>
- Content type for serialized content
- </summary>
- </member>
- <member name="T:RestSharp.JsonArray">
- <summary>
- Represents the json array.
- </summary>
- </member>
- <member name="M:RestSharp.JsonArray.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.JsonArray"/> class.
- </summary>
- </member>
- <member name="M:RestSharp.JsonArray.#ctor(System.Int32)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.JsonArray"/> class.
- </summary>
- <param name="capacity">The capacity of the json array.</param>
- </member>
- <member name="M:RestSharp.JsonArray.ToString">
- <summary>
- The json representation of the array.
- </summary>
- <returns>The json representation of the array.</returns>
- </member>
- <member name="T:RestSharp.JsonObject">
- <summary>
- Represents the json object.
- </summary>
- </member>
- <member name="F:RestSharp.JsonObject._members">
- <summary>
- The internal member dictionary.
- </summary>
- </member>
- <member name="M:RestSharp.JsonObject.Add(System.String,System.Object)">
- <summary>
- Adds the specified key.
- </summary>
- <param name="key">The key.</param>
- <param name="value">The value.</param>
- </member>
- <member name="M:RestSharp.JsonObject.ContainsKey(System.String)">
- <summary>
- Determines whether the specified key contains key.
- </summary>
- <param name="key">The key.</param>
- <returns>
- <c>true</c> if the specified key contains key; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.Remove(System.String)">
- <summary>
- Removes the specified key.
- </summary>
- <param name="key">The key.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.TryGetValue(System.String,System.Object@)">
- <summary>
- Tries the get value.
- </summary>
- <param name="key">The key.</param>
- <param name="value">The value.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.Add(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
- <summary>
- Adds the specified item.
- </summary>
- <param name="item">The item.</param>
- </member>
- <member name="M:RestSharp.JsonObject.Clear">
- <summary>
- Clears this instance.
- </summary>
- </member>
- <member name="M:RestSharp.JsonObject.Contains(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
- <summary>
- Determines whether [contains] [the specified item].
- </summary>
- <param name="item">The item.</param>
- <returns>
- <c>true</c> if [contains] [the specified item]; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Object}[],System.Int32)">
- <summary>
- Copies to.
- </summary>
- <param name="array">The array.</param>
- <param name="arrayIndex">Index of the array.</param>
- </member>
- <member name="M:RestSharp.JsonObject.Remove(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
- <summary>
- Removes the specified item.
- </summary>
- <param name="item">The item.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.GetEnumerator">
- <summary>
- Gets the enumerator.
- </summary>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.System#Collections#IEnumerable#GetEnumerator">
- <summary>
- Returns an enumerator that iterates through a collection.
- </summary>
- <returns>
- An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.ToString">
- <summary>
- Returns a json <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
- </summary>
- <returns>
- A json <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.TryConvert(System.Dynamic.ConvertBinder,System.Object@)">
- <summary>
- Provides implementation for type conversion operations. Classes derived from the <see cref="T:System.Dynamic.DynamicObject"/> class can override this method to specify dynamic behavior for operations that convert an object from one type to another.
- </summary>
- <param name="binder">Provides information about the conversion operation. The binder.Type property provides the type to which the object must be converted. For example, for the statement (String)sampleObject in C# (CType(sampleObject, Type) in Visual Basic), where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject"/> class, binder.Type returns the <see cref="T:System.String"/> type. The binder.Explicit property provides information about the kind of conversion that occurs. It returns true for explicit conversion and false for implicit conversion.</param>
- <param name="result">The result of the type conversion operation.</param>
- <returns>
- Alwasy returns true.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.TryDeleteMember(System.Dynamic.DeleteMemberBinder)">
- <summary>
- Provides the implementation for operations that delete an object member. This method is not intended for use in C# or Visual Basic.
- </summary>
- <param name="binder">Provides information about the deletion.</param>
- <returns>
- Alwasy returns true.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.TryGetIndex(System.Dynamic.GetIndexBinder,System.Object[],System.Object@)">
- <summary>
- Provides the implementation for operations that get a value by index. Classes derived from the <see cref="T:System.Dynamic.DynamicObject"/> class can override this method to specify dynamic behavior for indexing operations.
- </summary>
- <param name="binder">Provides information about the operation.</param>
- <param name="indexes">The indexes that are used in the operation. For example, for the sampleObject[3] operation in C# (sampleObject(3) in Visual Basic), where sampleObject is derived from the DynamicObject class, <paramref name="indexes"/> is equal to 3.</param>
- <param name="result">The result of the index operation.</param>
- <returns>
- Alwasy returns true.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.TryGetMember(System.Dynamic.GetMemberBinder,System.Object@)">
- <summary>
- Provides the implementation for operations that get member values. Classes derived from the <see cref="T:System.Dynamic.DynamicObject"/> class can override this method to specify dynamic behavior for operations such as getting a value for a property.
- </summary>
- <param name="binder">Provides information about the object that called the dynamic operation. The binder.Name property provides the name of the member on which the dynamic operation is performed. For example, for the Console.WriteLine(sampleObject.SampleProperty) statement, where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject"/> class, binder.Name returns "SampleProperty". The binder.IgnoreCase property specifies whether the member name is case-sensitive.</param>
- <param name="result">The result of the get operation. For example, if the method is called for a property, you can assign the property value to <paramref name="result"/>.</param>
- <returns>
- Alwasy returns true.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.TrySetIndex(System.Dynamic.SetIndexBinder,System.Object[],System.Object)">
- <summary>
- Provides the implementation for operations that set a value by index. Classes derived from the <see cref="T:System.Dynamic.DynamicObject"/> class can override this method to specify dynamic behavior for operations that access objects by a specified index.
- </summary>
- <param name="binder">Provides information about the operation.</param>
- <param name="indexes">The indexes that are used in the operation. For example, for the sampleObject[3] = 10 operation in C# (sampleObject(3) = 10 in Visual Basic), where sampleObject is derived from the <see cref="T:System.Dynamic.DynamicObject"/> class, <paramref name="indexes"/> is equal to 3.</param>
- <param name="value">The value to set to the object that has the specified index. For example, for the sampleObject[3] = 10 operation in C# (sampleObject(3) = 10 in Visual Basic), where sampleObject is derived from the <see cref="T:System.Dynamic.DynamicObject"/> class, <paramref name="value"/> is equal to 10.</param>
- <returns>
- true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a language-specific run-time exception is thrown.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.TrySetMember(System.Dynamic.SetMemberBinder,System.Object)">
- <summary>
- Provides the implementation for operations that set member values. Classes derived from the <see cref="T:System.Dynamic.DynamicObject"/> class can override this method to specify dynamic behavior for operations such as setting a value for a property.
- </summary>
- <param name="binder">Provides information about the object that called the dynamic operation. The binder.Name property provides the name of the member to which the value is being assigned. For example, for the statement sampleObject.SampleProperty = "Test", where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject"/> class, binder.Name returns "SampleProperty". The binder.IgnoreCase property specifies whether the member name is case-sensitive.</param>
- <param name="value">The value to set to the member. For example, for sampleObject.SampleProperty = "Test", where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject"/> class, the <paramref name="value"/> is "Test".</param>
- <returns>
- true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a language-specific run-time exception is thrown.)
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.GetDynamicMemberNames">
- <summary>
- Returns the enumeration of all dynamic member names.
- </summary>
- <returns>
- A sequence that contains dynamic member names.
- </returns>
- </member>
- <member name="P:RestSharp.JsonObject.Item(System.Int32)">
- <summary>
- Gets the <see cref="T:System.Object"/> at the specified index.
- </summary>
- <value></value>
- </member>
- <member name="P:RestSharp.JsonObject.Keys">
- <summary>
- Gets the keys.
- </summary>
- <value>The keys.</value>
- </member>
- <member name="P:RestSharp.JsonObject.Values">
- <summary>
- Gets the values.
- </summary>
- <value>The values.</value>
- </member>
- <member name="P:RestSharp.JsonObject.Item(System.String)">
- <summary>
- Gets or sets the <see cref="T:System.Object"/> with the specified key.
- </summary>
- <value></value>
- </member>
- <member name="P:RestSharp.JsonObject.Count">
- <summary>
- Gets the count.
- </summary>
- <value>The count.</value>
- </member>
- <member name="P:RestSharp.JsonObject.IsReadOnly">
- <summary>
- Gets a value indicating whether this instance is read only.
- </summary>
- <value>
- <c>true</c> if this instance is read only; otherwise, <c>false</c>.
- </value>
- </member>
- <member name="T:RestSharp.SimpleJson">
- <summary>
- This class encodes and decodes JSON strings.
- Spec. details, see http://www.json.org/
-
- JSON uses Arrays and Objects. These correspond here to the datatypes JsonArray(IList<object>) and JsonObject(IDictionary<string,object>).
- All numbers are parsed to doubles.
- </summary>
- </member>
- <member name="M:RestSharp.SimpleJson.DeserializeObject(System.String)">
- <summary>
- Parses the string json into a value
- </summary>
- <param name="json">A JSON string.</param>
- <returns>An IList<object>, a IDictionary<string,object>, a double, a string, null, true, or false</returns>
- </member>
- <member name="M:RestSharp.SimpleJson.TryDeserializeObject(System.String,System.Object@)">
- <summary>
- Try parsing the json string into a value.
- </summary>
- <param name="json">
- A JSON string.
- </param>
- <param name="object">
- The object.
- </param>
- <returns>
- Returns true if successfull otherwise false.
- </returns>
- </member>
- <member name="M:RestSharp.SimpleJson.SerializeObject(System.Object,RestSharp.IJsonSerializerStrategy)">
- <summary>
- Converts a IDictionary<string,object> / IList<object> object into a JSON string
- </summary>
- <param name="json">A IDictionary<string,object> / IList<object></param>
- <param name="jsonSerializerStrategy">Serializer strategy to use</param>
- <returns>A JSON encoded string, or null if object 'json' is not serializable</returns>
- </member>
- <member name="M:RestSharp.SimpleJson.IsNumeric(System.Object)">
- <summary>
- Determines if a given object is numeric in any way
- (can be integer, double, null, etc).
- </summary>
- </member>
- <member name="T:RestSharp.Validation.Require">
- <summary>
- Helper methods for validating required values
- </summary>
- </member>
- <member name="M:RestSharp.Validation.Require.Argument(System.String,System.Object)">
- <summary>
- Require a parameter to not be null
- </summary>
- <param name="argumentName">Name of the parameter</param>
- <param name="argumentValue">Value of the parameter</param>
- </member>
- <member name="T:RestSharp.Validation.Validate">
- <summary>
- Helper methods for validating values
- </summary>
- </member>
- <member name="M:RestSharp.Validation.Validate.IsBetween(System.Int32,System.Int32,System.Int32)">
- <summary>
- Validate an integer value is between the specified values (exclusive of min/max)
- </summary>
- <param name="value">Value to validate</param>
- <param name="min">Exclusive minimum value</param>
- <param name="max">Exclusive maximum value</param>
- </member>
- <member name="M:RestSharp.Validation.Validate.IsValidLength(System.String,System.Int32)">
- <summary>
- Validate a string length
- </summary>
- <param name="value">String to be validated</param>
- <param name="maxSize">Maximum length of the string</param>
- </member>
- </members>
-</doc>
diff --git a/SendGrid/packages/RestSharp.104.1/lib/net4/RestSharp.dll b/SendGrid/packages/RestSharp.104.1/lib/net4/RestSharp.dll Binary files differdeleted file mode 100644 index c1da1b5..0000000 --- a/SendGrid/packages/RestSharp.104.1/lib/net4/RestSharp.dll +++ /dev/null diff --git a/SendGrid/packages/RestSharp.104.1/lib/net4/RestSharp.xml b/SendGrid/packages/RestSharp.104.1/lib/net4/RestSharp.xml deleted file mode 100644 index baed426..0000000 --- a/SendGrid/packages/RestSharp.104.1/lib/net4/RestSharp.xml +++ /dev/null @@ -1,2680 +0,0 @@ -<?xml version="1.0"?>
-<doc>
- <assembly>
- <name>RestSharp</name>
- </assembly>
- <members>
- <member name="T:RestSharp.NtlmAuthenticator">
- <summary>
- Tries to Authenticate with the credentials of the currently logged in user, or impersonate a user
- </summary>
- </member>
- <member name="M:RestSharp.NtlmAuthenticator.#ctor">
- <summary>
- Authenticate with the credentials of the currently logged in user
- </summary>
- </member>
- <member name="M:RestSharp.NtlmAuthenticator.#ctor(System.String,System.String)">
- <summary>
- Authenticate by impersonation
- </summary>
- <param name="username"></param>
- <param name="password"></param>
- </member>
- <member name="M:RestSharp.NtlmAuthenticator.#ctor(System.Net.ICredentials)">
- <summary>
- Authenticate by impersonation, using an existing <c>ICredentials</c> instance
- </summary>
- <param name="credentials"></param>
- </member>
- <member name="T:RestSharp.Authenticators.OAuth1Authenticator">
- <seealso href="http://tools.ietf.org/html/rfc5849"/>
- </member>
- <member name="T:RestSharp.OAuth2Authenticator">
- <summary>
- Base class for OAuth 2 Authenticators.
- </summary>
- <remarks>
- Since there are many ways to authenticate in OAuth2,
- this is used as a base class to differentiate between
- other authenticators.
-
- Any other OAuth2 authenticators must derive from this
- abstract class.
- </remarks>
- </member>
- <member name="F:RestSharp.OAuth2Authenticator._accessToken">
- <summary>
- Access token to be used when authenticating.
- </summary>
- </member>
- <member name="M:RestSharp.OAuth2Authenticator.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.OAuth2Authenticator"/> class.
- </summary>
- <param name="accessToken">
- The access token.
- </param>
- </member>
- <member name="P:RestSharp.OAuth2Authenticator.AccessToken">
- <summary>
- Gets the access token.
- </summary>
- </member>
- <member name="T:RestSharp.OAuth2UriQueryParameterAuthenticator">
- <summary>
- The OAuth 2 authenticator using URI query parameter.
- </summary>
- <remarks>
- Based on http://tools.ietf.org/html/draft-ietf-oauth-v2-10#section-5.1.2
- </remarks>
- </member>
- <member name="M:RestSharp.OAuth2UriQueryParameterAuthenticator.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.OAuth2UriQueryParameterAuthenticator"/> class.
- </summary>
- <param name="accessToken">
- The access token.
- </param>
- </member>
- <member name="T:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator">
- <summary>
- The OAuth 2 authenticator using the authorization request header field.
- </summary>
- <remarks>
- Based on http://tools.ietf.org/html/draft-ietf-oauth-v2-10#section-5.1.1
- </remarks>
- </member>
- <member name="F:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator._authorizationValue">
- <summary>
- Stores the Authoriztion header value as "OAuth accessToken". used for performance.
- </summary>
- </member>
- <member name="M:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator"/> class.
- </summary>
- <param name="accessToken">
- The access token.
- </param>
- </member>
- <member name="F:RestSharp.Authenticators.OAuth.OAuthTools._encoding">
- <summary>
- All text parameters are UTF-8 encoded (per section 5.1).
- </summary>
- <seealso cref="!:http://www.hueniverse.com/hueniverse/2008/10/beginners-gui-1.html"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetNonce">
- <summary>
- Generates a random 16-byte lowercase alphanumeric string.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#nonce"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetTimestamp">
- <summary>
- Generates a timestamp based on the current elapsed seconds since '01/01/1970 0000 GMT"
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#nonce"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetTimestamp(System.DateTime)">
- <summary>
- Generates a timestamp based on the elapsed seconds of a given time since '01/01/1970 0000 GMT"
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#nonce"/>
- <param name="dateTime">A specified point in time.</param>
- <returns></returns>
- </member>
- <member name="F:RestSharp.Authenticators.OAuth.OAuthTools.UriRfc3986CharsToEscape">
- <summary>
- The set of characters that are unreserved in RFC 2396 but are NOT unreserved in RFC 3986.
- </summary>
- <seealso cref="!:http://stackoverflow.com/questions/846487/how-to-get-uri-escapedatastring-to-comply-with-rfc-3986"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.UrlEncodeRelaxed(System.String)">
- <summary>
- URL encodes a string based on section 5.1 of the OAuth spec.
- Namely, percent encoding with [RFC3986], avoiding unreserved characters,
- upper-casing hexadecimal characters, and UTF-8 encoding for text value pairs.
- </summary>
- <param name="value">The value to escape.</param>
- <returns>The escaped value.</returns>
- <remarks>
- The <see cref="M:System.Uri.EscapeDataString(System.String)"/> method is <i>supposed</i> to take on
- RFC 3986 behavior if certain elements are present in a .config file. Even if this
- actually worked (which in my experiments it <i>doesn't</i>), we can't rely on every
- host actually having this configuration element present.
- </remarks>
- <seealso cref="!:http://oauth.net/core/1.0#encoding_parameters"/>
- <seealso cref="!:http://stackoverflow.com/questions/846487/how-to-get-uri-escapedatastring-to-comply-with-rfc-3986"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.UrlEncodeStrict(System.String)">
- <summary>
- URL encodes a string based on section 5.1 of the OAuth spec.
- Namely, percent encoding with [RFC3986], avoiding unreserved characters,
- upper-casing hexadecimal characters, and UTF-8 encoding for text value pairs.
- </summary>
- <param name="value"></param>
- <seealso cref="!:http://oauth.net/core/1.0#encoding_parameters"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.NormalizeRequestParameters(RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Sorts a collection of key-value pairs by name, and then value if equal,
- concatenating them into a single string. This string should be encoded
- prior to, or after normalization is run.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.1"/>
- <param name="parameters"></param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.SortParametersExcludingSignature(RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Sorts a <see cref="T:RestSharp.Authenticators.OAuth.WebParameterCollection"/> by name, and then value if equal.
- </summary>
- <param name="parameters">A collection of parameters to sort</param>
- <returns>A sorted parameter collection</returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.ConstructRequestUrl(System.Uri)">
- <summary>
- Creates a request URL suitable for making OAuth requests.
- Resulting URLs must exclude port 80 or port 443 when accompanied by HTTP and HTTPS, respectively.
- Resulting URLs must be lower case.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.2"/>
- <param name="url">The original request URL</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.ConcatenateRequestElements(System.String,System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Creates a request elements concatentation value to send with a request.
- This is also known as the signature base.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.3"/>
- <seealso cref="!:http://oauth.net/core/1.0#sig_base_example"/>
- <param name="method">The request's HTTP method type</param>
- <param name="url">The request URL</param>
- <param name="parameters">The request's parameters</param>
- <returns>A signature base string</returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret.
- This method is used when the token secret is currently unknown.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer key</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,RestSharp.Authenticators.OAuth.OAuthSignatureTreatment,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret.
- This method is used when the token secret is currently unknown.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureTreatment">The treatment to use on a signature value</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer key</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,System.String,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret and a known token secret.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer secret</param>
- <param name="tokenSecret">The token secret</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,RestSharp.Authenticators.OAuth.OAuthSignatureTreatment,System.String,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret and a known token secret.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureTreatment">The treatment to use on a signature value</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer secret</param>
- <param name="tokenSecret">The token secret</param>
- <returns></returns>
- </member>
- <member name="T:RestSharp.Authenticators.OAuth.OAuthWorkflow">
- <summary>
- A class to encapsulate OAuth authentication flow.
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- </summary>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildRequestTokenInfo(System.String)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of requesting an
- unauthorized request token.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildRequestTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of requesting an
- unauthorized request token.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildAccessTokenInfo(System.String)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of exchanging a request token
- for an access token authorized by the user at the Service Provider site.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildAccessTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of exchanging a request token
- for an access token authorized by the user at the Service Provider site.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- <param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildClientAuthAccessTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of exchanging user credentials
- for an access token authorized by the user at the Service Provider site.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://tools.ietf.org/html/draft-dehora-farrell-oauth-accesstoken-creds-00#section-4"/>
- <param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
- </member>
- <member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.RequestTokenUrl">
- <seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
- </member>
- <member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.AccessTokenUrl">
- <seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
- </member>
- <member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.AuthorizationUrl">
- <seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
- </member>
- <member name="T:RestSharp.Deserializers.DeserializeAsAttribute">
- <summary>
- Allows control how class and property names and values are deserialized by XmlAttributeDeserializer
- </summary>
- </member>
- <member name="P:RestSharp.Deserializers.DeserializeAsAttribute.Name">
- <summary>
- The name to use for the serialized element
- </summary>
- </member>
- <member name="P:RestSharp.Deserializers.DeserializeAsAttribute.Attribute">
- <summary>
- Sets if the property to Deserialize is an Attribute or Element (Default: false)
- </summary>
- </member>
- <member name="T:RestSharp.Deserializers.DotNetXmlDeserializer">
- <summary>
- Wrapper for System.Xml.Serialization.XmlSerializer.
- </summary>
- </member>
- <member name="T:RestSharp.ParameterType">
- <summary>
- Types of parameters that can be added to requests
- </summary>
- </member>
- <member name="T:RestSharp.DataFormat">
- <summary>
- Data formats
- </summary>
- </member>
- <member name="T:RestSharp.Method">
- <summary>
- HTTP method to use when making requests
- </summary>
- </member>
- <member name="T:RestSharp.DateFormat">
- <summary>
- Format strings for commonly-used date formats
- </summary>
- </member>
- <member name="F:RestSharp.DateFormat.Iso8601">
- <summary>
- .NET format string for ISO 8601 date format
- </summary>
- </member>
- <member name="F:RestSharp.DateFormat.RoundTrip">
- <summary>
- .NET format string for roundtrip date format
- </summary>
- </member>
- <member name="T:RestSharp.ResponseStatus">
- <summary>
- Status for responses (surprised?)
- </summary>
- </member>
- <member name="T:RestSharp.Extensions.MiscExtensions">
- <summary>
- Extension method overload!
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.SaveAs(System.Byte[],System.String)">
- <summary>
- Save a byte array to a file
- </summary>
- <param name="input">Bytes to save</param>
- <param name="path">Full path to save file to</param>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.ReadAsBytes(System.IO.Stream)">
- <summary>
- Read a stream into a byte array
- </summary>
- <param name="input">Stream to read</param>
- <returns>byte[]</returns>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.CopyTo(System.IO.Stream,System.IO.Stream)">
- <summary>
- Copies bytes from one stream to another
- </summary>
- <param name="input">The input stream.</param>
- <param name="output">The output stream.</param>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.AsString(System.Byte[])">
- <summary>
- Converts a byte array to a string, using its byte order mark to convert it to the right encoding.
- http://www.shrinkrays.net/code-snippets/csharp/an-extension-method-for-converting-a-byte-array-to-a-string.aspx
- </summary>
- <param name="buffer">An array of bytes to convert</param>
- <returns>The byte as a string.</returns>
- </member>
- <member name="M:RestSharp.Contrib.HttpUtility.HtmlDecode(System.String)">
- <summary>
- Decodes an HTML-encoded string and returns the decoded string.
- </summary>
- <param name="s">The HTML string to decode. </param>
- <returns>The decoded text.</returns>
- </member>
- <member name="M:RestSharp.Contrib.HttpUtility.HtmlDecode(System.String,System.IO.TextWriter)">
- <summary>
- Decodes an HTML-encoded string and sends the resulting output to a TextWriter output stream.
- </summary>
- <param name="s">The HTML string to decode</param>
- <param name="output">The TextWriter output stream containing the decoded string. </param>
- </member>
- <member name="M:RestSharp.Contrib.HttpUtility.HtmlEncode(System.String,System.IO.TextWriter)">
- <summary>
- HTML-encodes a string and sends the resulting output to a TextWriter output stream.
- </summary>
- <param name="s">The string to encode. </param>
- <param name="output">The TextWriter output stream containing the encoded string. </param>
- </member>
- <member name="T:RestSharp.Extensions.ReflectionExtensions">
- <summary>
- Reflection extensions
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.ReflectionExtensions.GetAttribute``1(System.Reflection.MemberInfo)">
- <summary>
- Retrieve an attribute from a member (property)
- </summary>
- <typeparam name="T">Type of attribute to retrieve</typeparam>
- <param name="prop">Member to retrieve attribute from</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.ReflectionExtensions.GetAttribute``1(System.Type)">
- <summary>
- Retrieve an attribute from a type
- </summary>
- <typeparam name="T">Type of attribute to retrieve</typeparam>
- <param name="type">Type to retrieve attribute from</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.ReflectionExtensions.IsSubclassOfRawGeneric(System.Type,System.Type)">
- <summary>
- Checks a type to see if it derives from a raw generic (e.g. List[[]])
- </summary>
- <param name="toCheck"></param>
- <param name="generic"></param>
- <returns></returns>
- </member>
- <!-- Badly formed XML comment ignored for member "M:RestSharp.Extensions.ReflectionExtensions.FindEnumValue(System.Type,System.String,System.Globalization.CultureInfo)" -->
- <member name="M:RestSharp.Extensions.StringExtensions.UrlEncode(System.String)">
- <summary>
- Uses Uri.EscapeDataString() based on recommendations on MSDN
- http://blogs.msdn.com/b/yangxind/archive/2006/11/09/don-t-use-net-system-uri-unescapedatastring-in-url-decoding.aspx
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.HasValue(System.String)">
- <summary>
- Check that a string is not null or empty
- </summary>
- <param name="input">String to check</param>
- <returns>bool</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.RemoveUnderscoresAndDashes(System.String)">
- <summary>
- Remove underscores from a string
- </summary>
- <param name="input">String to process</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ParseJsonDate(System.String,System.Globalization.CultureInfo)">
- <summary>
- Parses most common JSON date formats
- </summary>
- <param name="input">JSON value to parse</param>
- <returns>DateTime</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.RemoveSurroundingQuotes(System.String)">
- <summary>
- Remove leading and trailing " from a string
- </summary>
- <param name="input">String to parse</param>
- <returns>String</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.Matches(System.String,System.String)">
- <summary>
- Checks a string to see if it matches a regex
- </summary>
- <param name="input">String to check</param>
- <param name="pattern">Pattern to match</param>
- <returns>bool</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ToPascalCase(System.String,System.Globalization.CultureInfo)">
- <summary>
- Converts a string to pascal case
- </summary>
- <param name="lowercaseAndUnderscoredWord">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ToPascalCase(System.String,System.Boolean,System.Globalization.CultureInfo)">
- <summary>
- Converts a string to pascal case with the option to remove underscores
- </summary>
- <param name="text">String to convert</param>
- <param name="removeUnderscores">Option to remove underscores</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ToCamelCase(System.String,System.Globalization.CultureInfo)">
- <summary>
- Converts a string to camel case
- </summary>
- <param name="lowercaseAndUnderscoredWord">String to convert</param>
- <returns>String</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.MakeInitialLowerCase(System.String)">
- <summary>
- Convert the first letter of a string to lower case
- </summary>
- <param name="word">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.IsUpperCase(System.String)">
- <summary>
- Checks to see if a string is all uppper case
- </summary>
- <param name="inputString">String to check</param>
- <returns>bool</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.AddUnderscores(System.String)">
- <summary>
- Add underscores to a pascal-cased string
- </summary>
- <param name="pascalCasedWord">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.AddDashes(System.String)">
- <summary>
- Add dashes to a pascal-cased string
- </summary>
- <param name="pascalCasedWord">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.AddUnderscorePrefix(System.String)">
- <summary>
- Add an undescore prefix to a pascasl-cased string
- </summary>
- <param name="pascalCasedWord"></param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.GetNameVariants(System.String,System.Globalization.CultureInfo)">
- <summary>
- Return possible variants of a name for name matching.
- </summary>
- <param name="name">String to convert</param>
- <param name="culture">The culture to use for conversion</param>
- <returns>IEnumerable<string></returns>
- </member>
- <member name="T:RestSharp.Extensions.XmlExtensions">
- <summary>
- XML Extension Methods
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.XmlExtensions.AsNamespaced(System.String,System.String)">
- <summary>
- Returns the name of an element with the namespace if specified
- </summary>
- <param name="name">Element name</param>
- <param name="namespace">XML Namespace</param>
- <returns></returns>
- </member>
- <member name="T:RestSharp.FileParameter">
- <summary>
- Container for files to be uploaded with requests
- </summary>
- </member>
- <member name="M:RestSharp.FileParameter.Create(System.String,System.Byte[],System.String,System.String)">
- <summary>
- Creates a file parameter from an array of bytes.
- </summary>
- <param name="name">The parameter name to use in the request.</param>
- <param name="data">The data to use as the file's contents.</param>
- <param name="filename">The filename to use in the request.</param>
- <param name="contentType">The content type to use in the request.</param>
- <returns>The <see cref="T:RestSharp.FileParameter"/></returns>
- </member>
- <member name="M:RestSharp.FileParameter.Create(System.String,System.Byte[],System.String)">
- <summary>
- Creates a file parameter from an array of bytes.
- </summary>
- <param name="name">The parameter name to use in the request.</param>
- <param name="data">The data to use as the file's contents.</param>
- <param name="filename">The filename to use in the request.</param>
- <returns>The <see cref="T:RestSharp.FileParameter"/> using the default content type.</returns>
- </member>
- <member name="P:RestSharp.FileParameter.ContentLength">
- <summary>
- The length of data to be sent
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.Writer">
- <summary>
- Provides raw data for file
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.FileName">
- <summary>
- Name of the file to use when uploading
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.ContentType">
- <summary>
- MIME content type of file
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.Http">
- <summary>
- HttpWebRequest wrapper (async methods)
- </summary>
- <summary>
- HttpWebRequest wrapper
- </summary>
- <summary>
- HttpWebRequest wrapper (sync methods)
- </summary>
- </member>
- <member name="M:RestSharp.Http.AsPostAsync(System.Action{RestSharp.HttpResponse},System.String)">
- <summary>
- Execute an async POST-style request with the specified HTTP Method.
- </summary>
- <param name="httpMethod">The HTTP method to execute.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Http.AsGetAsync(System.Action{RestSharp.HttpResponse},System.String)">
- <summary>
- Execute an async GET-style request with the specified HTTP Method.
- </summary>
- <param name="httpMethod">The HTTP method to execute.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Http.Create">
- <summary>
- Creates an IHttp
- </summary>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Http.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="M:RestSharp.Http.Post">
- <summary>
- Execute a POST request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Put">
- <summary>
- Execute a PUT request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Get">
- <summary>
- Execute a GET request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Head">
- <summary>
- Execute a HEAD request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Options">
- <summary>
- Execute an OPTIONS request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Delete">
- <summary>
- Execute a DELETE request
- </summary>
- </member>
- <member name="M:RestSharp.Http.Patch">
- <summary>
- Execute a PATCH request
- </summary>
- </member>
- <member name="M:RestSharp.Http.AsGet(System.String)">
- <summary>
- Execute a GET-style request with the specified HTTP Method.
- </summary>
- <param name="httpMethod">The HTTP method to execute.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Http.AsPost(System.String)">
- <summary>
- Execute a POST-style request with the specified HTTP Method.
- </summary>
- <param name="httpMethod">The HTTP method to execute.</param>
- <returns></returns>
- </member>
- <member name="P:RestSharp.Http.HasParameters">
- <summary>
- True if this HTTP request has any HTTP parameters
- </summary>
- </member>
- <member name="P:RestSharp.Http.HasCookies">
- <summary>
- True if this HTTP request has any HTTP cookies
- </summary>
- </member>
- <member name="P:RestSharp.Http.HasBody">
- <summary>
- True if a request body has been specified
- </summary>
- </member>
- <member name="P:RestSharp.Http.HasFiles">
- <summary>
- True if files have been set to be uploaded
- </summary>
- </member>
- <member name="P:RestSharp.Http.UserAgent">
- <summary>
- UserAgent to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Timeout">
- <summary>
- Timeout in milliseconds to be used for the request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Credentials">
- <summary>
- System.Net.ICredentials to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.CookieContainer">
- <summary>
- The System.Net.CookieContainer to be used for the request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Files">
- <summary>
- Collection of files to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.FollowRedirects">
- <summary>
- Whether or not HTTP 3xx response redirects should be automatically followed
- </summary>
- </member>
- <member name="P:RestSharp.Http.ClientCertificates">
- <summary>
- X509CertificateCollection to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.MaxRedirects">
- <summary>
- Maximum number of automatic redirects to follow if FollowRedirects is true
- </summary>
- </member>
- <member name="P:RestSharp.Http.Headers">
- <summary>
- HTTP headers to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Parameters">
- <summary>
- HTTP parameters (QueryString or Form values) to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Cookies">
- <summary>
- HTTP cookies to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.RequestBody">
- <summary>
- Request body to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.RequestContentType">
- <summary>
- Content type of the request body.
- </summary>
- </member>
- <member name="P:RestSharp.Http.Url">
- <summary>
- URL to call for this request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Proxy">
- <summary>
- Proxy info to be sent with request
- </summary>
- </member>
- <member name="T:RestSharp.HttpCookie">
- <summary>
- Representation of an HTTP cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Comment">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.CommentUri">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Discard">
- <summary>
- Indicates whether the cookie should be discarded at the end of the session
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Domain">
- <summary>
- Domain of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Expired">
- <summary>
- Indicates whether the cookie is expired
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Expires">
- <summary>
- Date and time that the cookie expires
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.HttpOnly">
- <summary>
- Indicates that this cookie should only be accessed by the server
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Name">
- <summary>
- Name of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Path">
- <summary>
- Path of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Port">
- <summary>
- Port of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Secure">
- <summary>
- Indicates that the cookie should only be sent over secure channels
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.TimeStamp">
- <summary>
- Date and time the cookie was created
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Value">
- <summary>
- Value of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Version">
- <summary>
- Version of the cookie
- </summary>
- </member>
- <member name="T:RestSharp.HttpFile">
- <summary>
- Container for HTTP file
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.ContentLength">
- <summary>
- The length of data to be sent
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.Writer">
- <summary>
- Provides raw data for file
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.FileName">
- <summary>
- Name of the file to use when uploading
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.ContentType">
- <summary>
- MIME content type of file
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.HttpHeader">
- <summary>
- Representation of an HTTP header
- </summary>
- </member>
- <member name="P:RestSharp.HttpHeader.Name">
- <summary>
- Name of the header
- </summary>
- </member>
- <member name="P:RestSharp.HttpHeader.Value">
- <summary>
- Value of the header
- </summary>
- </member>
- <member name="T:RestSharp.HttpParameter">
- <summary>
- Representation of an HTTP parameter (QueryString or Form value)
- </summary>
- </member>
- <member name="P:RestSharp.HttpParameter.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="P:RestSharp.HttpParameter.Value">
- <summary>
- Value of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.HttpResponse">
- <summary>
- HTTP response data
- </summary>
- </member>
- <member name="T:RestSharp.IHttpResponse">
- <summary>
- HTTP response data
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Content">
- <summary>
- String representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ErrorException">
- <summary>
- Exception thrown when error is encountered.
- </summary>
- </member>
- <member name="M:RestSharp.HttpResponse.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Content">
- <summary>
- Lazy-loaded string representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ErrorException">
- <summary>
- Exception thrown when error is encountered.
- </summary>
- </member>
- <member name="T:RestSharp.IRestClient">
- <summary>
-
- </summary>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsync(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle})">
- <summary>
-
- </summary>
- <param name="request"></param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsync``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle})">
- <summary>
-
- </summary>
- <param name="request"></param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncGet(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncPost(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a POST-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncGet``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncPost``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="P:RestSharp.IRestClient.CookieContainer">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.UserAgent">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.Timeout">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.UseSynchronizationContext">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.Authenticator">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.BaseUrl">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.DefaultParameters">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.ClientCertificates">
- <summary>
- X509CertificateCollection to be sent with request
- </summary>
- </member>
- <member name="M:RestSharp.IRestRequest.AddFile(System.String,System.String)">
- <summary>
- Adds a file to the Files collection to be included with a POST or PUT request
- (other methods do not support file uploads).
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="path">Full path to file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddFile(System.String,System.Byte[],System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="bytes">The file data</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddFile(System.String,System.Byte[],System.String,System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name and content type
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="bytes">The file data</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <param name="contentType">The MIME type of the file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddBody(System.Object,System.String)">
- <summary>
- Serializes obj to format specified by RequestFormat, but passes xmlNamespace if using the default XmlSerializer
- </summary>
- <param name="obj">The object to serialize</param>
- <param name="xmlNamespace">The XML namespace to use when serializing</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddBody(System.Object)">
- <summary>
- Serializes obj to data format specified by RequestFormat and adds it to the request body.
- </summary>
- <param name="obj">The object to serialize</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddObject(System.Object,System.String[])">
- <summary>
- Calls AddParameter() for all public, readable properties specified in the white list
- </summary>
- <example>
- request.AddObject(product, "ProductId", "Price", ...);
- </example>
- <param name="obj">The object with properties to add as parameters</param>
- <param name="whitelist">The names of the properties to include</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddObject(System.Object)">
- <summary>
- Calls AddParameter() for all public, readable properties of obj
- </summary>
- <param name="obj">The object with properties to add as parameters</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddParameter(RestSharp.Parameter)">
- <summary>
- Add the parameter to the request
- </summary>
- <param name="p">Parameter to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddParameter(System.String,System.Object)">
- <summary>
- Adds a HTTP parameter to the request (QueryString for GET, DELETE, OPTIONS and HEAD; Encoded form for POST and PUT)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddParameter(System.String,System.Object,RestSharp.ParameterType)">
- <summary>
- Adds a parameter to the request. There are five types of parameters:
- - GetOrPost: Either a QueryString value or encoded form value based on method
- - HttpHeader: Adds the name/value pair to the HTTP request's Headers collection
- - UrlSegment: Inserted into URL if there is a matching url token e.g. {AccountId}
- - Cookie: Adds the name/value pair to the HTTP request's Cookies collection
- - RequestBody: Used by AddBody() (not recommended to use directly)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <param name="type">The type of parameter to add</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddHeader(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, HttpHeader) overload
- </summary>
- <param name="name">Name of the header to add</param>
- <param name="value">Value of the header to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddCookie(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, Cookie) overload
- </summary>
- <param name="name">Name of the cookie to add</param>
- <param name="value">Value of the cookie to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddUrlSegment(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, UrlSegment) overload
- </summary>
- <param name="name">Name of the segment to add</param>
- <param name="value">Value of the segment to add</param>
- <returns></returns>
- </member>
- <member name="P:RestSharp.IRestRequest.JsonSerializer">
- <summary>
- Serializer to use when writing JSON request bodies. Used if RequestFormat is Json.
- By default the included JsonSerializer is used (currently using JSON.NET default serialization).
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.XmlSerializer">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default the included XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Parameters">
- <summary>
- Container of all HTTP parameters to be passed with the request.
- See AddParameter() for explanation of the types of parameters that can be passed
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Files">
- <summary>
- Container of all the files to be uploaded with the request.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Method">
- <summary>
- Determines what HTTP method to use for this request. Supported methods: GET, POST, PUT, DELETE, HEAD, OPTIONS
- Default is GET
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Resource">
- <summary>
- The Resource URL to make the request against.
- Tokens are substituted with UrlSegment parameters and match by name.
- Should not include the scheme or domain. Do not include leading slash.
- Combined with RestClient.BaseUrl to assemble final URL:
- {BaseUrl}/{Resource} (BaseUrl is scheme + domain, e.g. http://example.com)
- </summary>
- <example>
- // example for url token replacement
- request.Resource = "Products/{ProductId}";
- request.AddParameter("ProductId", 123, ParameterType.UrlSegment);
- </example>
- </member>
- <member name="P:RestSharp.IRestRequest.RequestFormat">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.RootElement">
- <summary>
- Used by the default deserializers to determine where to start deserializing from.
- Can be used to skip container or root elements that do not have corresponding deserialzation targets.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.DateFormat">
- <summary>
- Used by the default deserializers to explicitly set which date format string to use when parsing dates.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.XmlNamespace">
- <summary>
- Used by XmlDeserializer. If not specified, XmlDeserializer will flatten response by removing namespaces from element names.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Credentials">
- <summary>
- In general you would not need to set this directly. Used by the NtlmAuthenticator.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Timeout">
- <summary>
- Timeout in milliseconds to be used for the request. This timeout value overrides a timeout set on the RestClient.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Attempts">
- <summary>
- How many attempts were made to send this Request?
- </summary>
- <remarks>
- This Number is incremented each time the RestClient sends the request.
- Useful when using Asynchronous Execution with Callbacks
- </remarks>
- </member>
- <member name="T:RestSharp.IRestResponse">
- <summary>
- Container for data sent back from API
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Request">
- <summary>
- The RestRequest that was made to get this RestResponse
- </summary>
- <remarks>
- Mainly for debugging if ResponseStatus is not OK
- </remarks>
- </member>
- <member name="P:RestSharp.IRestResponse.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Content">
- <summary>
- String representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ErrorException">
- <summary>
- The exception thrown during the request, if any
- </summary>
- </member>
- <member name="T:RestSharp.IRestResponse`1">
- <summary>
- Container for data sent back from API including deserialized data
- </summary>
- <typeparam name="T">Type of data to deserialize to</typeparam>
- </member>
- <member name="P:RestSharp.IRestResponse`1.Data">
- <summary>
- Deserialized entity data
- </summary>
- </member>
- <member name="T:RestSharp.Parameter">
- <summary>
- Parameter container for REST requests
- </summary>
- </member>
- <member name="M:RestSharp.Parameter.ToString">
- <summary>
- Return a human-readable representation of this parameter
- </summary>
- <returns>String</returns>
- </member>
- <member name="P:RestSharp.Parameter.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="P:RestSharp.Parameter.Value">
- <summary>
- Value of the parameter
- </summary>
- </member>
- <member name="P:RestSharp.Parameter.Type">
- <summary>
- Type of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.RestClient">
- <summary>
- Client to translate RestRequests into Http requests and process response result
- </summary>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsync(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncGet(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncPost(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a POST-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsync``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncGet``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncPost``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a POST-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.#ctor">
- <summary>
- Default constructor that registers default content handlers
- </summary>
- </member>
- <member name="M:RestSharp.RestClient.#ctor(System.String)">
- <summary>
- Sets the BaseUrl property for requests made by this client instance
- </summary>
- <param name="baseUrl"></param>
- </member>
- <member name="M:RestSharp.RestClient.AddHandler(System.String,RestSharp.Deserializers.IDeserializer)">
- <summary>
- Registers a content handler to process response content
- </summary>
- <param name="contentType">MIME content type of the response content</param>
- <param name="deserializer">Deserializer to use to process content</param>
- </member>
- <member name="M:RestSharp.RestClient.RemoveHandler(System.String)">
- <summary>
- Remove a content handler for the specified MIME content type
- </summary>
- <param name="contentType">MIME content type to remove</param>
- </member>
- <member name="M:RestSharp.RestClient.ClearHandlers">
- <summary>
- Remove all content handlers
- </summary>
- </member>
- <member name="M:RestSharp.RestClient.GetHandler(System.String)">
- <summary>
- Retrieve the handler for the specified MIME content type
- </summary>
- <param name="contentType">MIME content type to retrieve</param>
- <returns>IDeserializer instance</returns>
- </member>
- <member name="M:RestSharp.RestClient.BuildUri(RestSharp.IRestRequest)">
- <summary>
- Assembles URL to call based on parameters, method and resource
- </summary>
- <param name="request">RestRequest to execute</param>
- <returns>Assembled System.Uri</returns>
- </member>
- <member name="M:RestSharp.RestClient.DownloadData(RestSharp.IRestRequest)">
- <summary>
- Executes the specified request and downloads the response data
- </summary>
- <param name="request">Request to execute</param>
- <returns>Response data</returns>
- </member>
- <member name="M:RestSharp.RestClient.Execute(RestSharp.IRestRequest)">
- <summary>
- Executes the request and returns a response, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <returns>RestResponse</returns>
- </member>
- <member name="M:RestSharp.RestClient.Execute``1(RestSharp.IRestRequest)">
- <summary>
- Executes the specified request and deserializes the response content using the appropriate content handler
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to execute</param>
- <returns>RestResponse[[T]] with deserialized data in Data property</returns>
- </member>
- <member name="P:RestSharp.RestClient.DefaultParameters">
- <summary>
- Parameters included with every request made with this instance of RestClient
- If specified in both client and request, the request wins
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.MaxRedirects">
- <summary>
- Maximum number of redirects to follow if FollowRedirects is true
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.ClientCertificates">
- <summary>
- X509CertificateCollection to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.FollowRedirects">
- <summary>
- Default is true. Determine whether or not requests that result in
- HTTP status codes of 3xx should follow returned redirect
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.CookieContainer">
- <summary>
- The CookieContainer used for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.UserAgent">
- <summary>
- UserAgent to use for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.Timeout">
- <summary>
- Timeout in milliseconds to use for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.UseSynchronizationContext">
- <summary>
- Whether to invoke async callbacks using the SynchronizationContext.Current captured when invoked
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.Authenticator">
- <summary>
- Authenticator to use for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.BaseUrl">
- <summary>
- Combined with Request.Resource to construct URL for request
- Should include scheme and domain without trailing slash.
- </summary>
- <example>
- client.BaseUrl = "http://example.com";
- </example>
- </member>
- <member name="P:RestSharp.RestClient.Proxy">
- <summary>
- Proxy to use for requests made by this client instance.
- Passed on to underying WebRequest if set.
- </summary>
- </member>
- <member name="M:RestSharp.RestClientExtensions.ExecuteAsync(RestSharp.IRestClient,RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <param name="client">The IRestClient this method extends</param>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- </member>
- <member name="M:RestSharp.RestClientExtensions.ExecuteAsync``1(RestSharp.IRestClient,RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0}})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <param name="client">The IRestClient this method extends</param>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle</param>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultParameter(RestSharp.IRestClient,RestSharp.Parameter)">
- <summary>
- Add a parameter to use on every request made with this client instance
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="p">Parameter to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultParameter(RestSharp.IRestClient,System.String,System.Object)">
- <summary>
- Adds a HTTP parameter (QueryString for GET, DELETE, OPTIONS and HEAD; Encoded form for POST and PUT)
- Used on every request made by this client instance
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultParameter(RestSharp.IRestClient,System.String,System.Object,RestSharp.ParameterType)">
- <summary>
- Adds a parameter to the request. There are four types of parameters:
- - GetOrPost: Either a QueryString value or encoded form value based on method
- - HttpHeader: Adds the name/value pair to the HTTP request's Headers collection
- - UrlSegment: Inserted into URL if there is a matching url token e.g. {AccountId}
- - RequestBody: Used by AddBody() (not recommended to use directly)
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <param name="type">The type of parameter to add</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultHeader(RestSharp.IRestClient,System.String,System.String)">
- <summary>
- Shortcut to AddDefaultParameter(name, value, HttpHeader) overload
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the header to add</param>
- <param name="value">Value of the header to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultUrlSegment(RestSharp.IRestClient,System.String,System.String)">
- <summary>
- Shortcut to AddDefaultParameter(name, value, UrlSegment) overload
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the segment to add</param>
- <param name="value">Value of the segment to add</param>
- <returns></returns>
- </member>
- <member name="T:RestSharp.RestRequest">
- <summary>
- Container for data used to make requests
- </summary>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(RestSharp.Method)">
- <summary>
- Sets Method property to value of method
- </summary>
- <param name="method">Method to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.String)">
- <summary>
- Sets Resource property
- </summary>
- <param name="resource">Resource to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.String,RestSharp.Method)">
- <summary>
- Sets Resource and Method properties
- </summary>
- <param name="resource">Resource to use for this request</param>
- <param name="method">Method to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.Uri)">
- <summary>
- Sets Resource property
- </summary>
- <param name="resource">Resource to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.Uri,RestSharp.Method)">
- <summary>
- Sets Resource and Method properties
- </summary>
- <param name="resource">Resource to use for this request</param>
- <param name="method">Method to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.String)">
- <summary>
- Adds a file to the Files collection to be included with a POST or PUT request
- (other methods do not support file uploads).
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="path">Full path to file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Byte[],System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="bytes">The file data</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Byte[],System.String,System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name and content type
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="bytes">The file data</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <param name="contentType">The MIME type of the file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Action{System.IO.Stream},System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name and content type
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="writer">A function that writes directly to the stream. Should NOT close the stream.</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Action{System.IO.Stream},System.String,System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name and content type
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="writer">A function that writes directly to the stream. Should NOT close the stream.</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <param name="contentType">The MIME type of the file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddBody(System.Object,System.String)">
- <summary>
- Serializes obj to format specified by RequestFormat, but passes xmlNamespace if using the default XmlSerializer
- </summary>
- <param name="obj">The object to serialize</param>
- <param name="xmlNamespace">The XML namespace to use when serializing</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddBody(System.Object)">
- <summary>
- Serializes obj to data format specified by RequestFormat and adds it to the request body.
- </summary>
- <param name="obj">The object to serialize</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddObject(System.Object,System.String[])">
- <summary>
- Calls AddParameter() for all public, readable properties specified in the white list
- </summary>
- <example>
- request.AddObject(product, "ProductId", "Price", ...);
- </example>
- <param name="obj">The object with properties to add as parameters</param>
- <param name="whitelist">The names of the properties to include</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddObject(System.Object)">
- <summary>
- Calls AddParameter() for all public, readable properties of obj
- </summary>
- <param name="obj">The object with properties to add as parameters</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddParameter(RestSharp.Parameter)">
- <summary>
- Add the parameter to the request
- </summary>
- <param name="p">Parameter to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddParameter(System.String,System.Object)">
- <summary>
- Adds a HTTP parameter to the request (QueryString for GET, DELETE, OPTIONS and HEAD; Encoded form for POST and PUT)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddParameter(System.String,System.Object,RestSharp.ParameterType)">
- <summary>
- Adds a parameter to the request. There are four types of parameters:
- - GetOrPost: Either a QueryString value or encoded form value based on method
- - HttpHeader: Adds the name/value pair to the HTTP request's Headers collection
- - UrlSegment: Inserted into URL if there is a matching url token e.g. {AccountId}
- - RequestBody: Used by AddBody() (not recommended to use directly)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <param name="type">The type of parameter to add</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddHeader(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, HttpHeader) overload
- </summary>
- <param name="name">Name of the header to add</param>
- <param name="value">Value of the header to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddCookie(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, Cookie) overload
- </summary>
- <param name="name">Name of the cookie to add</param>
- <param name="value">Value of the cookie to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddUrlSegment(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, UrlSegment) overload
- </summary>
- <param name="name">Name of the segment to add</param>
- <param name="value">Value of the segment to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.IncreaseNumAttempts">
- <summary>
- Internal Method so that RestClient can increase the number of attempts
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.JsonSerializer">
- <summary>
- Serializer to use when writing JSON request bodies. Used if RequestFormat is Json.
- By default the included JsonSerializer is used (currently using JSON.NET default serialization).
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.XmlSerializer">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default the included XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Parameters">
- <summary>
- Container of all HTTP parameters to be passed with the request.
- See AddParameter() for explanation of the types of parameters that can be passed
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Files">
- <summary>
- Container of all the files to be uploaded with the request.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Method">
- <summary>
- Determines what HTTP method to use for this request. Supported methods: GET, POST, PUT, DELETE, HEAD, OPTIONS
- Default is GET
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Resource">
- <summary>
- The Resource URL to make the request against.
- Tokens are substituted with UrlSegment parameters and match by name.
- Should not include the scheme or domain. Do not include leading slash.
- Combined with RestClient.BaseUrl to assemble final URL:
- {BaseUrl}/{Resource} (BaseUrl is scheme + domain, e.g. http://example.com)
- </summary>
- <example>
- // example for url token replacement
- request.Resource = "Products/{ProductId}";
- request.AddParameter("ProductId", 123, ParameterType.UrlSegment);
- </example>
- </member>
- <member name="P:RestSharp.RestRequest.RequestFormat">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.RootElement">
- <summary>
- Used by the default deserializers to determine where to start deserializing from.
- Can be used to skip container or root elements that do not have corresponding deserialzation targets.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.OnBeforeDeserialization">
- <summary>
- A function to run prior to deserializing starting (e.g. change settings if error encountered)
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.DateFormat">
- <summary>
- Used by the default deserializers to explicitly set which date format string to use when parsing dates.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.XmlNamespace">
- <summary>
- Used by XmlDeserializer. If not specified, XmlDeserializer will flatten response by removing namespaces from element names.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Credentials">
- <summary>
- In general you would not need to set this directly. Used by the NtlmAuthenticator.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.UserState">
- <summary>
- Gets or sets a user-defined state object that contains information about a request and which can be later
- retrieved when the request completes.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Timeout">
- <summary>
- Timeout in milliseconds to be used for the request. This timeout value overrides a timeout set on the RestClient.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Attempts">
- <summary>
- How many attempts were made to send this Request?
- </summary>
- <remarks>
- This Number is incremented each time the RestClient sends the request.
- Useful when using Asynchronous Execution with Callbacks
- </remarks>
- </member>
- <member name="T:RestSharp.RestResponseBase">
- <summary>
- Base class for common properties shared by RestResponse and RestResponse[[T]]
- </summary>
- </member>
- <member name="M:RestSharp.RestResponseBase.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Request">
- <summary>
- The RestRequest that was made to get this RestResponse
- </summary>
- <remarks>
- Mainly for debugging if ResponseStatus is not OK
- </remarks>
- </member>
- <member name="P:RestSharp.RestResponseBase.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Content">
- <summary>
- String representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ErrorException">
- <summary>
- The exception thrown during the request, if any
- </summary>
- </member>
- <member name="T:RestSharp.RestResponse`1">
- <summary>
- Container for data sent back from API including deserialized data
- </summary>
- <typeparam name="T">Type of data to deserialize to</typeparam>
- </member>
- <member name="P:RestSharp.RestResponse`1.Data">
- <summary>
- Deserialized entity data
- </summary>
- </member>
- <member name="T:RestSharp.RestResponse">
- <summary>
- Container for data sent back from API
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Comment">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.CommentUri">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Discard">
- <summary>
- Indicates whether the cookie should be discarded at the end of the session
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Domain">
- <summary>
- Domain of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Expired">
- <summary>
- Indicates whether the cookie is expired
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Expires">
- <summary>
- Date and time that the cookie expires
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.HttpOnly">
- <summary>
- Indicates that this cookie should only be accessed by the server
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Name">
- <summary>
- Name of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Path">
- <summary>
- Path of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Port">
- <summary>
- Port of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Secure">
- <summary>
- Indicates that the cookie should only be sent over secure channels
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.TimeStamp">
- <summary>
- Date and time the cookie was created
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Value">
- <summary>
- Value of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Version">
- <summary>
- Version of the cookie
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.DotNetXmlSerializer">
- <summary>
- Wrapper for System.Xml.Serialization.XmlSerializer.
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.DotNetXmlSerializer.#ctor">
- <summary>
- Default constructor, does not specify namespace
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.DotNetXmlSerializer.#ctor(System.String)">
- <summary>
- Specify the namespaced to be used when serializing
- </summary>
- <param name="namespace">XML namespace</param>
- </member>
- <member name="M:RestSharp.Serializers.DotNetXmlSerializer.Serialize(System.Object)">
- <summary>
- Serialize the object as XML
- </summary>
- <param name="obj">Object to serialize</param>
- <returns>XML as string</returns>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.RootElement">
- <summary>
- Name of the root element to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.Namespace">
- <summary>
- XML namespace to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.DateFormat">
- <summary>
- Format string to use when serializing dates
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.ContentType">
- <summary>
- Content type for serialized content
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.Encoding">
- <summary>
- Encoding for serialized content
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.DotNetXmlSerializer.EncodingStringWriter">
- <summary>
- Need to subclass StringWriter in order to override Encoding
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.JsonSerializer">
- <summary>
- Default JSON serializer for request bodies
- Doesn't currently use the SerializeAs attribute, defers to Newtonsoft's attributes
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.JsonSerializer.#ctor">
- <summary>
- Default serializer
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.JsonSerializer.Serialize(System.Object)">
- <summary>
- Serialize the object as JSON
- </summary>
- <param name="obj">Object to serialize</param>
- <returns>JSON as String</returns>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.DateFormat">
- <summary>
- Unused for JSON Serialization
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.RootElement">
- <summary>
- Unused for JSON Serialization
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.Namespace">
- <summary>
- Unused for JSON Serialization
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.ContentType">
- <summary>
- Content type for serialized content
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.SerializeAsAttribute">
- <summary>
- Allows control how class and property names and values are serialized by XmlSerializer
- Currently not supported with the JsonSerializer
- When specified at the property level the class-level specification is overridden
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.SerializeAsAttribute.TransformName(System.String)">
- <summary>
- Called by the attribute when NameStyle is speficied
- </summary>
- <param name="input">The string to transform</param>
- <returns>String</returns>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Name">
- <summary>
- The name to use for the serialized element
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Attribute">
- <summary>
- Sets the value to be serialized as an Attribute instead of an Element
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Culture">
- <summary>
- The culture to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.NameStyle">
- <summary>
- Transforms the casing of the name based on the selected value.
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Index">
- <summary>
- The order to serialize the element. Default is int.MaxValue.
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.NameStyle">
- <summary>
- Options for transforming casing of element names
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.XmlSerializer">
- <summary>
- Default XML Serializer
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.XmlSerializer.#ctor">
- <summary>
- Default constructor, does not specify namespace
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.XmlSerializer.#ctor(System.String)">
- <summary>
- Specify the namespaced to be used when serializing
- </summary>
- <param name="namespace">XML namespace</param>
- </member>
- <member name="M:RestSharp.Serializers.XmlSerializer.Serialize(System.Object)">
- <summary>
- Serialize the object as XML
- </summary>
- <param name="obj">Object to serialize</param>
- <returns>XML as string</returns>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.RootElement">
- <summary>
- Name of the root element to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.Namespace">
- <summary>
- XML namespace to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.DateFormat">
- <summary>
- Format string to use when serializing dates
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.ContentType">
- <summary>
- Content type for serialized content
- </summary>
- </member>
- <member name="T:RestSharp.JsonArray">
- <summary>
- Represents the json array.
- </summary>
- </member>
- <member name="M:RestSharp.JsonArray.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.JsonArray"/> class.
- </summary>
- </member>
- <member name="M:RestSharp.JsonArray.#ctor(System.Int32)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.JsonArray"/> class.
- </summary>
- <param name="capacity">The capacity of the json array.</param>
- </member>
- <member name="M:RestSharp.JsonArray.ToString">
- <summary>
- The json representation of the array.
- </summary>
- <returns>The json representation of the array.</returns>
- </member>
- <member name="T:RestSharp.JsonObject">
- <summary>
- Represents the json object.
- </summary>
- </member>
- <member name="F:RestSharp.JsonObject._members">
- <summary>
- The internal member dictionary.
- </summary>
- </member>
- <member name="M:RestSharp.JsonObject.Add(System.String,System.Object)">
- <summary>
- Adds the specified key.
- </summary>
- <param name="key">The key.</param>
- <param name="value">The value.</param>
- </member>
- <member name="M:RestSharp.JsonObject.ContainsKey(System.String)">
- <summary>
- Determines whether the specified key contains key.
- </summary>
- <param name="key">The key.</param>
- <returns>
- <c>true</c> if the specified key contains key; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.Remove(System.String)">
- <summary>
- Removes the specified key.
- </summary>
- <param name="key">The key.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.TryGetValue(System.String,System.Object@)">
- <summary>
- Tries the get value.
- </summary>
- <param name="key">The key.</param>
- <param name="value">The value.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.Add(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
- <summary>
- Adds the specified item.
- </summary>
- <param name="item">The item.</param>
- </member>
- <member name="M:RestSharp.JsonObject.Clear">
- <summary>
- Clears this instance.
- </summary>
- </member>
- <member name="M:RestSharp.JsonObject.Contains(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
- <summary>
- Determines whether [contains] [the specified item].
- </summary>
- <param name="item">The item.</param>
- <returns>
- <c>true</c> if [contains] [the specified item]; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Object}[],System.Int32)">
- <summary>
- Copies to.
- </summary>
- <param name="array">The array.</param>
- <param name="arrayIndex">Index of the array.</param>
- </member>
- <member name="M:RestSharp.JsonObject.Remove(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
- <summary>
- Removes the specified item.
- </summary>
- <param name="item">The item.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.GetEnumerator">
- <summary>
- Gets the enumerator.
- </summary>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.System#Collections#IEnumerable#GetEnumerator">
- <summary>
- Returns an enumerator that iterates through a collection.
- </summary>
- <returns>
- An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.ToString">
- <summary>
- Returns a json <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
- </summary>
- <returns>
- A json <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.TryConvert(System.Dynamic.ConvertBinder,System.Object@)">
- <summary>
- Provides implementation for type conversion operations. Classes derived from the <see cref="T:System.Dynamic.DynamicObject"/> class can override this method to specify dynamic behavior for operations that convert an object from one type to another.
- </summary>
- <param name="binder">Provides information about the conversion operation. The binder.Type property provides the type to which the object must be converted. For example, for the statement (String)sampleObject in C# (CType(sampleObject, Type) in Visual Basic), where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject"/> class, binder.Type returns the <see cref="T:System.String"/> type. The binder.Explicit property provides information about the kind of conversion that occurs. It returns true for explicit conversion and false for implicit conversion.</param>
- <param name="result">The result of the type conversion operation.</param>
- <returns>
- Alwasy returns true.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.TryDeleteMember(System.Dynamic.DeleteMemberBinder)">
- <summary>
- Provides the implementation for operations that delete an object member. This method is not intended for use in C# or Visual Basic.
- </summary>
- <param name="binder">Provides information about the deletion.</param>
- <returns>
- Alwasy returns true.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.TryGetIndex(System.Dynamic.GetIndexBinder,System.Object[],System.Object@)">
- <summary>
- Provides the implementation for operations that get a value by index. Classes derived from the <see cref="T:System.Dynamic.DynamicObject"/> class can override this method to specify dynamic behavior for indexing operations.
- </summary>
- <param name="binder">Provides information about the operation.</param>
- <param name="indexes">The indexes that are used in the operation. For example, for the sampleObject[3] operation in C# (sampleObject(3) in Visual Basic), where sampleObject is derived from the DynamicObject class, <paramref name="indexes"/> is equal to 3.</param>
- <param name="result">The result of the index operation.</param>
- <returns>
- Alwasy returns true.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.TryGetMember(System.Dynamic.GetMemberBinder,System.Object@)">
- <summary>
- Provides the implementation for operations that get member values. Classes derived from the <see cref="T:System.Dynamic.DynamicObject"/> class can override this method to specify dynamic behavior for operations such as getting a value for a property.
- </summary>
- <param name="binder">Provides information about the object that called the dynamic operation. The binder.Name property provides the name of the member on which the dynamic operation is performed. For example, for the Console.WriteLine(sampleObject.SampleProperty) statement, where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject"/> class, binder.Name returns "SampleProperty". The binder.IgnoreCase property specifies whether the member name is case-sensitive.</param>
- <param name="result">The result of the get operation. For example, if the method is called for a property, you can assign the property value to <paramref name="result"/>.</param>
- <returns>
- Alwasy returns true.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.TrySetIndex(System.Dynamic.SetIndexBinder,System.Object[],System.Object)">
- <summary>
- Provides the implementation for operations that set a value by index. Classes derived from the <see cref="T:System.Dynamic.DynamicObject"/> class can override this method to specify dynamic behavior for operations that access objects by a specified index.
- </summary>
- <param name="binder">Provides information about the operation.</param>
- <param name="indexes">The indexes that are used in the operation. For example, for the sampleObject[3] = 10 operation in C# (sampleObject(3) = 10 in Visual Basic), where sampleObject is derived from the <see cref="T:System.Dynamic.DynamicObject"/> class, <paramref name="indexes"/> is equal to 3.</param>
- <param name="value">The value to set to the object that has the specified index. For example, for the sampleObject[3] = 10 operation in C# (sampleObject(3) = 10 in Visual Basic), where sampleObject is derived from the <see cref="T:System.Dynamic.DynamicObject"/> class, <paramref name="value"/> is equal to 10.</param>
- <returns>
- true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a language-specific run-time exception is thrown.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.TrySetMember(System.Dynamic.SetMemberBinder,System.Object)">
- <summary>
- Provides the implementation for operations that set member values. Classes derived from the <see cref="T:System.Dynamic.DynamicObject"/> class can override this method to specify dynamic behavior for operations such as setting a value for a property.
- </summary>
- <param name="binder">Provides information about the object that called the dynamic operation. The binder.Name property provides the name of the member to which the value is being assigned. For example, for the statement sampleObject.SampleProperty = "Test", where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject"/> class, binder.Name returns "SampleProperty". The binder.IgnoreCase property specifies whether the member name is case-sensitive.</param>
- <param name="value">The value to set to the member. For example, for sampleObject.SampleProperty = "Test", where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject"/> class, the <paramref name="value"/> is "Test".</param>
- <returns>
- true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a language-specific run-time exception is thrown.)
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.GetDynamicMemberNames">
- <summary>
- Returns the enumeration of all dynamic member names.
- </summary>
- <returns>
- A sequence that contains dynamic member names.
- </returns>
- </member>
- <member name="P:RestSharp.JsonObject.Item(System.Int32)">
- <summary>
- Gets the <see cref="T:System.Object"/> at the specified index.
- </summary>
- <value></value>
- </member>
- <member name="P:RestSharp.JsonObject.Keys">
- <summary>
- Gets the keys.
- </summary>
- <value>The keys.</value>
- </member>
- <member name="P:RestSharp.JsonObject.Values">
- <summary>
- Gets the values.
- </summary>
- <value>The values.</value>
- </member>
- <member name="P:RestSharp.JsonObject.Item(System.String)">
- <summary>
- Gets or sets the <see cref="T:System.Object"/> with the specified key.
- </summary>
- <value></value>
- </member>
- <member name="P:RestSharp.JsonObject.Count">
- <summary>
- Gets the count.
- </summary>
- <value>The count.</value>
- </member>
- <member name="P:RestSharp.JsonObject.IsReadOnly">
- <summary>
- Gets a value indicating whether this instance is read only.
- </summary>
- <value>
- <c>true</c> if this instance is read only; otherwise, <c>false</c>.
- </value>
- </member>
- <member name="T:RestSharp.SimpleJson">
- <summary>
- This class encodes and decodes JSON strings.
- Spec. details, see http://www.json.org/
-
- JSON uses Arrays and Objects. These correspond here to the datatypes JsonArray(IList<object>) and JsonObject(IDictionary<string,object>).
- All numbers are parsed to doubles.
- </summary>
- </member>
- <member name="M:RestSharp.SimpleJson.DeserializeObject(System.String)">
- <summary>
- Parses the string json into a value
- </summary>
- <param name="json">A JSON string.</param>
- <returns>An IList<object>, a IDictionary<string,object>, a double, a string, null, true, or false</returns>
- </member>
- <member name="M:RestSharp.SimpleJson.TryDeserializeObject(System.String,System.Object@)">
- <summary>
- Try parsing the json string into a value.
- </summary>
- <param name="json">
- A JSON string.
- </param>
- <param name="object">
- The object.
- </param>
- <returns>
- Returns true if successfull otherwise false.
- </returns>
- </member>
- <member name="M:RestSharp.SimpleJson.SerializeObject(System.Object,RestSharp.IJsonSerializerStrategy)">
- <summary>
- Converts a IDictionary<string,object> / IList<object> object into a JSON string
- </summary>
- <param name="json">A IDictionary<string,object> / IList<object></param>
- <param name="jsonSerializerStrategy">Serializer strategy to use</param>
- <returns>A JSON encoded string, or null if object 'json' is not serializable</returns>
- </member>
- <member name="M:RestSharp.SimpleJson.IsNumeric(System.Object)">
- <summary>
- Determines if a given object is numeric in any way
- (can be integer, double, null, etc).
- </summary>
- </member>
- <member name="T:RestSharp.Validation.Require">
- <summary>
- Helper methods for validating required values
- </summary>
- </member>
- <member name="M:RestSharp.Validation.Require.Argument(System.String,System.Object)">
- <summary>
- Require a parameter to not be null
- </summary>
- <param name="argumentName">Name of the parameter</param>
- <param name="argumentValue">Value of the parameter</param>
- </member>
- <member name="T:RestSharp.Validation.Validate">
- <summary>
- Helper methods for validating values
- </summary>
- </member>
- <member name="M:RestSharp.Validation.Validate.IsBetween(System.Int32,System.Int32,System.Int32)">
- <summary>
- Validate an integer value is between the specified values (exclusive of min/max)
- </summary>
- <param name="value">Value to validate</param>
- <param name="min">Exclusive minimum value</param>
- <param name="max">Exclusive maximum value</param>
- </member>
- <member name="M:RestSharp.Validation.Validate.IsValidLength(System.String,System.Int32)">
- <summary>
- Validate a string length
- </summary>
- <param name="value">String to be validated</param>
- <param name="maxSize">Maximum length of the string</param>
- </member>
- </members>
-</doc>
diff --git a/SendGrid/packages/RestSharp.104.1/lib/sl4-wp71/RestSharp.WindowsPhone.dll b/SendGrid/packages/RestSharp.104.1/lib/sl4-wp71/RestSharp.WindowsPhone.dll Binary files differdeleted file mode 100644 index c686797..0000000 --- a/SendGrid/packages/RestSharp.104.1/lib/sl4-wp71/RestSharp.WindowsPhone.dll +++ /dev/null diff --git a/SendGrid/packages/RestSharp.104.1/lib/sl4-wp71/RestSharp.WindowsPhone.xml b/SendGrid/packages/RestSharp.104.1/lib/sl4-wp71/RestSharp.WindowsPhone.xml deleted file mode 100644 index 60bec58..0000000 --- a/SendGrid/packages/RestSharp.104.1/lib/sl4-wp71/RestSharp.WindowsPhone.xml +++ /dev/null @@ -1,3494 +0,0 @@ -<?xml version="1.0"?>
-<doc>
- <assembly>
- <name>RestSharp.WindowsPhone</name>
- </assembly>
- <members>
- <member name="T:RestSharp.Authenticators.OAuth1Authenticator">
- <seealso href="http://tools.ietf.org/html/rfc5849"/>
- </member>
- <member name="T:RestSharp.OAuth2Authenticator">
- <summary>
- Base class for OAuth 2 Authenticators.
- </summary>
- <remarks>
- Since there are many ways to authenticate in OAuth2,
- this is used as a base class to differentiate between
- other authenticators.
-
- Any other OAuth2 authenticators must derive from this
- abstract class.
- </remarks>
- </member>
- <member name="F:RestSharp.OAuth2Authenticator._accessToken">
- <summary>
- Access token to be used when authenticating.
- </summary>
- </member>
- <member name="M:RestSharp.OAuth2Authenticator.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.OAuth2Authenticator"/> class.
- </summary>
- <param name="accessToken">
- The access token.
- </param>
- </member>
- <member name="P:RestSharp.OAuth2Authenticator.AccessToken">
- <summary>
- Gets the access token.
- </summary>
- </member>
- <member name="T:RestSharp.OAuth2UriQueryParameterAuthenticator">
- <summary>
- The OAuth 2 authenticator using URI query parameter.
- </summary>
- <remarks>
- Based on http://tools.ietf.org/html/draft-ietf-oauth-v2-10#section-5.1.2
- </remarks>
- </member>
- <member name="M:RestSharp.OAuth2UriQueryParameterAuthenticator.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.OAuth2UriQueryParameterAuthenticator"/> class.
- </summary>
- <param name="accessToken">
- The access token.
- </param>
- </member>
- <member name="T:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator">
- <summary>
- The OAuth 2 authenticator using the authorization request header field.
- </summary>
- <remarks>
- Based on http://tools.ietf.org/html/draft-ietf-oauth-v2-10#section-5.1.1
- </remarks>
- </member>
- <member name="F:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator._authorizationValue">
- <summary>
- Stores the Authoriztion header value as "OAuth accessToken". used for performance.
- </summary>
- </member>
- <member name="M:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator"/> class.
- </summary>
- <param name="accessToken">
- The access token.
- </param>
- </member>
- <member name="F:RestSharp.Authenticators.OAuth.OAuthTools._encoding">
- <summary>
- All text parameters are UTF-8 encoded (per section 5.1).
- </summary>
- <seealso cref="!:http://www.hueniverse.com/hueniverse/2008/10/beginners-gui-1.html"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetNonce">
- <summary>
- Generates a random 16-byte lowercase alphanumeric string.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#nonce"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetTimestamp">
- <summary>
- Generates a timestamp based on the current elapsed seconds since '01/01/1970 0000 GMT"
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#nonce"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetTimestamp(System.DateTime)">
- <summary>
- Generates a timestamp based on the elapsed seconds of a given time since '01/01/1970 0000 GMT"
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#nonce"/>
- <param name="dateTime">A specified point in time.</param>
- <returns></returns>
- </member>
- <member name="F:RestSharp.Authenticators.OAuth.OAuthTools.UriRfc3986CharsToEscape">
- <summary>
- The set of characters that are unreserved in RFC 2396 but are NOT unreserved in RFC 3986.
- </summary>
- <seealso cref="!:http://stackoverflow.com/questions/846487/how-to-get-uri-escapedatastring-to-comply-with-rfc-3986"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.UrlEncodeRelaxed(System.String)">
- <summary>
- URL encodes a string based on section 5.1 of the OAuth spec.
- Namely, percent encoding with [RFC3986], avoiding unreserved characters,
- upper-casing hexadecimal characters, and UTF-8 encoding for text value pairs.
- </summary>
- <param name="value">The value to escape.</param>
- <returns>The escaped value.</returns>
- <remarks>
- The <see cref="M:System.Uri.EscapeDataString(System.String)"/> method is <i>supposed</i> to take on
- RFC 3986 behavior if certain elements are present in a .config file. Even if this
- actually worked (which in my experiments it <i>doesn't</i>), we can't rely on every
- host actually having this configuration element present.
- </remarks>
- <seealso cref="!:http://oauth.net/core/1.0#encoding_parameters"/>
- <seealso cref="!:http://stackoverflow.com/questions/846487/how-to-get-uri-escapedatastring-to-comply-with-rfc-3986"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.UrlEncodeStrict(System.String)">
- <summary>
- URL encodes a string based on section 5.1 of the OAuth spec.
- Namely, percent encoding with [RFC3986], avoiding unreserved characters,
- upper-casing hexadecimal characters, and UTF-8 encoding for text value pairs.
- </summary>
- <param name="value"></param>
- <seealso cref="!:http://oauth.net/core/1.0#encoding_parameters"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.NormalizeRequestParameters(RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Sorts a collection of key-value pairs by name, and then value if equal,
- concatenating them into a single string. This string should be encoded
- prior to, or after normalization is run.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.1"/>
- <param name="parameters"></param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.SortParametersExcludingSignature(RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Sorts a <see cref="T:RestSharp.Authenticators.OAuth.WebParameterCollection"/> by name, and then value if equal.
- </summary>
- <param name="parameters">A collection of parameters to sort</param>
- <returns>A sorted parameter collection</returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.ConstructRequestUrl(System.Uri)">
- <summary>
- Creates a request URL suitable for making OAuth requests.
- Resulting URLs must exclude port 80 or port 443 when accompanied by HTTP and HTTPS, respectively.
- Resulting URLs must be lower case.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.2"/>
- <param name="url">The original request URL</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.ConcatenateRequestElements(System.String,System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Creates a request elements concatentation value to send with a request.
- This is also known as the signature base.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.3"/>
- <seealso cref="!:http://oauth.net/core/1.0#sig_base_example"/>
- <param name="method">The request's HTTP method type</param>
- <param name="url">The request URL</param>
- <param name="parameters">The request's parameters</param>
- <returns>A signature base string</returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret.
- This method is used when the token secret is currently unknown.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer key</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,RestSharp.Authenticators.OAuth.OAuthSignatureTreatment,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret.
- This method is used when the token secret is currently unknown.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureTreatment">The treatment to use on a signature value</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer key</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,System.String,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret and a known token secret.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer secret</param>
- <param name="tokenSecret">The token secret</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,RestSharp.Authenticators.OAuth.OAuthSignatureTreatment,System.String,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret and a known token secret.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureTreatment">The treatment to use on a signature value</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer secret</param>
- <param name="tokenSecret">The token secret</param>
- <returns></returns>
- </member>
- <member name="T:RestSharp.Authenticators.OAuth.OAuthWorkflow">
- <summary>
- A class to encapsulate OAuth authentication flow.
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- </summary>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildRequestTokenInfo(System.String)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of requesting an
- unauthorized request token.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildRequestTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of requesting an
- unauthorized request token.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildAccessTokenInfo(System.String)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of exchanging a request token
- for an access token authorized by the user at the Service Provider site.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildAccessTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of exchanging a request token
- for an access token authorized by the user at the Service Provider site.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- <param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildClientAuthAccessTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of exchanging user credentials
- for an access token authorized by the user at the Service Provider site.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://tools.ietf.org/html/draft-dehora-farrell-oauth-accesstoken-creds-00#section-4"/>
- <param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
- </member>
- <member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.RequestTokenUrl">
- <seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
- </member>
- <member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.AccessTokenUrl">
- <seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
- </member>
- <member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.AuthorizationUrl">
- <seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
- </member>
- <member name="T:RestSharp.Compression.ZLib.CRC32">
- <summary>
- Calculates a 32bit Cyclic Redundancy Checksum (CRC) using the same polynomial
- used by Zip. This type is used internally by DotNetZip; it is generally not used
- directly by applications wishing to create, read, or manipulate zip archive
- files.
- </summary>
- </member>
- <member name="M:RestSharp.Compression.ZLib.CRC32.GetCrc32(System.IO.Stream)">
- <summary>
- Returns the CRC32 for the specified stream.
- </summary>
- <param name="input">The stream over which to calculate the CRC32</param>
- <returns>the CRC32 calculation</returns>
- </member>
- <member name="M:RestSharp.Compression.ZLib.CRC32.GetCrc32AndCopy(System.IO.Stream,System.IO.Stream)">
- <summary>
- Returns the CRC32 for the specified stream, and writes the input into the
- output stream.
- </summary>
- <param name="input">The stream over which to calculate the CRC32</param>
- <param name="output">The stream into which to deflate the input</param>
- <returns>the CRC32 calculation</returns>
- </member>
- <member name="M:RestSharp.Compression.ZLib.CRC32.ComputeCrc32(System.Int32,System.Byte)">
- <summary>
- Get the CRC32 for the given (word,byte) combo. This is a computation
- defined by PKzip.
- </summary>
- <param name="W">The word to start with.</param>
- <param name="B">The byte to combine it with.</param>
- <returns>The CRC-ized result.</returns>
- </member>
- <member name="M:RestSharp.Compression.ZLib.CRC32.SlurpBlock(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Update the value for the running CRC32 using the given block of bytes.
- This is useful when using the CRC32() class in a Stream.
- </summary>
- <param name="block">block of bytes to slurp</param>
- <param name="offset">starting point in the block</param>
- <param name="count">how many bytes within the block to slurp</param>
- </member>
- <member name="P:RestSharp.Compression.ZLib.CRC32.TotalBytesRead">
- <summary>
- indicates the total number of bytes read on the CRC stream.
- This is used when writing the ZipDirEntry when compressing files.
- </summary>
- </member>
- <member name="P:RestSharp.Compression.ZLib.CRC32.Crc32Result">
- <summary>
- Indicates the current CRC for all blocks slurped in.
- </summary>
- </member>
- <member name="T:RestSharp.Compression.ZLib.CrcCalculatorStream">
- <summary>
- A Stream that calculates a CRC32 (a checksum) on all bytes read,
- or on all bytes written.
- </summary>
-
- <remarks>
- <para>
- This class can be used to verify the CRC of a ZipEntry when
- reading from a stream, or to calculate a CRC when writing to a
- stream. The stream should be used to either read, or write, but
- not both. If you intermix reads and writes, the results are not
- defined.
- </para>
-
- <para>
- This class is intended primarily for use internally by the
- DotNetZip library.
- </para>
- </remarks>
- </member>
- <member name="M:RestSharp.Compression.ZLib.CrcCalculatorStream.#ctor(System.IO.Stream)">
- <summary>
- The default constructor.
- </summary>
- <remarks>
- Instances returned from this constructor will leave the underlying stream
- open upon Close().
- </remarks>
- <param name="stream">The underlying stream</param>
- </member>
- <member name="M:RestSharp.Compression.ZLib.CrcCalculatorStream.#ctor(System.IO.Stream,System.Boolean)">
- <summary>
- The constructor allows the caller to specify how to handle the underlying
- stream at close.
- </summary>
- <param name="stream">The underlying stream</param>
- <param name="leaveOpen">true to leave the underlying stream
- open upon close of the CrcCalculatorStream.; false otherwise.</param>
- </member>
- <member name="M:RestSharp.Compression.ZLib.CrcCalculatorStream.#ctor(System.IO.Stream,System.Int64)">
- <summary>
- A constructor allowing the specification of the length of the stream to read.
- </summary>
- <remarks>
- Instances returned from this constructor will leave the underlying stream open
- upon Close().
- </remarks>
- <param name="stream">The underlying stream</param>
- <param name="length">The length of the stream to slurp</param>
- </member>
- <member name="M:RestSharp.Compression.ZLib.CrcCalculatorStream.#ctor(System.IO.Stream,System.Int64,System.Boolean)">
- <summary>
- A constructor allowing the specification of the length of the stream to
- read, as well as whether to keep the underlying stream open upon Close().
- </summary>
- <param name="stream">The underlying stream</param>
- <param name="length">The length of the stream to slurp</param>
- <param name="leaveOpen">true to leave the underlying stream
- open upon close of the CrcCalculatorStream.; false otherwise.</param>
- </member>
- <member name="M:RestSharp.Compression.ZLib.CrcCalculatorStream.Read(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Read from the stream
- </summary>
- <param name="buffer">the buffer to read</param>
- <param name="offset">the offset at which to start</param>
- <param name="count">the number of bytes to read</param>
- <returns>the number of bytes actually read</returns>
- </member>
- <member name="M:RestSharp.Compression.ZLib.CrcCalculatorStream.Write(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Write to the stream.
- </summary>
- <param name="buffer">the buffer from which to write</param>
- <param name="offset">the offset at which to start writing</param>
- <param name="count">the number of bytes to write</param>
- </member>
- <member name="M:RestSharp.Compression.ZLib.CrcCalculatorStream.Flush">
- <summary>
- Flush the stream.
- </summary>
- </member>
- <member name="M:RestSharp.Compression.ZLib.CrcCalculatorStream.Seek(System.Int64,System.IO.SeekOrigin)">
- <summary>
- Not implemented.
- </summary>
- <param name="offset">N/A</param>
- <param name="origin">N/A</param>
- <returns>N/A</returns>
- </member>
- <member name="M:RestSharp.Compression.ZLib.CrcCalculatorStream.SetLength(System.Int64)">
- <summary>
- Not implemented.
- </summary>
- <param name="value">N/A</param>
- </member>
- <member name="M:RestSharp.Compression.ZLib.CrcCalculatorStream.Close">
- <summary>
- Closes the stream.
- </summary>
- </member>
- <member name="P:RestSharp.Compression.ZLib.CrcCalculatorStream.TotalBytesSlurped">
- <summary>
- Gets the total number of bytes run through the CRC32 calculator.
- </summary>
-
- <remarks>
- This is either the total number of bytes read, or the total number of bytes
- written, depending on the direction of this stream.
- </remarks>
- </member>
- <member name="P:RestSharp.Compression.ZLib.CrcCalculatorStream.Crc">
- <summary>
- Provides the current CRC for all blocks slurped in.
- </summary>
- </member>
- <member name="P:RestSharp.Compression.ZLib.CrcCalculatorStream.LeaveOpen">
- <summary>
- Indicates whether the underlying stream will be left open when the
- CrcCalculatorStream is Closed.
- </summary>
- </member>
- <member name="P:RestSharp.Compression.ZLib.CrcCalculatorStream.CanRead">
- <summary>
- Indicates whether the stream supports reading.
- </summary>
- </member>
- <member name="P:RestSharp.Compression.ZLib.CrcCalculatorStream.CanSeek">
- <summary>
- Indicates whether the stream supports seeking.
- </summary>
- </member>
- <member name="P:RestSharp.Compression.ZLib.CrcCalculatorStream.CanWrite">
- <summary>
- Indicates whether the stream supports writing.
- </summary>
- </member>
- <member name="P:RestSharp.Compression.ZLib.CrcCalculatorStream.Length">
- <summary>
- Not implemented.
- </summary>
- </member>
- <member name="P:RestSharp.Compression.ZLib.CrcCalculatorStream.Position">
- <summary>
- Not implemented.
- </summary>
- </member>
- <member name="T:RestSharp.Compression.ZLib.FlushType">
- <summary>
- Describes how to flush the current deflate operation.
- </summary>
- <remarks>
- The different FlushType values are useful when using a Deflate in a streaming application.
- </remarks>
- </member>
- <member name="F:RestSharp.Compression.ZLib.FlushType.None">
- <summary>No flush at all.</summary>
- </member>
- <member name="F:RestSharp.Compression.ZLib.FlushType.Partial">
- <summary>Closes the current block, but doesn't flush it to
- the output. Used internally only in hypothetical
- scenarios. This was supposed to be removed by Zlib, but it is
- still in use in some edge cases.
- </summary>
- </member>
- <member name="F:RestSharp.Compression.ZLib.FlushType.Sync">
- <summary>
- Use this during compression to specify that all pending output should be
- flushed to the output buffer and the output should be aligned on a byte
- boundary. You might use this in a streaming communication scenario, so that
- the decompressor can get all input data available so far. When using this
- with a ZlibCodec, <c>AvailableBytesIn</c> will be zero after the call if
- enough output space has been provided before the call. Flushing will
- degrade compression and so it should be used only when necessary.
- </summary>
- </member>
- <member name="F:RestSharp.Compression.ZLib.FlushType.Full">
- <summary>
- Use this during compression to specify that all output should be flushed, as
- with <c>FlushType.Sync</c>, but also, the compression state should be reset
- so that decompression can restart from this point if previous compressed
- data has been damaged or if random access is desired. Using
- <c>FlushType.Full</c> too often can significantly degrade the compression.
- </summary>
- </member>
- <member name="F:RestSharp.Compression.ZLib.FlushType.Finish">
- <summary>Signals the end of the compression/decompression stream.</summary>
- </member>
- <member name="T:RestSharp.Compression.ZLib.GZipStream">
- <summary>
- A class for compressing and decompressing GZIP streams.
- </summary>
- <remarks>
-
- <para>
- The GZipStream is a <see href="http://en.wikipedia.org/wiki/Decorator_pattern">Decorator</see> on a <see cref="T:System.IO.Stream"/>. It adds GZIP compression or decompression to any stream.
- </para>
-
- <para> Like the <c>Compression.GZipStream</c> in the .NET Base
- Class Library, the Ionic.Zlib.GZipStream can compress while writing, or decompress
- while reading, but not vice versa. The compression method used is GZIP, which is
- documented in <see href="http://www.ietf.org/rfc/rfc1952.txt">IETF RFC 1952</see>,
- "GZIP file format specification version 4.3".</para>
-
- <para> A GZipStream can be used to decompress data (through Read()) or to compress
- data (through Write()), but not both. </para>
-
- <para> If you wish to use the GZipStream to compress data, you must wrap it around a
- write-able stream. As you call Write() on the GZipStream, the data will be
- compressed into the GZIP format. If you want to decompress data, you must wrap the
- GZipStream around a readable stream that contains an IETF RFC 1952-compliant stream.
- The data will be decompressed as you call Read() on the GZipStream. </para>
-
- <para> Though the GZIP format allows data from multiple files to be concatenated
- together, this stream handles only a single segment of GZIP format, typically
- representing a single file. </para>
-
- <para>
- This class is similar to <see cref="T:RestSharp.Compression.ZLib.ZlibStream"/> and <see cref="!:DeflateStream"/>.
- <c>ZlibStream</c> handles RFC1950-compliant streams. <see cref="!:DeflateStream"/>
- handles RFC1951-compliant streams. This class handles RFC1952-compliant streams.
- </para>
-
- </remarks>
-
- <seealso cref="!:DeflateStream"/>
- <seealso cref="T:RestSharp.Compression.ZLib.ZlibStream"/>
- </member>
- <member name="F:RestSharp.Compression.ZLib.GZipStream.LastModified">
- <summary>
- The last modified time for the GZIP stream.
- </summary>
-
- <remarks> GZIP allows the storage of a last modified time with each GZIP entry.
- When compressing data, you can set this before the first call to Write(). When
- decompressing, you can retrieve this value any time after the first call to
- Read(). </remarks>
- </member>
- <member name="M:RestSharp.Compression.ZLib.GZipStream.#ctor(System.IO.Stream)">
- <summary>
- Create a GZipStream using the specified CompressionMode and the specified CompressionLevel,
- and explicitly specify whether the stream should be left open after Deflation or Inflation.
- </summary>
- <remarks>
- <para>
- This constructor allows the application to request that the captive stream remain open after
- the deflation or inflation occurs. By default, after Close() is called on the stream, the
- captive stream is also closed. In some cases this is not desired, for example if the stream
- is a memory stream that will be re-read after compressed data has been written to it. Specify true for the
- leaveOpen parameter to leave the stream open.
- </para>
- <para>
- As noted in the class documentation,
- the CompressionMode (Compress or Decompress) also establishes the "direction" of the stream.
- A GZipStream with CompressionMode.Compress works only through Write(). A GZipStream with
- CompressionMode.Decompress works only through Read().
- </para>
- </remarks>
- <example>
- This example shows how to use a DeflateStream to compress data.
- <code>
- using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress))
- {
- using (var raw = System.IO.File.Create(outputFile))
- {
- using (Stream compressor = new GZipStream(raw, CompressionMode.Compress, CompressionLevel.BestCompression, true))
- {
- byte[] buffer = new byte[WORKING_BUFFER_SIZE];
- int n;
- while ((n= input.Read(buffer, 0, buffer.Length)) != 0)
- {
- compressor.Write(buffer, 0, n);
- }
- }
- }
- }
- </code>
- <code lang="VB">
- Dim outputFile As String = (fileToCompress & ".compressed")
- Using input As Stream = File.OpenRead(fileToCompress)
- Using raw As FileStream = File.Create(outputFile)
- Using compressor As Stream = New GZipStream(raw, CompressionMode.Compress, CompressionLevel.BestCompression, True)
- Dim buffer As Byte() = New Byte(4096) {}
- Dim n As Integer = -1
- Do While (n <> 0)
- If (n > 0) Then
- compressor.Write(buffer, 0, n)
- End If
- n = input.Read(buffer, 0, buffer.Length)
- Loop
- End Using
- End Using
- End Using
- </code>
- </example>
- <param name="stream">The stream which will be read or written.</param>
- <param name="mode">Indicates whether the GZipStream will compress or decompress.</param>
- <param name="leaveOpen">true if the application would like the stream to remain open after inflation/deflation.</param>
- <param name="level">A tuning knob to trade speed for effectiveness.</param>
- </member>
- <member name="M:RestSharp.Compression.ZLib.GZipStream.Dispose(System.Boolean)">
- <summary>
- Dispose the stream.
- </summary>
- <remarks>
- This may or may not result in a Close() call on the captive stream.
- See the ctor's with leaveOpen parameters for more information.
- </remarks>
- </member>
- <member name="M:RestSharp.Compression.ZLib.GZipStream.Flush">
- <summary>
- Flush the stream.
- </summary>
- </member>
- <member name="M:RestSharp.Compression.ZLib.GZipStream.Read(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Read and decompress data from the source stream.
- </summary>
- <remarks>
- With a GZipStream, decompression is done through reading.
- </remarks>
- <example>
- <code>
- byte[] working = new byte[WORKING_BUFFER_SIZE];
- using (System.IO.Stream input = System.IO.File.OpenRead(_CompressedFile))
- {
- using (Stream decompressor= new Ionic.Zlib.GZipStream(input, CompressionMode.Decompress, true))
- {
- using (var output = System.IO.File.Create(_DecompressedFile))
- {
- int n;
- while ((n= decompressor.Read(working, 0, working.Length)) !=0)
- {
- output.Write(working, 0, n);
- }
- }
- }
- }
- </code>
- </example>
- <param name="buffer">The buffer into which the decompressed data should be placed.</param>
- <param name="offset">the offset within that data array to put the first byte read.</param>
- <param name="count">the number of bytes to read.</param>
- <returns>the number of bytes actually read</returns>
- </member>
- <member name="M:RestSharp.Compression.ZLib.GZipStream.Seek(System.Int64,System.IO.SeekOrigin)">
- <summary>
- Calling this method always throws a <see cref="T:System.NotImplementedException"/>.
- </summary>
- <param name="offset">irrelevant; it will always throw!</param>
- <param name="origin">irrelevant; it will always throw!</param>
- <returns>irrelevant!</returns>
- </member>
- <member name="M:RestSharp.Compression.ZLib.GZipStream.SetLength(System.Int64)">
- <summary>
- Calling this method always throws a NotImplementedException.
- </summary>
- <param name="value">irrelevant; this method will always throw!</param>
- </member>
- <member name="P:RestSharp.Compression.ZLib.GZipStream.Comment">
- <summary>
- The Comment on the GZIP stream.
- </summary>
- <remarks>
- <para>
- The GZIP format allows for each file to optionally have an associated comment stored with the
- file. The comment is encoded with the ISO-8859-1 code page. To include a comment in
- a GZIP stream you create, set this property before calling Write() for the first time
- on the GZipStream.
- </para>
-
- <para>
- When using GZipStream to decompress, you can retrieve this property after the first
- call to Read(). If no comment has been set in the GZIP bytestream, the Comment
- property will return null (Nothing in VB).
- </para>
- </remarks>
- </member>
- <member name="P:RestSharp.Compression.ZLib.GZipStream.FileName">
- <summary>
- The FileName for the GZIP stream.
- </summary>
- <remarks>
- <para>
- The GZIP format optionally allows each file to have an associated filename. When
- compressing data (through Write()), set this FileName before calling Write() the first
- time on the GZipStream. The actual filename is encoded into the GZIP bytestream with
- the ISO-8859-1 code page, according to RFC 1952. It is the application's responsibility to
- insure that the FileName can be encoded and decoded correctly with this code page.
- </para>
- <para>
- When decompressing (through Read()), you can retrieve this value any time after the
- first Read(). In the case where there was no filename encoded into the GZIP
- bytestream, the property will return null (Nothing in VB).
- </para>
- </remarks>
- </member>
- <member name="P:RestSharp.Compression.ZLib.GZipStream.Crc32">
- <summary>
- The CRC on the GZIP stream.
- </summary>
- <remarks>
- This is used for internal error checking. You probably don't need to look at this property.
- </remarks>
- </member>
- <member name="P:RestSharp.Compression.ZLib.GZipStream.FlushMode">
- <summary>
- This property sets the flush behavior on the stream.
- </summary>
- </member>
- <member name="P:RestSharp.Compression.ZLib.GZipStream.BufferSize">
- <summary>
- The size of the working buffer for the compression codec.
- </summary>
-
- <remarks>
- <para>
- The working buffer is used for all stream operations. The default size is 1024 bytes.
- The minimum size is 128 bytes. You may get better performance with a larger buffer.
- Then again, you might not. You would have to test it.
- </para>
-
- <para>
- Set this before the first call to Read() or Write() on the stream. If you try to set it
- afterwards, it will throw.
- </para>
- </remarks>
- </member>
- <member name="P:RestSharp.Compression.ZLib.GZipStream.TotalIn">
- <summary> Returns the total number of bytes input so far.</summary>
- </member>
- <member name="P:RestSharp.Compression.ZLib.GZipStream.TotalOut">
- <summary> Returns the total number of bytes output so far.</summary>
- </member>
- <member name="P:RestSharp.Compression.ZLib.GZipStream.CanRead">
- <summary>
- Indicates whether the stream can be read.
- </summary>
- <remarks>
- The return value depends on whether the captive stream supports reading.
- </remarks>
- </member>
- <member name="P:RestSharp.Compression.ZLib.GZipStream.CanSeek">
- <summary>
- Indicates whether the stream supports Seek operations.
- </summary>
- <remarks>
- Always returns false.
- </remarks>
- </member>
- <member name="P:RestSharp.Compression.ZLib.GZipStream.CanWrite">
- <summary>
- Indicates whether the stream can be written.
- </summary>
- <remarks>
- The return value depends on whether the captive stream supports writing.
- </remarks>
- </member>
- <member name="P:RestSharp.Compression.ZLib.GZipStream.Length">
- <summary>
- Reading this property always throws a NotImplementedException.
- </summary>
- </member>
- <member name="P:RestSharp.Compression.ZLib.GZipStream.Position">
- <summary>
- The position of the stream pointer.
- </summary>
- <remarks>
- Writing this property always throws a NotImplementedException. Reading will
- return the total bytes written out, if used in writing, or the total bytes
- read in, if used in reading. The count may refer to compressed bytes or
- uncompressed bytes, depending on how you've used the stream.
- </remarks>
- </member>
- <member name="T:RestSharp.Compression.ZLib.ZlibException">
- <summary>
- A general purpose exception class for exceptions in the Zlib library.
- </summary>
- </member>
- <member name="M:RestSharp.Compression.ZLib.ZlibException.#ctor">
- <summary>
- The ZlibException class captures exception information generated
- by the Zlib library.
- </summary>
- </member>
- <member name="M:RestSharp.Compression.ZLib.ZlibException.#ctor(System.String)">
- <summary>
- This ctor collects a message attached to the exception.
- </summary>
- <param name="s"></param>
- </member>
- <member name="M:RestSharp.Compression.ZLib.SharedUtils.URShift(System.Int32,System.Int32)">
- <summary>
- Performs an unsigned bitwise right shift with the specified number
- </summary>
- <param name="number">Number to operate on</param>
- <param name="bits">Ammount of bits to shift</param>
- <returns>The resulting number from the shift operation</returns>
- </member>
- <member name="M:RestSharp.Compression.ZLib.SharedUtils.URShift(System.Int64,System.Int32)">
- <summary>
- Performs an unsigned bitwise right shift with the specified number
- </summary>
- <param name="number">Number to operate on</param>
- <param name="bits">Ammount of bits to shift</param>
- <returns>The resulting number from the shift operation</returns>
- </member>
- <member name="M:RestSharp.Compression.ZLib.SharedUtils.ReadInput(System.IO.TextReader,System.Byte[],System.Int32,System.Int32)">
- <summary>Reads a number of characters from the current source TextReader and writes the data to the target array at the specified index.</summary>
- <param name="sourceTextReader">The source TextReader to read from</param>
- <param name="target">Contains the array of characteres read from the source TextReader.</param>
- <param name="start">The starting index of the target array.</param>
- <param name="count">The maximum number of characters to read from the source TextReader.</param>
- <returns>The number of characters read. The number will be less than or equal to count depending on the data available in the source TextReader. Returns -1 if the end of the stream is reached.</returns>
- </member>
- <member name="T:RestSharp.Compression.ZLib.Adler">
- <summary>
- Computes an Adler-32 checksum.
- </summary>
- <remarks>
- The Adler checksum is similar to a CRC checksum, but faster to compute, though less
- reliable. It is used in producing RFC1950 compressed streams. The Adler checksum
- is a required part of the "ZLIB" standard. Applications will almost never need to
- use this class directly.
- </remarks>
- </member>
- <member name="T:RestSharp.Compression.ZLib.ZlibCodec">
- <summary>
- Encoder and Decoder for ZLIB and DEFLATE (IETF RFC1950 and RFC1951).
- </summary>
-
- <remarks>
- This class compresses and decompresses data according to the Deflate algorithm
- and optionally, the ZLIB format, as documented in <see
- href="http://www.ietf.org/rfc/rfc1950.txt">RFC 1950 - ZLIB</see> and <see
- href="http://www.ietf.org/rfc/rfc1951.txt">RFC 1951 - DEFLATE</see>.
- </remarks>
- </member>
- <member name="F:RestSharp.Compression.ZLib.ZlibCodec.InputBuffer">
- <summary>
- The buffer from which data is taken.
- </summary>
- </member>
- <member name="F:RestSharp.Compression.ZLib.ZlibCodec.NextIn">
- <summary>
- An index into the InputBuffer array, indicating where to start reading.
- </summary>
- </member>
- <member name="F:RestSharp.Compression.ZLib.ZlibCodec.AvailableBytesIn">
- <summary>
- The number of bytes available in the InputBuffer, starting at NextIn.
- </summary>
- <remarks>
- Generally you should set this to InputBuffer.Length before the first Inflate() or Deflate() call.
- The class will update this number as calls to Inflate/Deflate are made.
- </remarks>
- </member>
- <member name="F:RestSharp.Compression.ZLib.ZlibCodec.TotalBytesIn">
- <summary>
- Total number of bytes read so far, through all calls to Inflate()/Deflate().
- </summary>
- </member>
- <member name="F:RestSharp.Compression.ZLib.ZlibCodec.OutputBuffer">
- <summary>
- Buffer to store output data.
- </summary>
- </member>
- <member name="F:RestSharp.Compression.ZLib.ZlibCodec.NextOut">
- <summary>
- An index into the OutputBuffer array, indicating where to start writing.
- </summary>
- </member>
- <member name="F:RestSharp.Compression.ZLib.ZlibCodec.AvailableBytesOut">
- <summary>
- The number of bytes available in the OutputBuffer, starting at NextOut.
- </summary>
- <remarks>
- Generally you should set this to OutputBuffer.Length before the first Inflate() or Deflate() call.
- The class will update this number as calls to Inflate/Deflate are made.
- </remarks>
- </member>
- <member name="F:RestSharp.Compression.ZLib.ZlibCodec.TotalBytesOut">
- <summary>
- Total number of bytes written to the output so far, through all calls to Inflate()/Deflate().
- </summary>
- </member>
- <member name="F:RestSharp.Compression.ZLib.ZlibCodec.Message">
- <summary>
- used for diagnostics, when something goes wrong!
- </summary>
- </member>
- <member name="F:RestSharp.Compression.ZLib.ZlibCodec.WindowBits">
- <summary>
- The number of Window Bits to use.
- </summary>
- <remarks>
- This gauges the size of the sliding window, and hence the
- compression effectiveness as well as memory consumption. It's best to just leave this
- setting alone if you don't know what it is. The maximum value is 15 bits, which implies
- a 32k window.
- </remarks>
- </member>
- <member name="M:RestSharp.Compression.ZLib.ZlibCodec.#ctor">
- <summary>
- Create a ZlibCodec that decompresses.
- </summary>
- </member>
- <member name="M:RestSharp.Compression.ZLib.ZlibCodec.InitializeInflate">
- <summary>
- Initialize the inflation state.
- </summary>
- <remarks>
- It is not necessary to call this before using the ZlibCodec to inflate data;
- It is implicitly called when you call the constructor.
- </remarks>
- <returns>Z_OK if everything goes well.</returns>
- </member>
- <member name="M:RestSharp.Compression.ZLib.ZlibCodec.InitializeInflate(System.Boolean)">
- <summary>
- Initialize the inflation state with an explicit flag to
- govern the handling of RFC1950 header bytes.
- </summary>
-
- <remarks>
- By default, the ZLIB header defined in <see
- href="http://www.ietf.org/rfc/rfc1950.txt">RFC 1950</see> is expected. If
- you want to read a zlib stream you should specify true for
- expectRfc1950Header. If you have a deflate stream, you will want to specify
- false. It is only necessary to invoke this initializer explicitly if you
- want to specify false.
- </remarks>
-
- <param name="expectRfc1950Header">whether to expect an RFC1950 header byte
- pair when reading the stream of data to be inflated.</param>
-
- <returns>Z_OK if everything goes well.</returns>
- </member>
- <member name="M:RestSharp.Compression.ZLib.ZlibCodec.InitializeInflate(System.Int32)">
- <summary>
- Initialize the ZlibCodec for inflation, with the specified number of window bits.
- </summary>
- <param name="windowBits">The number of window bits to use. If you need to ask what that is,
- then you shouldn't be calling this initializer.</param>
- <returns>Z_OK if all goes well.</returns>
- </member>
- <member name="M:RestSharp.Compression.ZLib.ZlibCodec.InitializeInflate(System.Int32,System.Boolean)">
- <summary>
- Initialize the inflation state with an explicit flag to govern the handling of
- RFC1950 header bytes.
- </summary>
-
- <remarks>
- If you want to read a zlib stream you should specify true for
- expectRfc1950Header. In this case, the library will expect to find a ZLIB
- header, as defined in <see href="http://www.ietf.org/rfc/rfc1950.txt">RFC
- 1950</see>, in the compressed stream. If you will be reading a DEFLATE or
- GZIP stream, which does not have such a header, you will want to specify
- false.
- </remarks>
-
- <param name="expectRfc1950Header">whether to expect an RFC1950 header byte pair when reading
- the stream of data to be inflated.</param>
- <param name="windowBits">The number of window bits to use. If you need to ask what that is,
- then you shouldn't be calling this initializer.</param>
- <returns>Z_OK if everything goes well.</returns>
- </member>
- <member name="M:RestSharp.Compression.ZLib.ZlibCodec.Inflate(RestSharp.Compression.ZLib.FlushType)">
- <summary>
- Inflate the data in the InputBuffer, placing the result in the OutputBuffer.
- </summary>
- <remarks>
- You must have set InputBuffer and OutputBuffer, NextIn and NextOut, and AvailableBytesIn and
- AvailableBytesOut before calling this method.
- </remarks>
- <example>
- <code>
- private void InflateBuffer()
- {
- int bufferSize = 1024;
- byte[] buffer = new byte[bufferSize];
- ZlibCodec decompressor = new ZlibCodec();
-
- Console.WriteLine("\n============================================");
- Console.WriteLine("Size of Buffer to Inflate: {0} bytes.", CompressedBytes.Length);
- MemoryStream ms = new MemoryStream(DecompressedBytes);
-
- int rc = decompressor.InitializeInflate();
-
- decompressor.InputBuffer = CompressedBytes;
- decompressor.NextIn = 0;
- decompressor.AvailableBytesIn = CompressedBytes.Length;
-
- decompressor.OutputBuffer = buffer;
-
- // pass 1: inflate
- do
- {
- decompressor.NextOut = 0;
- decompressor.AvailableBytesOut = buffer.Length;
- rc = decompressor.Inflate(ZlibConstants.Z_NO_FLUSH);
-
- if (rc != ZlibConstants.Z_OK && rc != ZlibConstants.Z_STREAM_END)
- throw new Exception("inflating: " + decompressor.Message);
-
- ms.Write(decompressor.OutputBuffer, 0, buffer.Length - decompressor.AvailableBytesOut);
- }
- while (decompressor.AvailableBytesIn > 0 || decompressor.AvailableBytesOut == 0);
-
- // pass 2: finish and flush
- do
- {
- decompressor.NextOut = 0;
- decompressor.AvailableBytesOut = buffer.Length;
- rc = decompressor.Inflate(ZlibConstants.Z_FINISH);
-
- if (rc != ZlibConstants.Z_STREAM_END && rc != ZlibConstants.Z_OK)
- throw new Exception("inflating: " + decompressor.Message);
-
- if (buffer.Length - decompressor.AvailableBytesOut > 0)
- ms.Write(buffer, 0, buffer.Length - decompressor.AvailableBytesOut);
- }
- while (decompressor.AvailableBytesIn > 0 || decompressor.AvailableBytesOut == 0);
-
- decompressor.EndInflate();
- }
-
- </code>
- </example>
- <param name="flush">The flush to use when inflating.</param>
- <returns>Z_OK if everything goes well.</returns>
- </member>
- <member name="M:RestSharp.Compression.ZLib.ZlibCodec.EndInflate">
- <summary>
- Ends an inflation session.
- </summary>
- <remarks>
- Call this after successively calling Inflate(). This will cause all buffers to be flushed.
- After calling this you cannot call Inflate() without a intervening call to one of the
- InitializeInflate() overloads.
- </remarks>
- <returns>Z_OK if everything goes well.</returns>
- </member>
- <member name="M:RestSharp.Compression.ZLib.ZlibCodec.SyncInflate">
- <summary>
- I don't know what this does!
- </summary>
- <returns>Z_OK if everything goes well.</returns>
- </member>
- <member name="M:RestSharp.Compression.ZLib.ZlibCodec.SetDictionary(System.Byte[])">
- <summary>
- Set the dictionary to be used for either Inflation or Deflation.
- </summary>
- <param name="dictionary">The dictionary bytes to use.</param>
- <returns>Z_OK if all goes well.</returns>
- </member>
- <member name="P:RestSharp.Compression.ZLib.ZlibCodec.Adler32">
- <summary>
- The Adler32 checksum on the data transferred through the codec so far. You probably don't need to look at this.
- </summary>
- </member>
- <member name="T:RestSharp.Compression.ZLib.ZlibConstants">
- <summary>
- A bunch of constants used in the Zlib interface.
- </summary>
- </member>
- <member name="F:RestSharp.Compression.ZLib.ZlibConstants.WindowBitsMax">
- <summary>
- The maximum number of window bits for the Deflate algorithm.
- </summary>
- </member>
- <member name="F:RestSharp.Compression.ZLib.ZlibConstants.WindowBitsDefault">
- <summary>
- The default number of window bits for the Deflate algorithm.
- </summary>
- </member>
- <member name="F:RestSharp.Compression.ZLib.ZlibConstants.Z_OK">
- <summary>
- indicates everything is A-OK
- </summary>
- </member>
- <member name="F:RestSharp.Compression.ZLib.ZlibConstants.Z_STREAM_END">
- <summary>
- Indicates that the last operation reached the end of the stream.
- </summary>
- </member>
- <member name="F:RestSharp.Compression.ZLib.ZlibConstants.Z_NEED_DICT">
- <summary>
- The operation ended in need of a dictionary.
- </summary>
- </member>
- <member name="F:RestSharp.Compression.ZLib.ZlibConstants.Z_STREAM_ERROR">
- <summary>
- There was an error with the stream - not enough data, not open and readable, etc.
- </summary>
- </member>
- <member name="F:RestSharp.Compression.ZLib.ZlibConstants.Z_DATA_ERROR">
- <summary>
- There was an error with the data - not enough data, bad data, etc.
- </summary>
- </member>
- <member name="F:RestSharp.Compression.ZLib.ZlibConstants.Z_BUF_ERROR">
- <summary>
- There was an error with the working buffer.
- </summary>
- </member>
- <member name="F:RestSharp.Compression.ZLib.ZlibConstants.WorkingBufferSizeDefault">
- <summary>
- The size of the working buffer used in the ZlibCodec class. Defaults to 8192 bytes.
- </summary>
- </member>
- <member name="F:RestSharp.Compression.ZLib.ZlibConstants.WorkingBufferSizeMin">
- <summary>
- The minimum size of the working buffer used in the ZlibCodec class. Currently it is 128 bytes.
- </summary>
- </member>
- <member name="T:RestSharp.Compression.ZLib.ZlibStream">
- <summary>
- Represents a Zlib stream for compression or decompression.
- </summary>
- <remarks>
-
- <para>
- The ZlibStream is a <see href="http://en.wikipedia.org/wiki/Decorator_pattern">Decorator</see> on a <see cref="T:System.IO.Stream"/>. It adds ZLIB compression or decompression to any
- stream.
- </para>
-
- <para> Using this stream, applications can compress or decompress data via
- stream <c>Read</c> and <c>Write</c> operations. Either compresssion or
- decompression can occur through either reading or writing. The compression
- format used is ZLIB, which is documented in <see href="http://www.ietf.org/rfc/rfc1950.txt">IETF RFC 1950</see>, "ZLIB Compressed
- Data Format Specification version 3.3". This implementation of ZLIB always uses
- DEFLATE as the compression method. (see <see href="http://www.ietf.org/rfc/rfc1951.txt">IETF RFC 1951</see>, "DEFLATE
- Compressed Data Format Specification version 1.3.") </para>
-
- <para>
- The ZLIB format allows for varying compression methods, window sizes, and dictionaries.
- This implementation always uses the DEFLATE compression method, a preset dictionary,
- and 15 window bits by default.
- </para>
-
- <para>
- This class is similar to <see cref="!:DeflateStream"/>, except that it adds the
- RFC1950 header and trailer bytes to a compressed stream when compressing, or expects
- the RFC1950 header and trailer bytes when decompressing. It is also similar to the
- <see cref="T:RestSharp.Compression.ZLib.GZipStream"/>.
- </para>
- </remarks>
- <seealso cref="!:DeflateStream"/>
- <seealso cref="T:RestSharp.Compression.ZLib.GZipStream"/>
- </member>
- <member name="M:RestSharp.Compression.ZLib.ZlibStream.Dispose(System.Boolean)">
- <summary>
- Dispose the stream.
- </summary>
- <remarks>
- This may or may not result in a Close() call on the captive stream.
- See the constructors that have a leaveOpen parameter for more information.
- </remarks>
- </member>
- <member name="M:RestSharp.Compression.ZLib.ZlibStream.Flush">
- <summary>
- Flush the stream.
- </summary>
- </member>
- <member name="M:RestSharp.Compression.ZLib.ZlibStream.Read(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Read data from the stream.
- </summary>
-
- <remarks>
-
- <para>
- If you wish to use the ZlibStream to compress data while reading, you can create a
- ZlibStream with CompressionMode.Compress, providing an uncompressed data stream. Then
- call Read() on that ZlibStream, and the data read will be compressed. If you wish to
- use the ZlibStream to decompress data while reading, you can create a ZlibStream with
- CompressionMode.Decompress, providing a readable compressed data stream. Then call
- Read() on that ZlibStream, and the data will be decompressed as it is read.
- </para>
-
- <para>
- A ZlibStream can be used for Read() or Write(), but not both.
- </para>
- </remarks>
- <param name="buffer">The buffer into which the read data should be placed.</param>
- <param name="offset">the offset within that data array to put the first byte read.</param>
- <param name="count">the number of bytes to read.</param>
- </member>
- <member name="M:RestSharp.Compression.ZLib.ZlibStream.Seek(System.Int64,System.IO.SeekOrigin)">
- <summary>
- Calling this method always throws a NotImplementedException.
- </summary>
- </member>
- <member name="M:RestSharp.Compression.ZLib.ZlibStream.SetLength(System.Int64)">
- <summary>
- Calling this method always throws a NotImplementedException.
- </summary>
- </member>
- <member name="M:RestSharp.Compression.ZLib.ZlibStream.Write(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Write data to the stream.
- </summary>
-
- <remarks>
-
- <para>
- If you wish to use the ZlibStream to compress data while writing, you can create a
- ZlibStream with CompressionMode.Compress, and a writable output stream. Then call
- Write() on that ZlibStream, providing uncompressed data as input. The data sent to
- the output stream will be the compressed form of the data written. If you wish to use
- the ZlibStream to decompress data while writing, you can create a ZlibStream with
- CompressionMode.Decompress, and a writable output stream. Then call Write() on that
- stream, providing previously compressed data. The data sent to the output stream will
- be the decompressed form of the data written.
- </para>
-
- <para>
- A ZlibStream can be used for Read() or Write(), but not both.
- </para>
- </remarks>
- <param name="buffer">The buffer holding data to write to the stream.</param>
- <param name="offset">the offset within that data array to find the first byte to write.</param>
- <param name="count">the number of bytes to write.</param>
- </member>
- <member name="M:RestSharp.Compression.ZLib.ZlibStream.UncompressString(System.Byte[])">
- <summary>
- Uncompress a byte array into a single string.
- </summary>
- <seealso cref="!:ZlibStream.CompressString(String)"/>
- <param name="compressed">
- A buffer containing ZLIB-compressed data.
- </param>
- </member>
- <member name="M:RestSharp.Compression.ZLib.ZlibStream.UncompressBuffer(System.Byte[])">
- <summary>
- Uncompress a byte array into a byte array.
- </summary>
- <seealso cref="!:ZlibStream.CompressBuffer(byte[])"/>
- <seealso cref="M:RestSharp.Compression.ZLib.ZlibStream.UncompressString(System.Byte[])"/>
- <param name="compressed">
- A buffer containing ZLIB-compressed data.
- </param>
- </member>
- <member name="P:RestSharp.Compression.ZLib.ZlibStream.FlushMode">
- <summary>
- This property sets the flush behavior on the stream.
- Sorry, though, not sure exactly how to describe all the various settings.
- </summary>
- </member>
- <member name="P:RestSharp.Compression.ZLib.ZlibStream.BufferSize">
- <summary>
- The size of the working buffer for the compression codec.
- </summary>
-
- <remarks>
- <para>
- The working buffer is used for all stream operations. The default size is 1024 bytes.
- The minimum size is 128 bytes. You may get better performance with a larger buffer.
- Then again, you might not. You would have to test it.
- </para>
-
- <para>
- Set this before the first call to Read() or Write() on the stream. If you try to set it
- afterwards, it will throw.
- </para>
- </remarks>
- </member>
- <member name="P:RestSharp.Compression.ZLib.ZlibStream.TotalIn">
- <summary> Returns the total number of bytes input so far.</summary>
- </member>
- <member name="P:RestSharp.Compression.ZLib.ZlibStream.TotalOut">
- <summary> Returns the total number of bytes output so far.</summary>
- </member>
- <member name="P:RestSharp.Compression.ZLib.ZlibStream.CanRead">
- <summary>
- Indicates whether the stream can be read.
- </summary>
- <remarks>
- The return value depends on whether the captive stream supports reading.
- </remarks>
- </member>
- <member name="P:RestSharp.Compression.ZLib.ZlibStream.CanSeek">
- <summary>
- Indicates whether the stream supports Seek operations.
- </summary>
- <remarks>
- Always returns false.
- </remarks>
- </member>
- <member name="P:RestSharp.Compression.ZLib.ZlibStream.CanWrite">
- <summary>
- Indicates whether the stream can be written.
- </summary>
- <remarks>
- The return value depends on whether the captive stream supports writing.
- </remarks>
- </member>
- <member name="P:RestSharp.Compression.ZLib.ZlibStream.Length">
- <summary>
- Reading this property always throws a NotImplementedException.
- </summary>
- </member>
- <member name="P:RestSharp.Compression.ZLib.ZlibStream.Position">
- <summary>
- The position of the stream pointer.
- </summary>
- <remarks>
- Writing this property always throws a NotImplementedException. Reading will
- return the total bytes written out, if used in writing, or the total bytes
- read in, if used in reading. The count may refer to compressed bytes or
- uncompressed bytes, depending on how you've used the stream.
- </remarks>
- </member>
- <member name="T:RestSharp.Deserializers.DeserializeAsAttribute">
- <summary>
- Allows control how class and property names and values are deserialized by XmlAttributeDeserializer
- </summary>
- </member>
- <member name="P:RestSharp.Deserializers.DeserializeAsAttribute.Name">
- <summary>
- The name to use for the serialized element
- </summary>
- </member>
- <member name="P:RestSharp.Deserializers.DeserializeAsAttribute.Attribute">
- <summary>
- Sets if the property to Deserialize is an Attribute or Element (Default: false)
- </summary>
- </member>
- <member name="T:RestSharp.Deserializers.DotNetXmlDeserializer">
- <summary>
- Wrapper for System.Xml.Serialization.XmlSerializer.
- </summary>
- </member>
- <member name="T:RestSharp.ParameterType">
- <summary>
- Types of parameters that can be added to requests
- </summary>
- </member>
- <member name="T:RestSharp.DataFormat">
- <summary>
- Data formats
- </summary>
- </member>
- <member name="T:RestSharp.Method">
- <summary>
- HTTP method to use when making requests
- </summary>
- </member>
- <member name="T:RestSharp.DateFormat">
- <summary>
- Format strings for commonly-used date formats
- </summary>
- </member>
- <member name="F:RestSharp.DateFormat.Iso8601">
- <summary>
- .NET format string for ISO 8601 date format
- </summary>
- </member>
- <member name="F:RestSharp.DateFormat.RoundTrip">
- <summary>
- .NET format string for roundtrip date format
- </summary>
- </member>
- <member name="T:RestSharp.ResponseStatus">
- <summary>
- Status for responses (surprised?)
- </summary>
- </member>
- <member name="T:RestSharp.Extensions.MiscExtensions">
- <summary>
- Extension method overload!
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.ReadAsBytes(System.IO.Stream)">
- <summary>
- Read a stream into a byte array
- </summary>
- <param name="input">Stream to read</param>
- <returns>byte[]</returns>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.CopyTo(System.IO.Stream,System.IO.Stream)">
- <summary>
- Copies bytes from one stream to another
- </summary>
- <param name="input">The input stream.</param>
- <param name="output">The output stream.</param>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.AsString(System.Byte[])">
- <summary>
- Converts a byte array to a string, using its byte order mark to convert it to the right encoding.
- http://www.shrinkrays.net/code-snippets/csharp/an-extension-method-for-converting-a-byte-array-to-a-string.aspx
- </summary>
- <param name="buffer">An array of bytes to convert</param>
- <returns>The byte as a string.</returns>
- </member>
- <member name="T:RestSharp.Extensions.ReflectionExtensions">
- <summary>
- Reflection extensions
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.ReflectionExtensions.GetAttribute``1(System.Reflection.MemberInfo)">
- <summary>
- Retrieve an attribute from a member (property)
- </summary>
- <typeparam name="T">Type of attribute to retrieve</typeparam>
- <param name="prop">Member to retrieve attribute from</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.ReflectionExtensions.GetAttribute``1(System.Type)">
- <summary>
- Retrieve an attribute from a type
- </summary>
- <typeparam name="T">Type of attribute to retrieve</typeparam>
- <param name="type">Type to retrieve attribute from</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.ReflectionExtensions.IsSubclassOfRawGeneric(System.Type,System.Type)">
- <summary>
- Checks a type to see if it derives from a raw generic (e.g. List[[]])
- </summary>
- <param name="toCheck"></param>
- <param name="generic"></param>
- <returns></returns>
- </member>
- <!-- Badly formed XML comment ignored for member "M:RestSharp.Extensions.ReflectionExtensions.FindEnumValue(System.Type,System.String,System.Globalization.CultureInfo)" -->
- <member name="M:RestSharp.Extensions.StringExtensions.UrlEncode(System.String)">
- <summary>
- Uses Uri.EscapeDataString() based on recommendations on MSDN
- http://blogs.msdn.com/b/yangxind/archive/2006/11/09/don-t-use-net-system-uri-unescapedatastring-in-url-decoding.aspx
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.HasValue(System.String)">
- <summary>
- Check that a string is not null or empty
- </summary>
- <param name="input">String to check</param>
- <returns>bool</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.RemoveUnderscoresAndDashes(System.String)">
- <summary>
- Remove underscores from a string
- </summary>
- <param name="input">String to process</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ParseJsonDate(System.String,System.Globalization.CultureInfo)">
- <summary>
- Parses most common JSON date formats
- </summary>
- <param name="input">JSON value to parse</param>
- <returns>DateTime</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.RemoveSurroundingQuotes(System.String)">
- <summary>
- Remove leading and trailing " from a string
- </summary>
- <param name="input">String to parse</param>
- <returns>String</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.Matches(System.String,System.String)">
- <summary>
- Checks a string to see if it matches a regex
- </summary>
- <param name="input">String to check</param>
- <param name="pattern">Pattern to match</param>
- <returns>bool</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ToPascalCase(System.String,System.Globalization.CultureInfo)">
- <summary>
- Converts a string to pascal case
- </summary>
- <param name="lowercaseAndUnderscoredWord">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ToPascalCase(System.String,System.Boolean,System.Globalization.CultureInfo)">
- <summary>
- Converts a string to pascal case with the option to remove underscores
- </summary>
- <param name="text">String to convert</param>
- <param name="removeUnderscores">Option to remove underscores</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ToCamelCase(System.String,System.Globalization.CultureInfo)">
- <summary>
- Converts a string to camel case
- </summary>
- <param name="lowercaseAndUnderscoredWord">String to convert</param>
- <returns>String</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.MakeInitialLowerCase(System.String)">
- <summary>
- Convert the first letter of a string to lower case
- </summary>
- <param name="word">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.IsUpperCase(System.String)">
- <summary>
- Checks to see if a string is all uppper case
- </summary>
- <param name="inputString">String to check</param>
- <returns>bool</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.AddUnderscores(System.String)">
- <summary>
- Add underscores to a pascal-cased string
- </summary>
- <param name="pascalCasedWord">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.AddDashes(System.String)">
- <summary>
- Add dashes to a pascal-cased string
- </summary>
- <param name="pascalCasedWord">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.AddUnderscorePrefix(System.String)">
- <summary>
- Add an undescore prefix to a pascasl-cased string
- </summary>
- <param name="pascalCasedWord"></param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.GetNameVariants(System.String,System.Globalization.CultureInfo)">
- <summary>
- Return possible variants of a name for name matching.
- </summary>
- <param name="name">String to convert</param>
- <param name="culture">The culture to use for conversion</param>
- <returns>IEnumerable<string></returns>
- </member>
- <member name="T:RestSharp.Extensions.XmlExtensions">
- <summary>
- XML Extension Methods
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.XmlExtensions.AsNamespaced(System.String,System.String)">
- <summary>
- Returns the name of an element with the namespace if specified
- </summary>
- <param name="name">Element name</param>
- <param name="namespace">XML Namespace</param>
- <returns></returns>
- </member>
- <member name="T:RestSharp.FileParameter">
- <summary>
- Container for files to be uploaded with requests
- </summary>
- </member>
- <member name="M:RestSharp.FileParameter.Create(System.String,System.Byte[],System.String,System.String)">
- <summary>
- Creates a file parameter from an array of bytes.
- </summary>
- <param name="name">The parameter name to use in the request.</param>
- <param name="data">The data to use as the file's contents.</param>
- <param name="filename">The filename to use in the request.</param>
- <param name="contentType">The content type to use in the request.</param>
- <returns>The <see cref="T:RestSharp.FileParameter"/></returns>
- </member>
- <member name="M:RestSharp.FileParameter.Create(System.String,System.Byte[],System.String)">
- <summary>
- Creates a file parameter from an array of bytes.
- </summary>
- <param name="name">The parameter name to use in the request.</param>
- <param name="data">The data to use as the file's contents.</param>
- <param name="filename">The filename to use in the request.</param>
- <returns>The <see cref="T:RestSharp.FileParameter"/> using the default content type.</returns>
- </member>
- <member name="P:RestSharp.FileParameter.ContentLength">
- <summary>
- The length of data to be sent
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.Writer">
- <summary>
- Provides raw data for file
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.FileName">
- <summary>
- Name of the file to use when uploading
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.ContentType">
- <summary>
- MIME content type of file
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.Http">
- <summary>
- HttpWebRequest wrapper (async methods)
- </summary>
- <summary>
- HttpWebRequest wrapper
- </summary>
- </member>
- <member name="M:RestSharp.Http.AsPostAsync(System.Action{RestSharp.HttpResponse},System.String)">
- <summary>
- Execute an async POST-style request with the specified HTTP Method.
- </summary>
- <param name="httpMethod">The HTTP method to execute.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Http.AsGetAsync(System.Action{RestSharp.HttpResponse},System.String)">
- <summary>
- Execute an async GET-style request with the specified HTTP Method.
- </summary>
- <param name="httpMethod">The HTTP method to execute.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Http.Create">
- <summary>
- Creates an IHttp
- </summary>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Http.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:RestSharp.Http.HasParameters">
- <summary>
- True if this HTTP request has any HTTP parameters
- </summary>
- </member>
- <member name="P:RestSharp.Http.HasCookies">
- <summary>
- True if this HTTP request has any HTTP cookies
- </summary>
- </member>
- <member name="P:RestSharp.Http.HasBody">
- <summary>
- True if a request body has been specified
- </summary>
- </member>
- <member name="P:RestSharp.Http.HasFiles">
- <summary>
- True if files have been set to be uploaded
- </summary>
- </member>
- <member name="P:RestSharp.Http.UserAgent">
- <summary>
- UserAgent to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Timeout">
- <summary>
- Timeout in milliseconds to be used for the request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Credentials">
- <summary>
- System.Net.ICredentials to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.CookieContainer">
- <summary>
- The System.Net.CookieContainer to be used for the request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Files">
- <summary>
- Collection of files to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.FollowRedirects">
- <summary>
- Whether or not HTTP 3xx response redirects should be automatically followed
- </summary>
- </member>
- <member name="P:RestSharp.Http.Headers">
- <summary>
- HTTP headers to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Parameters">
- <summary>
- HTTP parameters (QueryString or Form values) to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Cookies">
- <summary>
- HTTP cookies to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.RequestBody">
- <summary>
- Request body to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.RequestContentType">
- <summary>
- Content type of the request body.
- </summary>
- </member>
- <member name="P:RestSharp.Http.Url">
- <summary>
- URL to call for this request
- </summary>
- </member>
- <member name="T:RestSharp.HttpCookie">
- <summary>
- Representation of an HTTP cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Comment">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.CommentUri">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Discard">
- <summary>
- Indicates whether the cookie should be discarded at the end of the session
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Domain">
- <summary>
- Domain of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Expired">
- <summary>
- Indicates whether the cookie is expired
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Expires">
- <summary>
- Date and time that the cookie expires
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.HttpOnly">
- <summary>
- Indicates that this cookie should only be accessed by the server
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Name">
- <summary>
- Name of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Path">
- <summary>
- Path of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Port">
- <summary>
- Port of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Secure">
- <summary>
- Indicates that the cookie should only be sent over secure channels
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.TimeStamp">
- <summary>
- Date and time the cookie was created
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Value">
- <summary>
- Value of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Version">
- <summary>
- Version of the cookie
- </summary>
- </member>
- <member name="T:RestSharp.HttpFile">
- <summary>
- Container for HTTP file
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.ContentLength">
- <summary>
- The length of data to be sent
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.Writer">
- <summary>
- Provides raw data for file
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.FileName">
- <summary>
- Name of the file to use when uploading
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.ContentType">
- <summary>
- MIME content type of file
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.HttpHeader">
- <summary>
- Representation of an HTTP header
- </summary>
- </member>
- <member name="P:RestSharp.HttpHeader.Name">
- <summary>
- Name of the header
- </summary>
- </member>
- <member name="P:RestSharp.HttpHeader.Value">
- <summary>
- Value of the header
- </summary>
- </member>
- <member name="T:RestSharp.HttpParameter">
- <summary>
- Representation of an HTTP parameter (QueryString or Form value)
- </summary>
- </member>
- <member name="P:RestSharp.HttpParameter.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="P:RestSharp.HttpParameter.Value">
- <summary>
- Value of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.HttpResponse">
- <summary>
- HTTP response data
- </summary>
- </member>
- <member name="T:RestSharp.IHttpResponse">
- <summary>
- HTTP response data
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Content">
- <summary>
- String representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ErrorException">
- <summary>
- Exception thrown when error is encountered.
- </summary>
- </member>
- <member name="M:RestSharp.HttpResponse.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Content">
- <summary>
- Lazy-loaded string representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ErrorException">
- <summary>
- Exception thrown when error is encountered.
- </summary>
- </member>
- <member name="T:RestSharp.IRestClient">
- <summary>
-
- </summary>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsync(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle})">
- <summary>
-
- </summary>
- <param name="request"></param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsync``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle})">
- <summary>
-
- </summary>
- <param name="request"></param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncGet(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncPost(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a POST-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncGet``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncPost``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="P:RestSharp.IRestClient.CookieContainer">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.UserAgent">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.Timeout">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.UseSynchronizationContext">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.Authenticator">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.BaseUrl">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.DefaultParameters">
- <summary>
-
- </summary>
- </member>
- <member name="M:RestSharp.IRestRequest.AddBody(System.Object,System.String)">
- <summary>
- Serializes obj to format specified by RequestFormat, but passes xmlNamespace if using the default XmlSerializer
- </summary>
- <param name="obj">The object to serialize</param>
- <param name="xmlNamespace">The XML namespace to use when serializing</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddBody(System.Object)">
- <summary>
- Serializes obj to data format specified by RequestFormat and adds it to the request body.
- </summary>
- <param name="obj">The object to serialize</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddObject(System.Object,System.String[])">
- <summary>
- Calls AddParameter() for all public, readable properties specified in the white list
- </summary>
- <example>
- request.AddObject(product, "ProductId", "Price", ...);
- </example>
- <param name="obj">The object with properties to add as parameters</param>
- <param name="whitelist">The names of the properties to include</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddObject(System.Object)">
- <summary>
- Calls AddParameter() for all public, readable properties of obj
- </summary>
- <param name="obj">The object with properties to add as parameters</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddParameter(RestSharp.Parameter)">
- <summary>
- Add the parameter to the request
- </summary>
- <param name="p">Parameter to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddParameter(System.String,System.Object)">
- <summary>
- Adds a HTTP parameter to the request (QueryString for GET, DELETE, OPTIONS and HEAD; Encoded form for POST and PUT)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddParameter(System.String,System.Object,RestSharp.ParameterType)">
- <summary>
- Adds a parameter to the request. There are five types of parameters:
- - GetOrPost: Either a QueryString value or encoded form value based on method
- - HttpHeader: Adds the name/value pair to the HTTP request's Headers collection
- - UrlSegment: Inserted into URL if there is a matching url token e.g. {AccountId}
- - Cookie: Adds the name/value pair to the HTTP request's Cookies collection
- - RequestBody: Used by AddBody() (not recommended to use directly)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <param name="type">The type of parameter to add</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddHeader(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, HttpHeader) overload
- </summary>
- <param name="name">Name of the header to add</param>
- <param name="value">Value of the header to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddCookie(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, Cookie) overload
- </summary>
- <param name="name">Name of the cookie to add</param>
- <param name="value">Value of the cookie to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddUrlSegment(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, UrlSegment) overload
- </summary>
- <param name="name">Name of the segment to add</param>
- <param name="value">Value of the segment to add</param>
- <returns></returns>
- </member>
- <member name="P:RestSharp.IRestRequest.JsonSerializer">
- <summary>
- Serializer to use when writing JSON request bodies. Used if RequestFormat is Json.
- By default the included JsonSerializer is used (currently using JSON.NET default serialization).
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.XmlSerializer">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default the included XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Parameters">
- <summary>
- Container of all HTTP parameters to be passed with the request.
- See AddParameter() for explanation of the types of parameters that can be passed
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Files">
- <summary>
- Container of all the files to be uploaded with the request.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Method">
- <summary>
- Determines what HTTP method to use for this request. Supported methods: GET, POST, PUT, DELETE, HEAD, OPTIONS
- Default is GET
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Resource">
- <summary>
- The Resource URL to make the request against.
- Tokens are substituted with UrlSegment parameters and match by name.
- Should not include the scheme or domain. Do not include leading slash.
- Combined with RestClient.BaseUrl to assemble final URL:
- {BaseUrl}/{Resource} (BaseUrl is scheme + domain, e.g. http://example.com)
- </summary>
- <example>
- // example for url token replacement
- request.Resource = "Products/{ProductId}";
- request.AddParameter("ProductId", 123, ParameterType.UrlSegment);
- </example>
- </member>
- <member name="P:RestSharp.IRestRequest.RequestFormat">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.RootElement">
- <summary>
- Used by the default deserializers to determine where to start deserializing from.
- Can be used to skip container or root elements that do not have corresponding deserialzation targets.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.DateFormat">
- <summary>
- Used by the default deserializers to explicitly set which date format string to use when parsing dates.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.XmlNamespace">
- <summary>
- Used by XmlDeserializer. If not specified, XmlDeserializer will flatten response by removing namespaces from element names.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Credentials">
- <summary>
- In general you would not need to set this directly. Used by the NtlmAuthenticator.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Timeout">
- <summary>
- Timeout in milliseconds to be used for the request. This timeout value overrides a timeout set on the RestClient.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Attempts">
- <summary>
- How many attempts were made to send this Request?
- </summary>
- <remarks>
- This Number is incremented each time the RestClient sends the request.
- Useful when using Asynchronous Execution with Callbacks
- </remarks>
- </member>
- <member name="T:RestSharp.IRestResponse">
- <summary>
- Container for data sent back from API
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Request">
- <summary>
- The RestRequest that was made to get this RestResponse
- </summary>
- <remarks>
- Mainly for debugging if ResponseStatus is not OK
- </remarks>
- </member>
- <member name="P:RestSharp.IRestResponse.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Content">
- <summary>
- String representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ErrorException">
- <summary>
- The exception thrown during the request, if any
- </summary>
- </member>
- <member name="T:RestSharp.IRestResponse`1">
- <summary>
- Container for data sent back from API including deserialized data
- </summary>
- <typeparam name="T">Type of data to deserialize to</typeparam>
- </member>
- <member name="P:RestSharp.IRestResponse`1.Data">
- <summary>
- Deserialized entity data
- </summary>
- </member>
- <member name="T:RestSharp.Parameter">
- <summary>
- Parameter container for REST requests
- </summary>
- </member>
- <member name="M:RestSharp.Parameter.ToString">
- <summary>
- Return a human-readable representation of this parameter
- </summary>
- <returns>String</returns>
- </member>
- <member name="P:RestSharp.Parameter.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="P:RestSharp.Parameter.Value">
- <summary>
- Value of the parameter
- </summary>
- </member>
- <member name="P:RestSharp.Parameter.Type">
- <summary>
- Type of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.RestClient">
- <summary>
- Client to translate RestRequests into Http requests and process response result
- </summary>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsync(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncGet(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncPost(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a POST-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsync``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncGet``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncPost``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a POST-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.#ctor">
- <summary>
- Default constructor that registers default content handlers
- </summary>
- </member>
- <member name="M:RestSharp.RestClient.#ctor(System.String)">
- <summary>
- Sets the BaseUrl property for requests made by this client instance
- </summary>
- <param name="baseUrl"></param>
- </member>
- <member name="M:RestSharp.RestClient.AddHandler(System.String,RestSharp.Deserializers.IDeserializer)">
- <summary>
- Registers a content handler to process response content
- </summary>
- <param name="contentType">MIME content type of the response content</param>
- <param name="deserializer">Deserializer to use to process content</param>
- </member>
- <member name="M:RestSharp.RestClient.RemoveHandler(System.String)">
- <summary>
- Remove a content handler for the specified MIME content type
- </summary>
- <param name="contentType">MIME content type to remove</param>
- </member>
- <member name="M:RestSharp.RestClient.ClearHandlers">
- <summary>
- Remove all content handlers
- </summary>
- </member>
- <member name="M:RestSharp.RestClient.GetHandler(System.String)">
- <summary>
- Retrieve the handler for the specified MIME content type
- </summary>
- <param name="contentType">MIME content type to retrieve</param>
- <returns>IDeserializer instance</returns>
- </member>
- <member name="M:RestSharp.RestClient.BuildUri(RestSharp.IRestRequest)">
- <summary>
- Assembles URL to call based on parameters, method and resource
- </summary>
- <param name="request">RestRequest to execute</param>
- <returns>Assembled System.Uri</returns>
- </member>
- <member name="P:RestSharp.RestClient.DefaultParameters">
- <summary>
- Parameters included with every request made with this instance of RestClient
- If specified in both client and request, the request wins
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.MaxRedirects">
- <summary>
- Maximum number of redirects to follow if FollowRedirects is true
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.FollowRedirects">
- <summary>
- Default is true. Determine whether or not requests that result in
- HTTP status codes of 3xx should follow returned redirect
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.CookieContainer">
- <summary>
- The CookieContainer used for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.UserAgent">
- <summary>
- UserAgent to use for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.Timeout">
- <summary>
- Timeout in milliseconds to use for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.UseSynchronizationContext">
- <summary>
- Whether to invoke async callbacks using the SynchronizationContext.Current captured when invoked
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.Authenticator">
- <summary>
- Authenticator to use for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.BaseUrl">
- <summary>
- Combined with Request.Resource to construct URL for request
- Should include scheme and domain without trailing slash.
- </summary>
- <example>
- client.BaseUrl = "http://example.com";
- </example>
- </member>
- <member name="M:RestSharp.RestClientExtensions.ExecuteAsync(RestSharp.IRestClient,RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <param name="client">The IRestClient this method extends</param>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- </member>
- <member name="M:RestSharp.RestClientExtensions.ExecuteAsync``1(RestSharp.IRestClient,RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0}})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <param name="client">The IRestClient this method extends</param>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle</param>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultParameter(RestSharp.IRestClient,RestSharp.Parameter)">
- <summary>
- Add a parameter to use on every request made with this client instance
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="p">Parameter to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultParameter(RestSharp.IRestClient,System.String,System.Object)">
- <summary>
- Adds a HTTP parameter (QueryString for GET, DELETE, OPTIONS and HEAD; Encoded form for POST and PUT)
- Used on every request made by this client instance
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultParameter(RestSharp.IRestClient,System.String,System.Object,RestSharp.ParameterType)">
- <summary>
- Adds a parameter to the request. There are four types of parameters:
- - GetOrPost: Either a QueryString value or encoded form value based on method
- - HttpHeader: Adds the name/value pair to the HTTP request's Headers collection
- - UrlSegment: Inserted into URL if there is a matching url token e.g. {AccountId}
- - RequestBody: Used by AddBody() (not recommended to use directly)
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <param name="type">The type of parameter to add</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultHeader(RestSharp.IRestClient,System.String,System.String)">
- <summary>
- Shortcut to AddDefaultParameter(name, value, HttpHeader) overload
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the header to add</param>
- <param name="value">Value of the header to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultUrlSegment(RestSharp.IRestClient,System.String,System.String)">
- <summary>
- Shortcut to AddDefaultParameter(name, value, UrlSegment) overload
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the segment to add</param>
- <param name="value">Value of the segment to add</param>
- <returns></returns>
- </member>
- <member name="T:RestSharp.RestRequest">
- <summary>
- Container for data used to make requests
- </summary>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(RestSharp.Method)">
- <summary>
- Sets Method property to value of method
- </summary>
- <param name="method">Method to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.String)">
- <summary>
- Sets Resource property
- </summary>
- <param name="resource">Resource to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.String,RestSharp.Method)">
- <summary>
- Sets Resource and Method properties
- </summary>
- <param name="resource">Resource to use for this request</param>
- <param name="method">Method to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.Uri)">
- <summary>
- Sets Resource property
- </summary>
- <param name="resource">Resource to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.Uri,RestSharp.Method)">
- <summary>
- Sets Resource and Method properties
- </summary>
- <param name="resource">Resource to use for this request</param>
- <param name="method">Method to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.String)">
- <summary>
- Adds a file to the Files collection to be included with a POST or PUT request
- (other methods do not support file uploads).
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="path">Full path to file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Byte[],System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="bytes">The file data</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Byte[],System.String,System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name and content type
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="bytes">The file data</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <param name="contentType">The MIME type of the file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Action{System.IO.Stream},System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name and content type
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="writer">A function that writes directly to the stream. Should NOT close the stream.</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Action{System.IO.Stream},System.String,System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name and content type
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="writer">A function that writes directly to the stream. Should NOT close the stream.</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <param name="contentType">The MIME type of the file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddBody(System.Object,System.String)">
- <summary>
- Serializes obj to format specified by RequestFormat, but passes xmlNamespace if using the default XmlSerializer
- </summary>
- <param name="obj">The object to serialize</param>
- <param name="xmlNamespace">The XML namespace to use when serializing</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddBody(System.Object)">
- <summary>
- Serializes obj to data format specified by RequestFormat and adds it to the request body.
- </summary>
- <param name="obj">The object to serialize</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddObject(System.Object,System.String[])">
- <summary>
- Calls AddParameter() for all public, readable properties specified in the white list
- </summary>
- <example>
- request.AddObject(product, "ProductId", "Price", ...);
- </example>
- <param name="obj">The object with properties to add as parameters</param>
- <param name="whitelist">The names of the properties to include</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddObject(System.Object)">
- <summary>
- Calls AddParameter() for all public, readable properties of obj
- </summary>
- <param name="obj">The object with properties to add as parameters</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddParameter(RestSharp.Parameter)">
- <summary>
- Add the parameter to the request
- </summary>
- <param name="p">Parameter to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddParameter(System.String,System.Object)">
- <summary>
- Adds a HTTP parameter to the request (QueryString for GET, DELETE, OPTIONS and HEAD; Encoded form for POST and PUT)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddParameter(System.String,System.Object,RestSharp.ParameterType)">
- <summary>
- Adds a parameter to the request. There are four types of parameters:
- - GetOrPost: Either a QueryString value or encoded form value based on method
- - HttpHeader: Adds the name/value pair to the HTTP request's Headers collection
- - UrlSegment: Inserted into URL if there is a matching url token e.g. {AccountId}
- - RequestBody: Used by AddBody() (not recommended to use directly)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <param name="type">The type of parameter to add</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddHeader(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, HttpHeader) overload
- </summary>
- <param name="name">Name of the header to add</param>
- <param name="value">Value of the header to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddCookie(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, Cookie) overload
- </summary>
- <param name="name">Name of the cookie to add</param>
- <param name="value">Value of the cookie to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddUrlSegment(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, UrlSegment) overload
- </summary>
- <param name="name">Name of the segment to add</param>
- <param name="value">Value of the segment to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.IncreaseNumAttempts">
- <summary>
- Internal Method so that RestClient can increase the number of attempts
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.JsonSerializer">
- <summary>
- Serializer to use when writing JSON request bodies. Used if RequestFormat is Json.
- By default the included JsonSerializer is used (currently using JSON.NET default serialization).
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.XmlSerializer">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default the included XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Parameters">
- <summary>
- Container of all HTTP parameters to be passed with the request.
- See AddParameter() for explanation of the types of parameters that can be passed
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Files">
- <summary>
- Container of all the files to be uploaded with the request.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Method">
- <summary>
- Determines what HTTP method to use for this request. Supported methods: GET, POST, PUT, DELETE, HEAD, OPTIONS
- Default is GET
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Resource">
- <summary>
- The Resource URL to make the request against.
- Tokens are substituted with UrlSegment parameters and match by name.
- Should not include the scheme or domain. Do not include leading slash.
- Combined with RestClient.BaseUrl to assemble final URL:
- {BaseUrl}/{Resource} (BaseUrl is scheme + domain, e.g. http://example.com)
- </summary>
- <example>
- // example for url token replacement
- request.Resource = "Products/{ProductId}";
- request.AddParameter("ProductId", 123, ParameterType.UrlSegment);
- </example>
- </member>
- <member name="P:RestSharp.RestRequest.RequestFormat">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.RootElement">
- <summary>
- Used by the default deserializers to determine where to start deserializing from.
- Can be used to skip container or root elements that do not have corresponding deserialzation targets.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.OnBeforeDeserialization">
- <summary>
- A function to run prior to deserializing starting (e.g. change settings if error encountered)
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.DateFormat">
- <summary>
- Used by the default deserializers to explicitly set which date format string to use when parsing dates.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.XmlNamespace">
- <summary>
- Used by XmlDeserializer. If not specified, XmlDeserializer will flatten response by removing namespaces from element names.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Credentials">
- <summary>
- In general you would not need to set this directly. Used by the NtlmAuthenticator.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.UserState">
- <summary>
- Gets or sets a user-defined state object that contains information about a request and which can be later
- retrieved when the request completes.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Timeout">
- <summary>
- Timeout in milliseconds to be used for the request. This timeout value overrides a timeout set on the RestClient.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Attempts">
- <summary>
- How many attempts were made to send this Request?
- </summary>
- <remarks>
- This Number is incremented each time the RestClient sends the request.
- Useful when using Asynchronous Execution with Callbacks
- </remarks>
- </member>
- <member name="T:RestSharp.RestResponseBase">
- <summary>
- Base class for common properties shared by RestResponse and RestResponse[[T]]
- </summary>
- </member>
- <member name="M:RestSharp.RestResponseBase.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Request">
- <summary>
- The RestRequest that was made to get this RestResponse
- </summary>
- <remarks>
- Mainly for debugging if ResponseStatus is not OK
- </remarks>
- </member>
- <member name="P:RestSharp.RestResponseBase.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Content">
- <summary>
- String representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ErrorException">
- <summary>
- The exception thrown during the request, if any
- </summary>
- </member>
- <member name="T:RestSharp.RestResponse`1">
- <summary>
- Container for data sent back from API including deserialized data
- </summary>
- <typeparam name="T">Type of data to deserialize to</typeparam>
- </member>
- <member name="P:RestSharp.RestResponse`1.Data">
- <summary>
- Deserialized entity data
- </summary>
- </member>
- <member name="T:RestSharp.RestResponse">
- <summary>
- Container for data sent back from API
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.DotNetXmlSerializer">
- <summary>
- Wrapper for System.Xml.Serialization.XmlSerializer.
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.DotNetXmlSerializer.#ctor">
- <summary>
- Default constructor, does not specify namespace
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.DotNetXmlSerializer.#ctor(System.String)">
- <summary>
- Specify the namespaced to be used when serializing
- </summary>
- <param name="namespace">XML namespace</param>
- </member>
- <member name="M:RestSharp.Serializers.DotNetXmlSerializer.Serialize(System.Object)">
- <summary>
- Serialize the object as XML
- </summary>
- <param name="obj">Object to serialize</param>
- <returns>XML as string</returns>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.RootElement">
- <summary>
- Name of the root element to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.Namespace">
- <summary>
- XML namespace to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.DateFormat">
- <summary>
- Format string to use when serializing dates
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.ContentType">
- <summary>
- Content type for serialized content
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.Encoding">
- <summary>
- Encoding for serialized content
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.DotNetXmlSerializer.EncodingStringWriter">
- <summary>
- Need to subclass StringWriter in order to override Encoding
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.JsonSerializer">
- <summary>
- Default JSON serializer for request bodies
- Doesn't currently use the SerializeAs attribute, defers to Newtonsoft's attributes
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.JsonSerializer.#ctor">
- <summary>
- Default serializer
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.JsonSerializer.Serialize(System.Object)">
- <summary>
- Serialize the object as JSON
- </summary>
- <param name="obj">Object to serialize</param>
- <returns>JSON as String</returns>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.DateFormat">
- <summary>
- Unused for JSON Serialization
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.RootElement">
- <summary>
- Unused for JSON Serialization
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.Namespace">
- <summary>
- Unused for JSON Serialization
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.ContentType">
- <summary>
- Content type for serialized content
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.SerializeAsAttribute">
- <summary>
- Allows control how class and property names and values are serialized by XmlSerializer
- Currently not supported with the JsonSerializer
- When specified at the property level the class-level specification is overridden
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.SerializeAsAttribute.TransformName(System.String)">
- <summary>
- Called by the attribute when NameStyle is speficied
- </summary>
- <param name="input">The string to transform</param>
- <returns>String</returns>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Name">
- <summary>
- The name to use for the serialized element
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Attribute">
- <summary>
- Sets the value to be serialized as an Attribute instead of an Element
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Culture">
- <summary>
- The culture to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.NameStyle">
- <summary>
- Transforms the casing of the name based on the selected value.
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Index">
- <summary>
- The order to serialize the element. Default is int.MaxValue.
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.NameStyle">
- <summary>
- Options for transforming casing of element names
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.XmlSerializer">
- <summary>
- Default XML Serializer
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.XmlSerializer.#ctor">
- <summary>
- Default constructor, does not specify namespace
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.XmlSerializer.#ctor(System.String)">
- <summary>
- Specify the namespaced to be used when serializing
- </summary>
- <param name="namespace">XML namespace</param>
- </member>
- <member name="M:RestSharp.Serializers.XmlSerializer.Serialize(System.Object)">
- <summary>
- Serialize the object as XML
- </summary>
- <param name="obj">Object to serialize</param>
- <returns>XML as string</returns>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.RootElement">
- <summary>
- Name of the root element to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.Namespace">
- <summary>
- XML namespace to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.DateFormat">
- <summary>
- Format string to use when serializing dates
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.ContentType">
- <summary>
- Content type for serialized content
- </summary>
- </member>
- <member name="T:RestSharp.JsonArray">
- <summary>
- Represents the json array.
- </summary>
- </member>
- <member name="M:RestSharp.JsonArray.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.JsonArray"/> class.
- </summary>
- </member>
- <member name="M:RestSharp.JsonArray.#ctor(System.Int32)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.JsonArray"/> class.
- </summary>
- <param name="capacity">The capacity of the json array.</param>
- </member>
- <member name="M:RestSharp.JsonArray.ToString">
- <summary>
- The json representation of the array.
- </summary>
- <returns>The json representation of the array.</returns>
- </member>
- <member name="T:RestSharp.JsonObject">
- <summary>
- Represents the json object.
- </summary>
- </member>
- <member name="F:RestSharp.JsonObject._members">
- <summary>
- The internal member dictionary.
- </summary>
- </member>
- <member name="M:RestSharp.JsonObject.Add(System.String,System.Object)">
- <summary>
- Adds the specified key.
- </summary>
- <param name="key">The key.</param>
- <param name="value">The value.</param>
- </member>
- <member name="M:RestSharp.JsonObject.ContainsKey(System.String)">
- <summary>
- Determines whether the specified key contains key.
- </summary>
- <param name="key">The key.</param>
- <returns>
- <c>true</c> if the specified key contains key; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.Remove(System.String)">
- <summary>
- Removes the specified key.
- </summary>
- <param name="key">The key.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.TryGetValue(System.String,System.Object@)">
- <summary>
- Tries the get value.
- </summary>
- <param name="key">The key.</param>
- <param name="value">The value.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.Add(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
- <summary>
- Adds the specified item.
- </summary>
- <param name="item">The item.</param>
- </member>
- <member name="M:RestSharp.JsonObject.Clear">
- <summary>
- Clears this instance.
- </summary>
- </member>
- <member name="M:RestSharp.JsonObject.Contains(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
- <summary>
- Determines whether [contains] [the specified item].
- </summary>
- <param name="item">The item.</param>
- <returns>
- <c>true</c> if [contains] [the specified item]; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Object}[],System.Int32)">
- <summary>
- Copies to.
- </summary>
- <param name="array">The array.</param>
- <param name="arrayIndex">Index of the array.</param>
- </member>
- <member name="M:RestSharp.JsonObject.Remove(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
- <summary>
- Removes the specified item.
- </summary>
- <param name="item">The item.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.GetEnumerator">
- <summary>
- Gets the enumerator.
- </summary>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.System#Collections#IEnumerable#GetEnumerator">
- <summary>
- Returns an enumerator that iterates through a collection.
- </summary>
- <returns>
- An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.ToString">
- <summary>
- Returns a json <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
- </summary>
- <returns>
- A json <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
- </returns>
- </member>
- <member name="P:RestSharp.JsonObject.Item(System.Int32)">
- <summary>
- Gets the <see cref="T:System.Object"/> at the specified index.
- </summary>
- <value></value>
- </member>
- <member name="P:RestSharp.JsonObject.Keys">
- <summary>
- Gets the keys.
- </summary>
- <value>The keys.</value>
- </member>
- <member name="P:RestSharp.JsonObject.Values">
- <summary>
- Gets the values.
- </summary>
- <value>The values.</value>
- </member>
- <member name="P:RestSharp.JsonObject.Item(System.String)">
- <summary>
- Gets or sets the <see cref="T:System.Object"/> with the specified key.
- </summary>
- <value></value>
- </member>
- <member name="P:RestSharp.JsonObject.Count">
- <summary>
- Gets the count.
- </summary>
- <value>The count.</value>
- </member>
- <member name="P:RestSharp.JsonObject.IsReadOnly">
- <summary>
- Gets a value indicating whether this instance is read only.
- </summary>
- <value>
- <c>true</c> if this instance is read only; otherwise, <c>false</c>.
- </value>
- </member>
- <member name="T:RestSharp.SimpleJson">
- <summary>
- This class encodes and decodes JSON strings.
- Spec. details, see http://www.json.org/
-
- JSON uses Arrays and Objects. These correspond here to the datatypes JsonArray(IList<object>) and JsonObject(IDictionary<string,object>).
- All numbers are parsed to doubles.
- </summary>
- </member>
- <member name="M:RestSharp.SimpleJson.DeserializeObject(System.String)">
- <summary>
- Parses the string json into a value
- </summary>
- <param name="json">A JSON string.</param>
- <returns>An IList<object>, a IDictionary<string,object>, a double, a string, null, true, or false</returns>
- </member>
- <member name="M:RestSharp.SimpleJson.TryDeserializeObject(System.String,System.Object@)">
- <summary>
- Try parsing the json string into a value.
- </summary>
- <param name="json">
- A JSON string.
- </param>
- <param name="object">
- The object.
- </param>
- <returns>
- Returns true if successfull otherwise false.
- </returns>
- </member>
- <member name="M:RestSharp.SimpleJson.SerializeObject(System.Object,RestSharp.IJsonSerializerStrategy)">
- <summary>
- Converts a IDictionary<string,object> / IList<object> object into a JSON string
- </summary>
- <param name="json">A IDictionary<string,object> / IList<object></param>
- <param name="jsonSerializerStrategy">Serializer strategy to use</param>
- <returns>A JSON encoded string, or null if object 'json' is not serializable</returns>
- </member>
- <member name="M:RestSharp.SimpleJson.IsNumeric(System.Object)">
- <summary>
- Determines if a given object is numeric in any way
- (can be integer, double, null, etc).
- </summary>
- </member>
- <member name="T:RestSharp.Validation.Require">
- <summary>
- Helper methods for validating required values
- </summary>
- </member>
- <member name="M:RestSharp.Validation.Require.Argument(System.String,System.Object)">
- <summary>
- Require a parameter to not be null
- </summary>
- <param name="argumentName">Name of the parameter</param>
- <param name="argumentValue">Value of the parameter</param>
- </member>
- <member name="T:RestSharp.Validation.Validate">
- <summary>
- Helper methods for validating values
- </summary>
- </member>
- <member name="M:RestSharp.Validation.Validate.IsBetween(System.Int32,System.Int32,System.Int32)">
- <summary>
- Validate an integer value is between the specified values (exclusive of min/max)
- </summary>
- <param name="value">Value to validate</param>
- <param name="min">Exclusive minimum value</param>
- <param name="max">Exclusive maximum value</param>
- </member>
- <member name="M:RestSharp.Validation.Validate.IsValidLength(System.String,System.Int32)">
- <summary>
- Validate a string length
- </summary>
- <param name="value">String to be validated</param>
- <param name="maxSize">Maximum length of the string</param>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Comment">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.CommentUri">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Discard">
- <summary>
- Indicates whether the cookie should be discarded at the end of the session
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Domain">
- <summary>
- Domain of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Expired">
- <summary>
- Indicates whether the cookie is expired
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Expires">
- <summary>
- Date and time that the cookie expires
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.HttpOnly">
- <summary>
- Indicates that this cookie should only be accessed by the server
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Name">
- <summary>
- Name of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Path">
- <summary>
- Path of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Port">
- <summary>
- Port of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Secure">
- <summary>
- Indicates that the cookie should only be sent over secure channels
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.TimeStamp">
- <summary>
- Date and time the cookie was created
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Value">
- <summary>
- Value of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Version">
- <summary>
- Version of the cookie
- </summary>
- </member>
- </members>
-</doc>
diff --git a/SendGrid/packages/RestSharp.104.1/lib/sl4/RestSharp.Silverlight.dll b/SendGrid/packages/RestSharp.104.1/lib/sl4/RestSharp.Silverlight.dll Binary files differdeleted file mode 100644 index c6b2687..0000000 --- a/SendGrid/packages/RestSharp.104.1/lib/sl4/RestSharp.Silverlight.dll +++ /dev/null diff --git a/SendGrid/packages/RestSharp.104.1/lib/sl4/RestSharp.Silverlight.xml b/SendGrid/packages/RestSharp.104.1/lib/sl4/RestSharp.Silverlight.xml deleted file mode 100644 index 48c9c62..0000000 --- a/SendGrid/packages/RestSharp.104.1/lib/sl4/RestSharp.Silverlight.xml +++ /dev/null @@ -1,2429 +0,0 @@ -<?xml version="1.0"?>
-<doc>
- <assembly>
- <name>RestSharp.Silverlight</name>
- </assembly>
- <members>
- <member name="T:RestSharp.Authenticators.OAuth1Authenticator">
- <seealso href="http://tools.ietf.org/html/rfc5849"/>
- </member>
- <member name="T:RestSharp.OAuth2Authenticator">
- <summary>
- Base class for OAuth 2 Authenticators.
- </summary>
- <remarks>
- Since there are many ways to authenticate in OAuth2,
- this is used as a base class to differentiate between
- other authenticators.
-
- Any other OAuth2 authenticators must derive from this
- abstract class.
- </remarks>
- </member>
- <member name="F:RestSharp.OAuth2Authenticator._accessToken">
- <summary>
- Access token to be used when authenticating.
- </summary>
- </member>
- <member name="M:RestSharp.OAuth2Authenticator.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.OAuth2Authenticator"/> class.
- </summary>
- <param name="accessToken">
- The access token.
- </param>
- </member>
- <member name="P:RestSharp.OAuth2Authenticator.AccessToken">
- <summary>
- Gets the access token.
- </summary>
- </member>
- <member name="T:RestSharp.OAuth2UriQueryParameterAuthenticator">
- <summary>
- The OAuth 2 authenticator using URI query parameter.
- </summary>
- <remarks>
- Based on http://tools.ietf.org/html/draft-ietf-oauth-v2-10#section-5.1.2
- </remarks>
- </member>
- <member name="M:RestSharp.OAuth2UriQueryParameterAuthenticator.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.OAuth2UriQueryParameterAuthenticator"/> class.
- </summary>
- <param name="accessToken">
- The access token.
- </param>
- </member>
- <member name="T:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator">
- <summary>
- The OAuth 2 authenticator using the authorization request header field.
- </summary>
- <remarks>
- Based on http://tools.ietf.org/html/draft-ietf-oauth-v2-10#section-5.1.1
- </remarks>
- </member>
- <member name="F:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator._authorizationValue">
- <summary>
- Stores the Authoriztion header value as "OAuth accessToken". used for performance.
- </summary>
- </member>
- <member name="M:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator"/> class.
- </summary>
- <param name="accessToken">
- The access token.
- </param>
- </member>
- <member name="F:RestSharp.Authenticators.OAuth.OAuthTools._encoding">
- <summary>
- All text parameters are UTF-8 encoded (per section 5.1).
- </summary>
- <seealso cref="!:http://www.hueniverse.com/hueniverse/2008/10/beginners-gui-1.html"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetNonce">
- <summary>
- Generates a random 16-byte lowercase alphanumeric string.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#nonce"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetTimestamp">
- <summary>
- Generates a timestamp based on the current elapsed seconds since '01/01/1970 0000 GMT"
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#nonce"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetTimestamp(System.DateTime)">
- <summary>
- Generates a timestamp based on the elapsed seconds of a given time since '01/01/1970 0000 GMT"
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#nonce"/>
- <param name="dateTime">A specified point in time.</param>
- <returns></returns>
- </member>
- <member name="F:RestSharp.Authenticators.OAuth.OAuthTools.UriRfc3986CharsToEscape">
- <summary>
- The set of characters that are unreserved in RFC 2396 but are NOT unreserved in RFC 3986.
- </summary>
- <seealso cref="!:http://stackoverflow.com/questions/846487/how-to-get-uri-escapedatastring-to-comply-with-rfc-3986"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.UrlEncodeRelaxed(System.String)">
- <summary>
- URL encodes a string based on section 5.1 of the OAuth spec.
- Namely, percent encoding with [RFC3986], avoiding unreserved characters,
- upper-casing hexadecimal characters, and UTF-8 encoding for text value pairs.
- </summary>
- <param name="value">The value to escape.</param>
- <returns>The escaped value.</returns>
- <remarks>
- The <see cref="M:System.Uri.EscapeDataString(System.String)"/> method is <i>supposed</i> to take on
- RFC 3986 behavior if certain elements are present in a .config file. Even if this
- actually worked (which in my experiments it <i>doesn't</i>), we can't rely on every
- host actually having this configuration element present.
- </remarks>
- <seealso cref="!:http://oauth.net/core/1.0#encoding_parameters"/>
- <seealso cref="!:http://stackoverflow.com/questions/846487/how-to-get-uri-escapedatastring-to-comply-with-rfc-3986"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.UrlEncodeStrict(System.String)">
- <summary>
- URL encodes a string based on section 5.1 of the OAuth spec.
- Namely, percent encoding with [RFC3986], avoiding unreserved characters,
- upper-casing hexadecimal characters, and UTF-8 encoding for text value pairs.
- </summary>
- <param name="value"></param>
- <seealso cref="!:http://oauth.net/core/1.0#encoding_parameters"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.NormalizeRequestParameters(RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Sorts a collection of key-value pairs by name, and then value if equal,
- concatenating them into a single string. This string should be encoded
- prior to, or after normalization is run.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.1"/>
- <param name="parameters"></param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.SortParametersExcludingSignature(RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Sorts a <see cref="T:RestSharp.Authenticators.OAuth.WebParameterCollection"/> by name, and then value if equal.
- </summary>
- <param name="parameters">A collection of parameters to sort</param>
- <returns>A sorted parameter collection</returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.ConstructRequestUrl(System.Uri)">
- <summary>
- Creates a request URL suitable for making OAuth requests.
- Resulting URLs must exclude port 80 or port 443 when accompanied by HTTP and HTTPS, respectively.
- Resulting URLs must be lower case.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.2"/>
- <param name="url">The original request URL</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.ConcatenateRequestElements(System.String,System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Creates a request elements concatentation value to send with a request.
- This is also known as the signature base.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.3"/>
- <seealso cref="!:http://oauth.net/core/1.0#sig_base_example"/>
- <param name="method">The request's HTTP method type</param>
- <param name="url">The request URL</param>
- <param name="parameters">The request's parameters</param>
- <returns>A signature base string</returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret.
- This method is used when the token secret is currently unknown.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer key</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,RestSharp.Authenticators.OAuth.OAuthSignatureTreatment,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret.
- This method is used when the token secret is currently unknown.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureTreatment">The treatment to use on a signature value</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer key</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,System.String,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret and a known token secret.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer secret</param>
- <param name="tokenSecret">The token secret</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,RestSharp.Authenticators.OAuth.OAuthSignatureTreatment,System.String,System.String,System.String)">
- <summary>
- Creates a signature value given a signature base and the consumer secret and a known token secret.
- </summary>
- <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
- <param name="signatureMethod">The hashing method</param>
- <param name="signatureTreatment">The treatment to use on a signature value</param>
- <param name="signatureBase">The signature base</param>
- <param name="consumerSecret">The consumer secret</param>
- <param name="tokenSecret">The token secret</param>
- <returns></returns>
- </member>
- <member name="T:RestSharp.Authenticators.OAuth.OAuthWorkflow">
- <summary>
- A class to encapsulate OAuth authentication flow.
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- </summary>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildRequestTokenInfo(System.String)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of requesting an
- unauthorized request token.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildRequestTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of requesting an
- unauthorized request token.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildAccessTokenInfo(System.String)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of exchanging a request token
- for an access token authorized by the user at the Service Provider site.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildAccessTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of exchanging a request token
- for an access token authorized by the user at the Service Provider site.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
- <param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
- </member>
- <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildClientAuthAccessTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
- <summary>
- Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
- <see cref="T:RestSharp.IAuthenticator"/> for the purpose of exchanging user credentials
- for an access token authorized by the user at the Service Provider site.
- </summary>
- <param name="method">The HTTP method for the intended request</param>
- <seealso cref="!:http://tools.ietf.org/html/draft-dehora-farrell-oauth-accesstoken-creds-00#section-4"/>
- <param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
- </member>
- <member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.RequestTokenUrl">
- <seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
- </member>
- <member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.AccessTokenUrl">
- <seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
- </member>
- <member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.AuthorizationUrl">
- <seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
- </member>
- <member name="T:RestSharp.Deserializers.DeserializeAsAttribute">
- <summary>
- Allows control how class and property names and values are deserialized by XmlAttributeDeserializer
- </summary>
- </member>
- <member name="P:RestSharp.Deserializers.DeserializeAsAttribute.Name">
- <summary>
- The name to use for the serialized element
- </summary>
- </member>
- <member name="P:RestSharp.Deserializers.DeserializeAsAttribute.Attribute">
- <summary>
- Sets if the property to Deserialize is an Attribute or Element (Default: false)
- </summary>
- </member>
- <member name="T:RestSharp.Deserializers.DotNetXmlDeserializer">
- <summary>
- Wrapper for System.Xml.Serialization.XmlSerializer.
- </summary>
- </member>
- <member name="T:RestSharp.ParameterType">
- <summary>
- Types of parameters that can be added to requests
- </summary>
- </member>
- <member name="T:RestSharp.DataFormat">
- <summary>
- Data formats
- </summary>
- </member>
- <member name="T:RestSharp.Method">
- <summary>
- HTTP method to use when making requests
- </summary>
- </member>
- <member name="T:RestSharp.DateFormat">
- <summary>
- Format strings for commonly-used date formats
- </summary>
- </member>
- <member name="F:RestSharp.DateFormat.Iso8601">
- <summary>
- .NET format string for ISO 8601 date format
- </summary>
- </member>
- <member name="F:RestSharp.DateFormat.RoundTrip">
- <summary>
- .NET format string for roundtrip date format
- </summary>
- </member>
- <member name="T:RestSharp.ResponseStatus">
- <summary>
- Status for responses (surprised?)
- </summary>
- </member>
- <member name="T:RestSharp.Extensions.MiscExtensions">
- <summary>
- Extension method overload!
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.SaveAs(System.Byte[],System.String)">
- <summary>
- Save a byte array to a file
- </summary>
- <param name="input">Bytes to save</param>
- <param name="path">Full path to save file to</param>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.ReadAsBytes(System.IO.Stream)">
- <summary>
- Read a stream into a byte array
- </summary>
- <param name="input">Stream to read</param>
- <returns>byte[]</returns>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.CopyTo(System.IO.Stream,System.IO.Stream)">
- <summary>
- Copies bytes from one stream to another
- </summary>
- <param name="input">The input stream.</param>
- <param name="output">The output stream.</param>
- </member>
- <member name="M:RestSharp.Extensions.MiscExtensions.AsString(System.Byte[])">
- <summary>
- Converts a byte array to a string, using its byte order mark to convert it to the right encoding.
- http://www.shrinkrays.net/code-snippets/csharp/an-extension-method-for-converting-a-byte-array-to-a-string.aspx
- </summary>
- <param name="buffer">An array of bytes to convert</param>
- <returns>The byte as a string.</returns>
- </member>
- <member name="T:RestSharp.Extensions.ReflectionExtensions">
- <summary>
- Reflection extensions
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.ReflectionExtensions.GetAttribute``1(System.Reflection.MemberInfo)">
- <summary>
- Retrieve an attribute from a member (property)
- </summary>
- <typeparam name="T">Type of attribute to retrieve</typeparam>
- <param name="prop">Member to retrieve attribute from</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.ReflectionExtensions.GetAttribute``1(System.Type)">
- <summary>
- Retrieve an attribute from a type
- </summary>
- <typeparam name="T">Type of attribute to retrieve</typeparam>
- <param name="type">Type to retrieve attribute from</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.ReflectionExtensions.IsSubclassOfRawGeneric(System.Type,System.Type)">
- <summary>
- Checks a type to see if it derives from a raw generic (e.g. List[[]])
- </summary>
- <param name="toCheck"></param>
- <param name="generic"></param>
- <returns></returns>
- </member>
- <!-- Badly formed XML comment ignored for member "M:RestSharp.Extensions.ReflectionExtensions.FindEnumValue(System.Type,System.String,System.Globalization.CultureInfo)" -->
- <member name="M:RestSharp.Extensions.StringExtensions.UrlEncode(System.String)">
- <summary>
- Uses Uri.EscapeDataString() based on recommendations on MSDN
- http://blogs.msdn.com/b/yangxind/archive/2006/11/09/don-t-use-net-system-uri-unescapedatastring-in-url-decoding.aspx
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.HasValue(System.String)">
- <summary>
- Check that a string is not null or empty
- </summary>
- <param name="input">String to check</param>
- <returns>bool</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.RemoveUnderscoresAndDashes(System.String)">
- <summary>
- Remove underscores from a string
- </summary>
- <param name="input">String to process</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ParseJsonDate(System.String,System.Globalization.CultureInfo)">
- <summary>
- Parses most common JSON date formats
- </summary>
- <param name="input">JSON value to parse</param>
- <returns>DateTime</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.RemoveSurroundingQuotes(System.String)">
- <summary>
- Remove leading and trailing " from a string
- </summary>
- <param name="input">String to parse</param>
- <returns>String</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.Matches(System.String,System.String)">
- <summary>
- Checks a string to see if it matches a regex
- </summary>
- <param name="input">String to check</param>
- <param name="pattern">Pattern to match</param>
- <returns>bool</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ToPascalCase(System.String,System.Globalization.CultureInfo)">
- <summary>
- Converts a string to pascal case
- </summary>
- <param name="lowercaseAndUnderscoredWord">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ToPascalCase(System.String,System.Boolean,System.Globalization.CultureInfo)">
- <summary>
- Converts a string to pascal case with the option to remove underscores
- </summary>
- <param name="text">String to convert</param>
- <param name="removeUnderscores">Option to remove underscores</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.ToCamelCase(System.String,System.Globalization.CultureInfo)">
- <summary>
- Converts a string to camel case
- </summary>
- <param name="lowercaseAndUnderscoredWord">String to convert</param>
- <returns>String</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.MakeInitialLowerCase(System.String)">
- <summary>
- Convert the first letter of a string to lower case
- </summary>
- <param name="word">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.IsUpperCase(System.String)">
- <summary>
- Checks to see if a string is all uppper case
- </summary>
- <param name="inputString">String to check</param>
- <returns>bool</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.AddUnderscores(System.String)">
- <summary>
- Add underscores to a pascal-cased string
- </summary>
- <param name="pascalCasedWord">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.AddDashes(System.String)">
- <summary>
- Add dashes to a pascal-cased string
- </summary>
- <param name="pascalCasedWord">String to convert</param>
- <returns>string</returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.AddUnderscorePrefix(System.String)">
- <summary>
- Add an undescore prefix to a pascasl-cased string
- </summary>
- <param name="pascalCasedWord"></param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Extensions.StringExtensions.GetNameVariants(System.String,System.Globalization.CultureInfo)">
- <summary>
- Return possible variants of a name for name matching.
- </summary>
- <param name="name">String to convert</param>
- <param name="culture">The culture to use for conversion</param>
- <returns>IEnumerable<string></returns>
- </member>
- <member name="T:RestSharp.Extensions.XmlExtensions">
- <summary>
- XML Extension Methods
- </summary>
- </member>
- <member name="M:RestSharp.Extensions.XmlExtensions.AsNamespaced(System.String,System.String)">
- <summary>
- Returns the name of an element with the namespace if specified
- </summary>
- <param name="name">Element name</param>
- <param name="namespace">XML Namespace</param>
- <returns></returns>
- </member>
- <member name="T:RestSharp.FileParameter">
- <summary>
- Container for files to be uploaded with requests
- </summary>
- </member>
- <member name="M:RestSharp.FileParameter.Create(System.String,System.Byte[],System.String,System.String)">
- <summary>
- Creates a file parameter from an array of bytes.
- </summary>
- <param name="name">The parameter name to use in the request.</param>
- <param name="data">The data to use as the file's contents.</param>
- <param name="filename">The filename to use in the request.</param>
- <param name="contentType">The content type to use in the request.</param>
- <returns>The <see cref="T:RestSharp.FileParameter"/></returns>
- </member>
- <member name="M:RestSharp.FileParameter.Create(System.String,System.Byte[],System.String)">
- <summary>
- Creates a file parameter from an array of bytes.
- </summary>
- <param name="name">The parameter name to use in the request.</param>
- <param name="data">The data to use as the file's contents.</param>
- <param name="filename">The filename to use in the request.</param>
- <returns>The <see cref="T:RestSharp.FileParameter"/> using the default content type.</returns>
- </member>
- <member name="P:RestSharp.FileParameter.ContentLength">
- <summary>
- The length of data to be sent
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.Writer">
- <summary>
- Provides raw data for file
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.FileName">
- <summary>
- Name of the file to use when uploading
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.ContentType">
- <summary>
- MIME content type of file
- </summary>
- </member>
- <member name="P:RestSharp.FileParameter.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.Http">
- <summary>
- HttpWebRequest wrapper (async methods)
- </summary>
- <summary>
- HttpWebRequest wrapper
- </summary>
- </member>
- <member name="M:RestSharp.Http.AsPostAsync(System.Action{RestSharp.HttpResponse},System.String)">
- <summary>
- Execute an async POST-style request with the specified HTTP Method.
- </summary>
- <param name="httpMethod">The HTTP method to execute.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Http.AsGetAsync(System.Action{RestSharp.HttpResponse},System.String)">
- <summary>
- Execute an async GET-style request with the specified HTTP Method.
- </summary>
- <param name="httpMethod">The HTTP method to execute.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Http.Create">
- <summary>
- Creates an IHttp
- </summary>
- <returns></returns>
- </member>
- <member name="M:RestSharp.Http.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:RestSharp.Http.HasParameters">
- <summary>
- True if this HTTP request has any HTTP parameters
- </summary>
- </member>
- <member name="P:RestSharp.Http.HasCookies">
- <summary>
- True if this HTTP request has any HTTP cookies
- </summary>
- </member>
- <member name="P:RestSharp.Http.HasBody">
- <summary>
- True if a request body has been specified
- </summary>
- </member>
- <member name="P:RestSharp.Http.HasFiles">
- <summary>
- True if files have been set to be uploaded
- </summary>
- </member>
- <member name="P:RestSharp.Http.UserAgent">
- <summary>
- UserAgent to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Timeout">
- <summary>
- Timeout in milliseconds to be used for the request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Credentials">
- <summary>
- System.Net.ICredentials to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.CookieContainer">
- <summary>
- The System.Net.CookieContainer to be used for the request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Files">
- <summary>
- Collection of files to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Headers">
- <summary>
- HTTP headers to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Parameters">
- <summary>
- HTTP parameters (QueryString or Form values) to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.Cookies">
- <summary>
- HTTP cookies to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.RequestBody">
- <summary>
- Request body to be sent with request
- </summary>
- </member>
- <member name="P:RestSharp.Http.RequestContentType">
- <summary>
- Content type of the request body.
- </summary>
- </member>
- <member name="P:RestSharp.Http.Url">
- <summary>
- URL to call for this request
- </summary>
- </member>
- <member name="T:RestSharp.HttpCookie">
- <summary>
- Representation of an HTTP cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Comment">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.CommentUri">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Discard">
- <summary>
- Indicates whether the cookie should be discarded at the end of the session
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Domain">
- <summary>
- Domain of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Expired">
- <summary>
- Indicates whether the cookie is expired
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Expires">
- <summary>
- Date and time that the cookie expires
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.HttpOnly">
- <summary>
- Indicates that this cookie should only be accessed by the server
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Name">
- <summary>
- Name of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Path">
- <summary>
- Path of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Port">
- <summary>
- Port of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Secure">
- <summary>
- Indicates that the cookie should only be sent over secure channels
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.TimeStamp">
- <summary>
- Date and time the cookie was created
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Value">
- <summary>
- Value of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.HttpCookie.Version">
- <summary>
- Version of the cookie
- </summary>
- </member>
- <member name="T:RestSharp.HttpFile">
- <summary>
- Container for HTTP file
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.ContentLength">
- <summary>
- The length of data to be sent
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.Writer">
- <summary>
- Provides raw data for file
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.FileName">
- <summary>
- Name of the file to use when uploading
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.ContentType">
- <summary>
- MIME content type of file
- </summary>
- </member>
- <member name="P:RestSharp.HttpFile.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.HttpHeader">
- <summary>
- Representation of an HTTP header
- </summary>
- </member>
- <member name="P:RestSharp.HttpHeader.Name">
- <summary>
- Name of the header
- </summary>
- </member>
- <member name="P:RestSharp.HttpHeader.Value">
- <summary>
- Value of the header
- </summary>
- </member>
- <member name="T:RestSharp.HttpParameter">
- <summary>
- Representation of an HTTP parameter (QueryString or Form value)
- </summary>
- </member>
- <member name="P:RestSharp.HttpParameter.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="P:RestSharp.HttpParameter.Value">
- <summary>
- Value of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.HttpResponse">
- <summary>
- HTTP response data
- </summary>
- </member>
- <member name="T:RestSharp.IHttpResponse">
- <summary>
- HTTP response data
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Content">
- <summary>
- String representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.IHttpResponse.ErrorException">
- <summary>
- Exception thrown when error is encountered.
- </summary>
- </member>
- <member name="M:RestSharp.HttpResponse.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Content">
- <summary>
- Lazy-loaded string representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.HttpResponse.ErrorException">
- <summary>
- Exception thrown when error is encountered.
- </summary>
- </member>
- <member name="T:RestSharp.IRestClient">
- <summary>
-
- </summary>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsync(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle})">
- <summary>
-
- </summary>
- <param name="request"></param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsync``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle})">
- <summary>
-
- </summary>
- <param name="request"></param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncGet(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncPost(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a POST-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncGet``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.IRestClient.ExecuteAsyncPost``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="P:RestSharp.IRestClient.CookieContainer">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.UserAgent">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.Timeout">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.UseSynchronizationContext">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.Authenticator">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.BaseUrl">
- <summary>
-
- </summary>
- </member>
- <member name="P:RestSharp.IRestClient.DefaultParameters">
- <summary>
-
- </summary>
- </member>
- <member name="M:RestSharp.IRestRequest.AddBody(System.Object,System.String)">
- <summary>
- Serializes obj to format specified by RequestFormat, but passes xmlNamespace if using the default XmlSerializer
- </summary>
- <param name="obj">The object to serialize</param>
- <param name="xmlNamespace">The XML namespace to use when serializing</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddBody(System.Object)">
- <summary>
- Serializes obj to data format specified by RequestFormat and adds it to the request body.
- </summary>
- <param name="obj">The object to serialize</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddObject(System.Object,System.String[])">
- <summary>
- Calls AddParameter() for all public, readable properties specified in the white list
- </summary>
- <example>
- request.AddObject(product, "ProductId", "Price", ...);
- </example>
- <param name="obj">The object with properties to add as parameters</param>
- <param name="whitelist">The names of the properties to include</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddObject(System.Object)">
- <summary>
- Calls AddParameter() for all public, readable properties of obj
- </summary>
- <param name="obj">The object with properties to add as parameters</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddParameter(RestSharp.Parameter)">
- <summary>
- Add the parameter to the request
- </summary>
- <param name="p">Parameter to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddParameter(System.String,System.Object)">
- <summary>
- Adds a HTTP parameter to the request (QueryString for GET, DELETE, OPTIONS and HEAD; Encoded form for POST and PUT)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddParameter(System.String,System.Object,RestSharp.ParameterType)">
- <summary>
- Adds a parameter to the request. There are five types of parameters:
- - GetOrPost: Either a QueryString value or encoded form value based on method
- - HttpHeader: Adds the name/value pair to the HTTP request's Headers collection
- - UrlSegment: Inserted into URL if there is a matching url token e.g. {AccountId}
- - Cookie: Adds the name/value pair to the HTTP request's Cookies collection
- - RequestBody: Used by AddBody() (not recommended to use directly)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <param name="type">The type of parameter to add</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddHeader(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, HttpHeader) overload
- </summary>
- <param name="name">Name of the header to add</param>
- <param name="value">Value of the header to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddCookie(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, Cookie) overload
- </summary>
- <param name="name">Name of the cookie to add</param>
- <param name="value">Value of the cookie to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.IRestRequest.AddUrlSegment(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, UrlSegment) overload
- </summary>
- <param name="name">Name of the segment to add</param>
- <param name="value">Value of the segment to add</param>
- <returns></returns>
- </member>
- <member name="P:RestSharp.IRestRequest.JsonSerializer">
- <summary>
- Serializer to use when writing JSON request bodies. Used if RequestFormat is Json.
- By default the included JsonSerializer is used (currently using JSON.NET default serialization).
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.XmlSerializer">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default the included XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Parameters">
- <summary>
- Container of all HTTP parameters to be passed with the request.
- See AddParameter() for explanation of the types of parameters that can be passed
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Files">
- <summary>
- Container of all the files to be uploaded with the request.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Method">
- <summary>
- Determines what HTTP method to use for this request. Supported methods: GET, POST, PUT, DELETE, HEAD, OPTIONS
- Default is GET
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Resource">
- <summary>
- The Resource URL to make the request against.
- Tokens are substituted with UrlSegment parameters and match by name.
- Should not include the scheme or domain. Do not include leading slash.
- Combined with RestClient.BaseUrl to assemble final URL:
- {BaseUrl}/{Resource} (BaseUrl is scheme + domain, e.g. http://example.com)
- </summary>
- <example>
- // example for url token replacement
- request.Resource = "Products/{ProductId}";
- request.AddParameter("ProductId", 123, ParameterType.UrlSegment);
- </example>
- </member>
- <member name="P:RestSharp.IRestRequest.RequestFormat">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.RootElement">
- <summary>
- Used by the default deserializers to determine where to start deserializing from.
- Can be used to skip container or root elements that do not have corresponding deserialzation targets.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.DateFormat">
- <summary>
- Used by the default deserializers to explicitly set which date format string to use when parsing dates.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.XmlNamespace">
- <summary>
- Used by XmlDeserializer. If not specified, XmlDeserializer will flatten response by removing namespaces from element names.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Credentials">
- <summary>
- In general you would not need to set this directly. Used by the NtlmAuthenticator.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Timeout">
- <summary>
- Timeout in milliseconds to be used for the request. This timeout value overrides a timeout set on the RestClient.
- </summary>
- </member>
- <member name="P:RestSharp.IRestRequest.Attempts">
- <summary>
- How many attempts were made to send this Request?
- </summary>
- <remarks>
- This Number is incremented each time the RestClient sends the request.
- Useful when using Asynchronous Execution with Callbacks
- </remarks>
- </member>
- <member name="T:RestSharp.IRestResponse">
- <summary>
- Container for data sent back from API
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Request">
- <summary>
- The RestRequest that was made to get this RestResponse
- </summary>
- <remarks>
- Mainly for debugging if ResponseStatus is not OK
- </remarks>
- </member>
- <member name="P:RestSharp.IRestResponse.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Content">
- <summary>
- String representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.IRestResponse.ErrorException">
- <summary>
- The exception thrown during the request, if any
- </summary>
- </member>
- <member name="T:RestSharp.IRestResponse`1">
- <summary>
- Container for data sent back from API including deserialized data
- </summary>
- <typeparam name="T">Type of data to deserialize to</typeparam>
- </member>
- <member name="P:RestSharp.IRestResponse`1.Data">
- <summary>
- Deserialized entity data
- </summary>
- </member>
- <member name="T:RestSharp.Parameter">
- <summary>
- Parameter container for REST requests
- </summary>
- </member>
- <member name="M:RestSharp.Parameter.ToString">
- <summary>
- Return a human-readable representation of this parameter
- </summary>
- <returns>String</returns>
- </member>
- <member name="P:RestSharp.Parameter.Name">
- <summary>
- Name of the parameter
- </summary>
- </member>
- <member name="P:RestSharp.Parameter.Value">
- <summary>
- Value of the parameter
- </summary>
- </member>
- <member name="P:RestSharp.Parameter.Type">
- <summary>
- Type of the parameter
- </summary>
- </member>
- <member name="T:RestSharp.RestClient">
- <summary>
- Client to translate RestRequests into Http requests and process response result
- </summary>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsync(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncGet(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncPost(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a POST-style request and callback asynchronously, authenticating if needed
- </summary>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsync``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncGet``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a GET-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.ExecuteAsyncPost``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
- <summary>
- Executes a POST-style request and callback asynchronously, authenticating if needed
- </summary>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- <param name="httpMethod">The HTTP method to execute</param>
- </member>
- <member name="M:RestSharp.RestClient.#ctor">
- <summary>
- Default constructor that registers default content handlers
- </summary>
- </member>
- <member name="M:RestSharp.RestClient.#ctor(System.String)">
- <summary>
- Sets the BaseUrl property for requests made by this client instance
- </summary>
- <param name="baseUrl"></param>
- </member>
- <member name="M:RestSharp.RestClient.AddHandler(System.String,RestSharp.Deserializers.IDeserializer)">
- <summary>
- Registers a content handler to process response content
- </summary>
- <param name="contentType">MIME content type of the response content</param>
- <param name="deserializer">Deserializer to use to process content</param>
- </member>
- <member name="M:RestSharp.RestClient.RemoveHandler(System.String)">
- <summary>
- Remove a content handler for the specified MIME content type
- </summary>
- <param name="contentType">MIME content type to remove</param>
- </member>
- <member name="M:RestSharp.RestClient.ClearHandlers">
- <summary>
- Remove all content handlers
- </summary>
- </member>
- <member name="M:RestSharp.RestClient.GetHandler(System.String)">
- <summary>
- Retrieve the handler for the specified MIME content type
- </summary>
- <param name="contentType">MIME content type to retrieve</param>
- <returns>IDeserializer instance</returns>
- </member>
- <member name="M:RestSharp.RestClient.BuildUri(RestSharp.IRestRequest)">
- <summary>
- Assembles URL to call based on parameters, method and resource
- </summary>
- <param name="request">RestRequest to execute</param>
- <returns>Assembled System.Uri</returns>
- </member>
- <member name="P:RestSharp.RestClient.DefaultParameters">
- <summary>
- Parameters included with every request made with this instance of RestClient
- If specified in both client and request, the request wins
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.MaxRedirects">
- <summary>
- Maximum number of redirects to follow if FollowRedirects is true
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.FollowRedirects">
- <summary>
- Default is true. Determine whether or not requests that result in
- HTTP status codes of 3xx should follow returned redirect
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.CookieContainer">
- <summary>
- The CookieContainer used for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.UserAgent">
- <summary>
- UserAgent to use for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.Timeout">
- <summary>
- Timeout in milliseconds to use for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.UseSynchronizationContext">
- <summary>
- Whether to invoke async callbacks using the SynchronizationContext.Current captured when invoked
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.Authenticator">
- <summary>
- Authenticator to use for requests made by this client instance
- </summary>
- </member>
- <member name="P:RestSharp.RestClient.BaseUrl">
- <summary>
- Combined with Request.Resource to construct URL for request
- Should include scheme and domain without trailing slash.
- </summary>
- <example>
- client.BaseUrl = "http://example.com";
- </example>
- </member>
- <member name="M:RestSharp.RestClientExtensions.ExecuteAsync(RestSharp.IRestClient,RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <param name="client">The IRestClient this method extends</param>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion</param>
- </member>
- <member name="M:RestSharp.RestClientExtensions.ExecuteAsync``1(RestSharp.IRestClient,RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0}})">
- <summary>
- Executes the request and callback asynchronously, authenticating if needed
- </summary>
- <param name="client">The IRestClient this method extends</param>
- <typeparam name="T">Target deserialization type</typeparam>
- <param name="request">Request to be executed</param>
- <param name="callback">Callback function to be executed upon completion providing access to the async handle</param>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultParameter(RestSharp.IRestClient,RestSharp.Parameter)">
- <summary>
- Add a parameter to use on every request made with this client instance
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="p">Parameter to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultParameter(RestSharp.IRestClient,System.String,System.Object)">
- <summary>
- Adds a HTTP parameter (QueryString for GET, DELETE, OPTIONS and HEAD; Encoded form for POST and PUT)
- Used on every request made by this client instance
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultParameter(RestSharp.IRestClient,System.String,System.Object,RestSharp.ParameterType)">
- <summary>
- Adds a parameter to the request. There are four types of parameters:
- - GetOrPost: Either a QueryString value or encoded form value based on method
- - HttpHeader: Adds the name/value pair to the HTTP request's Headers collection
- - UrlSegment: Inserted into URL if there is a matching url token e.g. {AccountId}
- - RequestBody: Used by AddBody() (not recommended to use directly)
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <param name="type">The type of parameter to add</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultHeader(RestSharp.IRestClient,System.String,System.String)">
- <summary>
- Shortcut to AddDefaultParameter(name, value, HttpHeader) overload
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the header to add</param>
- <param name="value">Value of the header to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestClientExtensions.AddDefaultUrlSegment(RestSharp.IRestClient,System.String,System.String)">
- <summary>
- Shortcut to AddDefaultParameter(name, value, UrlSegment) overload
- </summary>
- <param name="restClient">The IRestClient instance</param>
- <param name="name">Name of the segment to add</param>
- <param name="value">Value of the segment to add</param>
- <returns></returns>
- </member>
- <member name="T:RestSharp.RestRequest">
- <summary>
- Container for data used to make requests
- </summary>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(RestSharp.Method)">
- <summary>
- Sets Method property to value of method
- </summary>
- <param name="method">Method to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.String)">
- <summary>
- Sets Resource property
- </summary>
- <param name="resource">Resource to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.String,RestSharp.Method)">
- <summary>
- Sets Resource and Method properties
- </summary>
- <param name="resource">Resource to use for this request</param>
- <param name="method">Method to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.Uri)">
- <summary>
- Sets Resource property
- </summary>
- <param name="resource">Resource to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.#ctor(System.Uri,RestSharp.Method)">
- <summary>
- Sets Resource and Method properties
- </summary>
- <param name="resource">Resource to use for this request</param>
- <param name="method">Method to use for this request</param>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.String)">
- <summary>
- Adds a file to the Files collection to be included with a POST or PUT request
- (other methods do not support file uploads).
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="path">Full path to file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Byte[],System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="bytes">The file data</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Byte[],System.String,System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name and content type
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="bytes">The file data</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <param name="contentType">The MIME type of the file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Action{System.IO.Stream},System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name and content type
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="writer">A function that writes directly to the stream. Should NOT close the stream.</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Action{System.IO.Stream},System.String,System.String)">
- <summary>
- Adds the bytes to the Files collection with the specified file name and content type
- </summary>
- <param name="name">The parameter name to use in the request</param>
- <param name="writer">A function that writes directly to the stream. Should NOT close the stream.</param>
- <param name="fileName">The file name to use for the uploaded file</param>
- <param name="contentType">The MIME type of the file to upload</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddBody(System.Object,System.String)">
- <summary>
- Serializes obj to format specified by RequestFormat, but passes xmlNamespace if using the default XmlSerializer
- </summary>
- <param name="obj">The object to serialize</param>
- <param name="xmlNamespace">The XML namespace to use when serializing</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddBody(System.Object)">
- <summary>
- Serializes obj to data format specified by RequestFormat and adds it to the request body.
- </summary>
- <param name="obj">The object to serialize</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddObject(System.Object,System.String[])">
- <summary>
- Calls AddParameter() for all public, readable properties specified in the white list
- </summary>
- <example>
- request.AddObject(product, "ProductId", "Price", ...);
- </example>
- <param name="obj">The object with properties to add as parameters</param>
- <param name="whitelist">The names of the properties to include</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddObject(System.Object)">
- <summary>
- Calls AddParameter() for all public, readable properties of obj
- </summary>
- <param name="obj">The object with properties to add as parameters</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddParameter(RestSharp.Parameter)">
- <summary>
- Add the parameter to the request
- </summary>
- <param name="p">Parameter to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddParameter(System.String,System.Object)">
- <summary>
- Adds a HTTP parameter to the request (QueryString for GET, DELETE, OPTIONS and HEAD; Encoded form for POST and PUT)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddParameter(System.String,System.Object,RestSharp.ParameterType)">
- <summary>
- Adds a parameter to the request. There are four types of parameters:
- - GetOrPost: Either a QueryString value or encoded form value based on method
- - HttpHeader: Adds the name/value pair to the HTTP request's Headers collection
- - UrlSegment: Inserted into URL if there is a matching url token e.g. {AccountId}
- - RequestBody: Used by AddBody() (not recommended to use directly)
- </summary>
- <param name="name">Name of the parameter</param>
- <param name="value">Value of the parameter</param>
- <param name="type">The type of parameter to add</param>
- <returns>This request</returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddHeader(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, HttpHeader) overload
- </summary>
- <param name="name">Name of the header to add</param>
- <param name="value">Value of the header to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddCookie(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, Cookie) overload
- </summary>
- <param name="name">Name of the cookie to add</param>
- <param name="value">Value of the cookie to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.AddUrlSegment(System.String,System.String)">
- <summary>
- Shortcut to AddParameter(name, value, UrlSegment) overload
- </summary>
- <param name="name">Name of the segment to add</param>
- <param name="value">Value of the segment to add</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.RestRequest.IncreaseNumAttempts">
- <summary>
- Internal Method so that RestClient can increase the number of attempts
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.JsonSerializer">
- <summary>
- Serializer to use when writing JSON request bodies. Used if RequestFormat is Json.
- By default the included JsonSerializer is used (currently using JSON.NET default serialization).
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.XmlSerializer">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default the included XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Parameters">
- <summary>
- Container of all HTTP parameters to be passed with the request.
- See AddParameter() for explanation of the types of parameters that can be passed
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Files">
- <summary>
- Container of all the files to be uploaded with the request.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Method">
- <summary>
- Determines what HTTP method to use for this request. Supported methods: GET, POST, PUT, DELETE, HEAD, OPTIONS
- Default is GET
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Resource">
- <summary>
- The Resource URL to make the request against.
- Tokens are substituted with UrlSegment parameters and match by name.
- Should not include the scheme or domain. Do not include leading slash.
- Combined with RestClient.BaseUrl to assemble final URL:
- {BaseUrl}/{Resource} (BaseUrl is scheme + domain, e.g. http://example.com)
- </summary>
- <example>
- // example for url token replacement
- request.Resource = "Products/{ProductId}";
- request.AddParameter("ProductId", 123, ParameterType.UrlSegment);
- </example>
- </member>
- <member name="P:RestSharp.RestRequest.RequestFormat">
- <summary>
- Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
- By default XmlSerializer is used.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.RootElement">
- <summary>
- Used by the default deserializers to determine where to start deserializing from.
- Can be used to skip container or root elements that do not have corresponding deserialzation targets.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.OnBeforeDeserialization">
- <summary>
- A function to run prior to deserializing starting (e.g. change settings if error encountered)
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.DateFormat">
- <summary>
- Used by the default deserializers to explicitly set which date format string to use when parsing dates.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.XmlNamespace">
- <summary>
- Used by XmlDeserializer. If not specified, XmlDeserializer will flatten response by removing namespaces from element names.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Credentials">
- <summary>
- In general you would not need to set this directly. Used by the NtlmAuthenticator.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.UserState">
- <summary>
- Gets or sets a user-defined state object that contains information about a request and which can be later
- retrieved when the request completes.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Timeout">
- <summary>
- Timeout in milliseconds to be used for the request. This timeout value overrides a timeout set on the RestClient.
- </summary>
- </member>
- <member name="P:RestSharp.RestRequest.Attempts">
- <summary>
- How many attempts were made to send this Request?
- </summary>
- <remarks>
- This Number is incremented each time the RestClient sends the request.
- Useful when using Asynchronous Execution with Callbacks
- </remarks>
- </member>
- <member name="T:RestSharp.RestResponseBase">
- <summary>
- Base class for common properties shared by RestResponse and RestResponse[[T]]
- </summary>
- </member>
- <member name="M:RestSharp.RestResponseBase.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Request">
- <summary>
- The RestRequest that was made to get this RestResponse
- </summary>
- <remarks>
- Mainly for debugging if ResponseStatus is not OK
- </remarks>
- </member>
- <member name="P:RestSharp.RestResponseBase.ContentType">
- <summary>
- MIME content type of response
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ContentLength">
- <summary>
- Length in bytes of the response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ContentEncoding">
- <summary>
- Encoding of the response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Content">
- <summary>
- String representation of response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.StatusCode">
- <summary>
- HTTP response status code
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.StatusDescription">
- <summary>
- Description of HTTP status returned
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.RawBytes">
- <summary>
- Response content
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ResponseUri">
- <summary>
- The URL that actually responded to the content (different from request if redirected)
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Server">
- <summary>
- HttpWebResponse.Server
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Cookies">
- <summary>
- Cookies returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.Headers">
- <summary>
- Headers returned by server with the response
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ResponseStatus">
- <summary>
- Status of the request. Will return Error for transport errors.
- HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ErrorMessage">
- <summary>
- Transport or other non-HTTP error generated while attempting request
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseBase.ErrorException">
- <summary>
- The exception thrown during the request, if any
- </summary>
- </member>
- <member name="T:RestSharp.RestResponse`1">
- <summary>
- Container for data sent back from API including deserialized data
- </summary>
- <typeparam name="T">Type of data to deserialize to</typeparam>
- </member>
- <member name="P:RestSharp.RestResponse`1.Data">
- <summary>
- Deserialized entity data
- </summary>
- </member>
- <member name="T:RestSharp.RestResponse">
- <summary>
- Container for data sent back from API
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.DotNetXmlSerializer">
- <summary>
- Wrapper for System.Xml.Serialization.XmlSerializer.
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.DotNetXmlSerializer.#ctor">
- <summary>
- Default constructor, does not specify namespace
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.DotNetXmlSerializer.#ctor(System.String)">
- <summary>
- Specify the namespaced to be used when serializing
- </summary>
- <param name="namespace">XML namespace</param>
- </member>
- <member name="M:RestSharp.Serializers.DotNetXmlSerializer.Serialize(System.Object)">
- <summary>
- Serialize the object as XML
- </summary>
- <param name="obj">Object to serialize</param>
- <returns>XML as string</returns>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.RootElement">
- <summary>
- Name of the root element to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.Namespace">
- <summary>
- XML namespace to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.DateFormat">
- <summary>
- Format string to use when serializing dates
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.ContentType">
- <summary>
- Content type for serialized content
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.DotNetXmlSerializer.Encoding">
- <summary>
- Encoding for serialized content
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.DotNetXmlSerializer.EncodingStringWriter">
- <summary>
- Need to subclass StringWriter in order to override Encoding
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.JsonSerializer">
- <summary>
- Default JSON serializer for request bodies
- Doesn't currently use the SerializeAs attribute, defers to Newtonsoft's attributes
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.JsonSerializer.#ctor">
- <summary>
- Default serializer
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.JsonSerializer.Serialize(System.Object)">
- <summary>
- Serialize the object as JSON
- </summary>
- <param name="obj">Object to serialize</param>
- <returns>JSON as String</returns>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.DateFormat">
- <summary>
- Unused for JSON Serialization
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.RootElement">
- <summary>
- Unused for JSON Serialization
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.Namespace">
- <summary>
- Unused for JSON Serialization
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.JsonSerializer.ContentType">
- <summary>
- Content type for serialized content
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.SerializeAsAttribute">
- <summary>
- Allows control how class and property names and values are serialized by XmlSerializer
- Currently not supported with the JsonSerializer
- When specified at the property level the class-level specification is overridden
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.SerializeAsAttribute.TransformName(System.String)">
- <summary>
- Called by the attribute when NameStyle is speficied
- </summary>
- <param name="input">The string to transform</param>
- <returns>String</returns>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Name">
- <summary>
- The name to use for the serialized element
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Attribute">
- <summary>
- Sets the value to be serialized as an Attribute instead of an Element
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Culture">
- <summary>
- The culture to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.NameStyle">
- <summary>
- Transforms the casing of the name based on the selected value.
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.SerializeAsAttribute.Index">
- <summary>
- The order to serialize the element. Default is int.MaxValue.
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.NameStyle">
- <summary>
- Options for transforming casing of element names
- </summary>
- </member>
- <member name="T:RestSharp.Serializers.XmlSerializer">
- <summary>
- Default XML Serializer
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.XmlSerializer.#ctor">
- <summary>
- Default constructor, does not specify namespace
- </summary>
- </member>
- <member name="M:RestSharp.Serializers.XmlSerializer.#ctor(System.String)">
- <summary>
- Specify the namespaced to be used when serializing
- </summary>
- <param name="namespace">XML namespace</param>
- </member>
- <member name="M:RestSharp.Serializers.XmlSerializer.Serialize(System.Object)">
- <summary>
- Serialize the object as XML
- </summary>
- <param name="obj">Object to serialize</param>
- <returns>XML as string</returns>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.RootElement">
- <summary>
- Name of the root element to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.Namespace">
- <summary>
- XML namespace to use when serializing
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.DateFormat">
- <summary>
- Format string to use when serializing dates
- </summary>
- </member>
- <member name="P:RestSharp.Serializers.XmlSerializer.ContentType">
- <summary>
- Content type for serialized content
- </summary>
- </member>
- <member name="T:RestSharp.JsonArray">
- <summary>
- Represents the json array.
- </summary>
- </member>
- <member name="M:RestSharp.JsonArray.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.JsonArray"/> class.
- </summary>
- </member>
- <member name="M:RestSharp.JsonArray.#ctor(System.Int32)">
- <summary>
- Initializes a new instance of the <see cref="T:RestSharp.JsonArray"/> class.
- </summary>
- <param name="capacity">The capacity of the json array.</param>
- </member>
- <member name="M:RestSharp.JsonArray.ToString">
- <summary>
- The json representation of the array.
- </summary>
- <returns>The json representation of the array.</returns>
- </member>
- <member name="T:RestSharp.JsonObject">
- <summary>
- Represents the json object.
- </summary>
- </member>
- <member name="F:RestSharp.JsonObject._members">
- <summary>
- The internal member dictionary.
- </summary>
- </member>
- <member name="M:RestSharp.JsonObject.Add(System.String,System.Object)">
- <summary>
- Adds the specified key.
- </summary>
- <param name="key">The key.</param>
- <param name="value">The value.</param>
- </member>
- <member name="M:RestSharp.JsonObject.ContainsKey(System.String)">
- <summary>
- Determines whether the specified key contains key.
- </summary>
- <param name="key">The key.</param>
- <returns>
- <c>true</c> if the specified key contains key; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.Remove(System.String)">
- <summary>
- Removes the specified key.
- </summary>
- <param name="key">The key.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.TryGetValue(System.String,System.Object@)">
- <summary>
- Tries the get value.
- </summary>
- <param name="key">The key.</param>
- <param name="value">The value.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.Add(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
- <summary>
- Adds the specified item.
- </summary>
- <param name="item">The item.</param>
- </member>
- <member name="M:RestSharp.JsonObject.Clear">
- <summary>
- Clears this instance.
- </summary>
- </member>
- <member name="M:RestSharp.JsonObject.Contains(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
- <summary>
- Determines whether [contains] [the specified item].
- </summary>
- <param name="item">The item.</param>
- <returns>
- <c>true</c> if [contains] [the specified item]; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Object}[],System.Int32)">
- <summary>
- Copies to.
- </summary>
- <param name="array">The array.</param>
- <param name="arrayIndex">Index of the array.</param>
- </member>
- <member name="M:RestSharp.JsonObject.Remove(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
- <summary>
- Removes the specified item.
- </summary>
- <param name="item">The item.</param>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.GetEnumerator">
- <summary>
- Gets the enumerator.
- </summary>
- <returns></returns>
- </member>
- <member name="M:RestSharp.JsonObject.System#Collections#IEnumerable#GetEnumerator">
- <summary>
- Returns an enumerator that iterates through a collection.
- </summary>
- <returns>
- An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
- </returns>
- </member>
- <member name="M:RestSharp.JsonObject.ToString">
- <summary>
- Returns a json <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
- </summary>
- <returns>
- A json <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
- </returns>
- </member>
- <member name="P:RestSharp.JsonObject.Item(System.Int32)">
- <summary>
- Gets the <see cref="T:System.Object"/> at the specified index.
- </summary>
- <value></value>
- </member>
- <member name="P:RestSharp.JsonObject.Keys">
- <summary>
- Gets the keys.
- </summary>
- <value>The keys.</value>
- </member>
- <member name="P:RestSharp.JsonObject.Values">
- <summary>
- Gets the values.
- </summary>
- <value>The values.</value>
- </member>
- <member name="P:RestSharp.JsonObject.Item(System.String)">
- <summary>
- Gets or sets the <see cref="T:System.Object"/> with the specified key.
- </summary>
- <value></value>
- </member>
- <member name="P:RestSharp.JsonObject.Count">
- <summary>
- Gets the count.
- </summary>
- <value>The count.</value>
- </member>
- <member name="P:RestSharp.JsonObject.IsReadOnly">
- <summary>
- Gets a value indicating whether this instance is read only.
- </summary>
- <value>
- <c>true</c> if this instance is read only; otherwise, <c>false</c>.
- </value>
- </member>
- <member name="T:RestSharp.SimpleJson">
- <summary>
- This class encodes and decodes JSON strings.
- Spec. details, see http://www.json.org/
-
- JSON uses Arrays and Objects. These correspond here to the datatypes JsonArray(IList<object>) and JsonObject(IDictionary<string,object>).
- All numbers are parsed to doubles.
- </summary>
- </member>
- <member name="M:RestSharp.SimpleJson.DeserializeObject(System.String)">
- <summary>
- Parses the string json into a value
- </summary>
- <param name="json">A JSON string.</param>
- <returns>An IList<object>, a IDictionary<string,object>, a double, a string, null, true, or false</returns>
- </member>
- <member name="M:RestSharp.SimpleJson.TryDeserializeObject(System.String,System.Object@)">
- <summary>
- Try parsing the json string into a value.
- </summary>
- <param name="json">
- A JSON string.
- </param>
- <param name="object">
- The object.
- </param>
- <returns>
- Returns true if successfull otherwise false.
- </returns>
- </member>
- <member name="M:RestSharp.SimpleJson.SerializeObject(System.Object,RestSharp.IJsonSerializerStrategy)">
- <summary>
- Converts a IDictionary<string,object> / IList<object> object into a JSON string
- </summary>
- <param name="json">A IDictionary<string,object> / IList<object></param>
- <param name="jsonSerializerStrategy">Serializer strategy to use</param>
- <returns>A JSON encoded string, or null if object 'json' is not serializable</returns>
- </member>
- <member name="M:RestSharp.SimpleJson.IsNumeric(System.Object)">
- <summary>
- Determines if a given object is numeric in any way
- (can be integer, double, null, etc).
- </summary>
- </member>
- <member name="T:RestSharp.Validation.Require">
- <summary>
- Helper methods for validating required values
- </summary>
- </member>
- <member name="M:RestSharp.Validation.Require.Argument(System.String,System.Object)">
- <summary>
- Require a parameter to not be null
- </summary>
- <param name="argumentName">Name of the parameter</param>
- <param name="argumentValue">Value of the parameter</param>
- </member>
- <member name="T:RestSharp.Validation.Validate">
- <summary>
- Helper methods for validating values
- </summary>
- </member>
- <member name="M:RestSharp.Validation.Validate.IsBetween(System.Int32,System.Int32,System.Int32)">
- <summary>
- Validate an integer value is between the specified values (exclusive of min/max)
- </summary>
- <param name="value">Value to validate</param>
- <param name="min">Exclusive minimum value</param>
- <param name="max">Exclusive maximum value</param>
- </member>
- <member name="M:RestSharp.Validation.Validate.IsValidLength(System.String,System.Int32)">
- <summary>
- Validate a string length
- </summary>
- <param name="value">String to be validated</param>
- <param name="maxSize">Maximum length of the string</param>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Comment">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.CommentUri">
- <summary>
- Comment of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Discard">
- <summary>
- Indicates whether the cookie should be discarded at the end of the session
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Domain">
- <summary>
- Domain of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Expired">
- <summary>
- Indicates whether the cookie is expired
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Expires">
- <summary>
- Date and time that the cookie expires
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.HttpOnly">
- <summary>
- Indicates that this cookie should only be accessed by the server
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Name">
- <summary>
- Name of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Path">
- <summary>
- Path of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Port">
- <summary>
- Port of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Secure">
- <summary>
- Indicates that the cookie should only be sent over secure channels
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.TimeStamp">
- <summary>
- Date and time the cookie was created
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Value">
- <summary>
- Value of the cookie
- </summary>
- </member>
- <member name="P:RestSharp.RestResponseCookie.Version">
- <summary>
- Version of the cookie
- </summary>
- </member>
- </members>
-</doc>
diff --git a/SendGrid/packages/RestSharp.104.1/readme.txt b/SendGrid/packages/RestSharp.104.1/readme.txt deleted file mode 100644 index 64e7da0..0000000 --- a/SendGrid/packages/RestSharp.104.1/readme.txt +++ /dev/null @@ -1,19 +0,0 @@ -*** IMPORTANT CHANGE IN RESTSHARP VERSION 103 ***
-
-In 103.0, JSON.NET was removed as a dependency.
-
-If this is still installed in your project and no other libraries depend on
-it you may remove it from your installed packages.
-
-There is one breaking change: the default Json*Serializer* is no longer
-compatible with Json.NET. To use Json.NET for serialization, copy the code
-from https://github.com/restsharp/RestSharp/blob/86b31f9adf049d7fb821de8279154f41a17b36f7/RestSharp/Serializers/JsonSerializer.cs
-and register it with your client:
-
-var client = new RestClient();
-client.JsonSerializer = new YourCustomSerializer();
-
-The default Json*Deserializer* should be 100% compatible.
-
-If you run into any compatibility issues with deserialization,
-please report it to http://groups.google.com/group/restsharp
\ No newline at end of file |