summaryrefslogtreecommitdiffstats
path: root/examples/mailboxproviders/mailboxproviders.cs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/mailboxproviders/mailboxproviders.cs')
-rw-r--r--examples/mailboxproviders/mailboxproviders.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/mailboxproviders/mailboxproviders.cs b/examples/mailboxproviders/mailboxproviders.cs
index be6f5f6..5906d1d 100644
--- a/examples/mailboxproviders/mailboxproviders.cs
+++ b/examples/mailboxproviders/mailboxproviders.cs
@@ -17,7 +17,7 @@ string queryParams = @"{
'offset': 1,
'start_date': '2016-01-01'
}";
-dynamic response = sg.client.mailbox_providers.stats.get(queryParams: queryParams);
+dynamic response = await sg.client.mailbox_providers.stats.get(queryParams: queryParams);
Console.WriteLine(response.StatusCode);
Console.WriteLine(response.Body.ReadAsStringAsync().Result);
Console.WriteLine(response.Headers.ToString());