summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorElmer Thomas <elmer@thinkingserious.com>2016-07-22 17:37:09 -0700
committerElmer Thomas <elmer@thinkingserious.com>2016-07-22 17:37:09 -0700
commitccef94d38b927e8855cf18e9e9ffb47deed448f5 (patch)
treec6af43c7baad919a9b14ae95cc571620a58cf783 /README.md
parent760d4a3f12648fb462e5157e568dd200db753404 (diff)
downloadsendgrid-csharp-ccef94d38b927e8855cf18e9e9ffb47deed448f5.zip
sendgrid-csharp-ccef94d38b927e8855cf18e9e9ffb47deed448f5.tar.gz
sendgrid-csharp-ccef94d38b927e8855cf18e9e9ffb47deed448f5.tar.bz2
README formatting fixesorigin/259-async-fix
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/README.md b/README.md
index 6b98452..52ba12b 100644
--- a/README.md
+++ b/README.md
@@ -57,6 +57,7 @@ The following is the minimum needed code to send an email with the [/mail/send H
using System;
using SendGrid;
using SendGrid.Helpers.Mail;
+using System.Threading.Tasks;
namespace Example
{
@@ -94,6 +95,7 @@ The following is the minimum needed code to send an email without the /mail/send
using System;
using SendGrid;
using Newtonsoft.Json; // You can generate your JSON string yourelf or with another library if you prefer
+using System.Threading.Tasks;
namespace Example
{
@@ -142,6 +144,7 @@ namespace Example
```csharp
using System;
using SendGrid;
+using System.Threading.Tasks;
namespace Example
{
@@ -167,6 +170,7 @@ namespace Example
```csharp
using System;
using SendGrid;
+using System.Threading.Tasks;
namespace Example
{