Can anyone show me how to handle exceptions when using the .NET SDK for AWS SES?
The implementation of IAsyncResult that is returned has the Exception on it, but its internal.
Is there an alternative method for accessing this, or do I need to reflect it :(
amazonSimpleEmailServiceClient.BeginSendEmail(sendEmailRequest, ar => {
var result = ar as AsyncResult;
// result has .Exception, but its internal :(
}, null);
Thanks