Update of /cvsroot/csmail/csmail/src/CSMail
In directory usw-pr-cvs1:/tmp/cvs-serv17877
Modified Files:
ContentType.cs
Log Message:
2002-10-08 Gaurav Vaish <mastergaurav AT users DOT sf DOT net>
* ContentType.cs : Tokens - Removed member.
Index: ContentType.cs
===================================================================
RCS file: /cvsroot/csmail/csmail/src/CSMail/ContentType.cs,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ContentType.cs 4 Oct 2002 11:14:42 -0000 1.6
+++ ContentType.cs 8 Oct 2002 12:29:09 -0000 1.7
@@ -9,6 +9,7 @@
*/
using System;
+using CSMail.Utils;
namespace CSMail
{
@@ -25,27 +26,6 @@
private string subType;
private ParameterList parameters;
- // :\\\"\t []/?="
- public static readonly char[] Tokens = new char[]{
- '(',
- ')',
- '<',
- '>',
- '@',
- ',',
- ';',
- ':',
- '\\',
- '"',
- '\t',
- ' ',
- '[',
- ']',
- '/',
- '?',
- '='
- };
-
/// <summary>
/// Create an instance with the primary as the <c>PrimaryType</c>
/// and sub as the <c>SubType</c>
@@ -86,7 +66,8 @@
[MailTODO]
public ContentType(string headerValue)
{
-
+ HeaderTokenizer ht = new HeaderTokenizer(headerValue,
+ Constants.MIMEDelimiters);
throw new NotImplementedException();
}
|