diff options
author | Elmer Thomas <elmer@thinkingserious.com> | 2016-07-22 17:36:12 -0700 |
---|---|---|
committer | Elmer Thomas <elmer@thinkingserious.com> | 2016-07-22 17:36:12 -0700 |
commit | 760d4a3f12648fb462e5157e568dd200db753404 (patch) | |
tree | 69b6c6358cc98644b8144710050cb55c87955df9 | |
parent | dae5ea37dedf8d04440fd07d3e801b831af7a927 (diff) | |
download | sendgrid-csharp-760d4a3f12648fb462e5157e568dd200db753404.zip sendgrid-csharp-760d4a3f12648fb462e5157e568dd200db753404.tar.gz sendgrid-csharp-760d4a3f12648fb462e5157e568dd200db753404.tar.bz2 |
README formatting fixes
-rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -177,12 +177,12 @@ namespace Example Execute.Wait(); } - static async Task Execute() - { - string apiKey = Environment.GetEnvironmentVariable("NAME_OF_THE_ENVIRONMENT_VARIABLE_FOR_YOUR_SENDGRID_KEY", EnvironmentVariableTarget.User); - dynamic sg = new SendGrid.SendGridAPIClient(apiKey); - dynamic response = await sg.client._("suppression/bounces").get(); - } + static async Task Execute() + { + string apiKey = Environment.GetEnvironmentVariable("NAME_OF_THE_ENVIRONMENT_VARIABLE_FOR_YOUR_SENDGRID_KEY", EnvironmentVariableTarget.User); + dynamic sg = new SendGrid.SendGridAPIClient(apiKey); + dynamic response = await sg.client._("suppression/bounces").get(); + } } } ``` |