diff options
Diffstat (limited to 'SendGrid/SendGridMail/Transport/ITransport.cs')
-rw-r--r-- | SendGrid/SendGridMail/Transport/ITransport.cs | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/SendGrid/SendGridMail/Transport/ITransport.cs b/SendGrid/SendGridMail/Transport/ITransport.cs index 0394cec..99b620c 100644 --- a/SendGrid/SendGridMail/Transport/ITransport.cs +++ b/SendGrid/SendGridMail/Transport/ITransport.cs @@ -1,15 +1,15 @@ namespace SendGridMail
{
- /// <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>
- /// Delivers a message using the protocol of the derived class
- /// </summary>
- /// <param name="message">the message to be delivered</param>
- void Deliver(ISendGrid message);
- }
+ /// <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>
+ /// Delivers a message using the protocol of the derived class
+ /// </summary>
+ /// <param name="message">the message to be delivered</param>
+ void Deliver(ISendGrid message);
+ }
}
\ No newline at end of file |