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
commit3bffb9c83a6983e83cfd842e3f6814a568fa0dc9 (patch)
tree0a3ea3c55d92a6b2af496d049a33d45a5309c828 /SendGrid/SendGrid/IHeader.cs
parent5d12231da2ac87f16aa7600da8d1cd211056de06 (diff)
parentbd81ad6bb7f5ac946710fecca29d0b81d41bb030 (diff)
downloadsendgrid-csharp-3bffb9c83a6983e83cfd842e3f6814a568fa0dc9.zip
sendgrid-csharp-3bffb9c83a6983e83cfd842e3f6814a568fa0dc9.tar.gz
sendgrid-csharp-3bffb9c83a6983e83cfd842e3f6814a568fa0dc9.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();
- }
-}