public static IAsyncResult BeginGetBounceDump(this PostmarkClient client, string bounceId) { return(client.GetBounceDumpAsync(int.Parse(bounceId))); }
public static PostmarkBounceDump GetBounceDump(this PostmarkClient client, string bounceId) { return(Task.Run(async() => await client.GetBounceDumpAsync(int.Parse(bounceId))).Result); }
public static PostmarkBounceDump GetBounceDump(this PostmarkClient client, string bounceId) { return(client.GetBounceDumpAsync(int.Parse(bounceId)).WaitForResult()); }