summaryrefslogtreecommitdiffstats
path: root/SendGrid/SendGrid/IHeader.cs
diff options
context:
space:
mode:
authorCJ Buchmann <cj.buchmann@sendgrid.com>2012-01-13 16:42:38 -0800
committerCJ Buchmann <cj.buchmann@sendgrid.com>2012-01-13 16:42:38 -0800
commitcc7e8b7a0aae5381899ea1ea4c91e467f170348a (patch)
treed0062795c0cf8dc2f1abf2d0d8dc226a96809be7 /SendGrid/SendGrid/IHeader.cs
parent2cc3f7ecf61374d9b88d41290fe29c04a3849d6c (diff)
parentba5a61b85f19027b240588216a6fc3d418214e04 (diff)
downloadsendgrid-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-xSendGrid/SendGrid/IHeader.cs21
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();
- }
-}