diff options
Diffstat (limited to 'SendGrid/SendGridMail/Transport/ITransport.cs')
-rwxr-xr-x | SendGrid/SendGridMail/Transport/ITransport.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/SendGrid/SendGridMail/Transport/ITransport.cs b/SendGrid/SendGridMail/Transport/ITransport.cs index 26fccf4..b3a1936 100755 --- a/SendGrid/SendGridMail/Transport/ITransport.cs +++ b/SendGrid/SendGridMail/Transport/ITransport.cs @@ -1,7 +1,8 @@ namespace SendGridMail.Transport
{
/// <summary>
- ///
+ /// Encapsulates the transport mechanism so that it can be used in a generic way,
+ /// regardless of the transport type
/// </summary>
public interface ITransport
{
@@ -11,4 +12,4 @@ /// <param name="message">the message to be delivered</param>
void Deliver(ISendGrid message);
}
-}
+}
\ No newline at end of file |