diff options
Diffstat (limited to 'SendGrid/SendGridMail/Transport/ITransport.cs')
-rw-r--r-- | SendGrid/SendGridMail/Transport/ITransport.cs | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/SendGrid/SendGridMail/Transport/ITransport.cs b/SendGrid/SendGridMail/Transport/ITransport.cs deleted file mode 100644 index 94a2d7f..0000000 --- a/SendGrid/SendGridMail/Transport/ITransport.cs +++ /dev/null @@ -1,18 +0,0 @@ -using System.Threading.Tasks;
-
-
-namespace SendGrid
-{
- /// <summary>
- /// Encapsulates the transport mechanism so that it can be used in a generic way,
- /// regardless of the transport type
- /// </summary>
- public interface ITransport
- {
- /// <summary>
- /// Asynchronously delivers a message using the protocol of the derived class
- /// </summary>
- /// <param name="message">the message to be delivered</param>
- Task DeliverAsync(ISendGrid message);
- }
-}
\ No newline at end of file |