diff options
author | CJ Buchmann <cj.buchmann@sendgrid.com> | 2012-01-13 16:42:38 -0800 |
---|---|---|
committer | CJ Buchmann <cj.buchmann@sendgrid.com> | 2012-01-13 16:42:38 -0800 |
commit | cc7e8b7a0aae5381899ea1ea4c91e467f170348a (patch) | |
tree | d0062795c0cf8dc2f1abf2d0d8dc226a96809be7 /SendGrid/SendGrid/IHeader.cs | |
parent | 2cc3f7ecf61374d9b88d41290fe29c04a3849d6c (diff) | |
parent | ba5a61b85f19027b240588216a6fc3d418214e04 (diff) | |
download | sendgrid-csharp-cc7e8b7a0aae5381899ea1ea4c91e467f170348a.zip sendgrid-csharp-cc7e8b7a0aae5381899ea1ea4c91e467f170348a.tar.gz sendgrid-csharp-cc7e8b7a0aae5381899ea1ea4c91e467f170348a.tar.bz2 |
Merge branch 'us1882' of github.com:sendgrid/sendgrid-csharp
Diffstat (limited to 'SendGrid/SendGrid/IHeader.cs')
-rwxr-xr-x | SendGrid/SendGrid/IHeader.cs | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/SendGrid/SendGrid/IHeader.cs b/SendGrid/SendGrid/IHeader.cs deleted file mode 100755 index 640d985..0000000 --- a/SendGrid/SendGrid/IHeader.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Net.Mail;
-using System.Text;
-
-namespace SendGrid
-{
- public interface IHeader
- {
- void AddTo(IEnumerable<String> recipients);
- void AddSubVal(String tag, IEnumerable<String> substitutions);
- void AddUniqueIdentifier(IDictionary<String, String> identifiers);
- void SetCategory(String category);
- void Enable(String filter);
- void Disable(String filter);
- void AddFilterSetting(String filter, IEnumerable<String> settings, String value);
- void AddHeader(MailMessage mime);
- void AsJson();
- }
-}
|