summaryrefslogtreecommitdiffstats
path: root/SendGrid/SendGridMail/Transport/ITransport.cs
diff options
context:
space:
mode:
authorRobin J <me@rbin.co>2014-02-17 16:11:42 +0000
committerRobin J <me@rbin.co>2014-02-17 16:11:42 +0000
commit849ece5e6b93b0fb965f6d52a78958ef1a014f9a (patch)
tree08652475fbd7e8adeb26f816a3bc80259c4156bc /SendGrid/SendGridMail/Transport/ITransport.cs
parent66094a4e8321e834229a70084a6235360e52155c (diff)
parent9ab26dc5e0057ba3c9017175196b1b96a0a53deb (diff)
downloadsendgrid-csharp-849ece5e6b93b0fb965f6d52a78958ef1a014f9a.zip
sendgrid-csharp-849ece5e6b93b0fb965f6d52a78958ef1a014f9a.tar.gz
sendgrid-csharp-849ece5e6b93b0fb965f6d52a78958ef1a014f9a.tar.bz2
Merge pull request #44 from Xerax/master
Code clean-up and tweaks
Diffstat (limited to 'SendGrid/SendGridMail/Transport/ITransport.cs')
-rw-r--r--SendGrid/SendGridMail/Transport/ITransport.cs24
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