summaryrefslogtreecommitdiffstats
path: root/SendGrid/SendGridMail/Transport/REST.cs
diff options
context:
space:
mode:
authorCJ Buchmann <cj.buchmann@sendgrid.com>2012-01-16 22:29:37 -0800
committerCJ Buchmann <cj.buchmann@sendgrid.com>2012-01-16 22:29:37 -0800
commitf5fd9054b23d5f8c4c915da36ad2eaa59f302918 (patch)
treeeba1d516315f7ee816b4701f93c941a6b1f1f6e0 /SendGrid/SendGridMail/Transport/REST.cs
parentecd8418122dd4153dfd34860e0690ca7a5f91c3e (diff)
downloadsendgrid-csharp-f5fd9054b23d5f8c4c915da36ad2eaa59f302918.zip
sendgrid-csharp-f5fd9054b23d5f8c4c915da36ad2eaa59f302918.tar.gz
sendgrid-csharp-f5fd9054b23d5f8c4c915da36ad2eaa59f302918.tar.bz2
Finished writing code examples for SMTP and REST and also cleaned up and refactored a large portion of code
Diffstat (limited to 'SendGrid/SendGridMail/Transport/REST.cs')
-rwxr-xr-xSendGrid/SendGridMail/Transport/REST.cs3
1 files changed, 0 insertions, 3 deletions
diff --git a/SendGrid/SendGridMail/Transport/REST.cs b/SendGrid/SendGridMail/Transport/REST.cs
index 7b8c361..0370b42 100755
--- a/SendGrid/SendGridMail/Transport/REST.cs
+++ b/SendGrid/SendGridMail/Transport/REST.cs
@@ -1,6 +1,5 @@
using System;
using System.Collections.Generic;
-using System.Collections.Specialized;
using System.IO;
using System.Linq;
using System.Net;
@@ -20,9 +19,7 @@ namespace SendGridMail.Transport
public const String JsonFormat = "json";
public const String XmlFormat = "xml";
- private readonly List<KeyValuePair<String, String>> _query;
private readonly NetworkCredential _credentials;
- private readonly NameValueCollection _queryParameters;
private readonly String _restEndpoint;
private readonly String _format;
#endregion