summaryrefslogtreecommitdiffstats
path: root/SendGrid/SendGridMail/Transport/Web.cs
diff options
context:
space:
mode:
Diffstat (limited to 'SendGrid/SendGridMail/Transport/Web.cs')
-rw-r--r--SendGrid/SendGridMail/Transport/Web.cs5
1 files changed, 0 insertions, 5 deletions
diff --git a/SendGrid/SendGridMail/Transport/Web.cs b/SendGrid/SendGridMail/Transport/Web.cs
index 3395bdd..ebb2982 100644
--- a/SendGrid/SendGridMail/Transport/Web.cs
+++ b/SendGrid/SendGridMail/Transport/Web.cs
@@ -19,8 +19,6 @@ namespace SendGridMail.Transport
public const String XmlFormat = "xml";
private readonly NetworkCredential _credentials;
- private readonly String _restEndpoint;
- private readonly String _format;
#endregion
/// <summary>
@@ -42,9 +40,6 @@ namespace SendGridMail.Transport
internal Web(NetworkCredential credentials, String url = Endpoint)
{
_credentials = credentials;
-
- _format = XmlFormat;
- _restEndpoint = url + "." + _format;
}
/// <summary>