[Csmail-patches] CVS: csmail/src/CSMail.Utils ChangeLog,1.20,1.21 MimeUtils.cs,1.1,1.2
Status: Pre-Alpha
Brought to you by:
mastergaurav
From: Gaurav V. <mas...@us...> - 2002-10-30 09:56:37
|
Update of /cvsroot/csmail/csmail/src/CSMail.Utils In directory usw-pr-cvs1:/tmp/cvs-serv31467 Modified Files: ChangeLog MimeUtils.cs Log Message: 2002-10-30 * MimeUtils.cs : SetDisposition(MimePart, ContentDisposition), : GetDisposition(MimePart) - Stubbed. Index: ChangeLog =================================================================== RCS file: /cvsroot/csmail/csmail/src/CSMail.Utils/ChangeLog,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- ChangeLog 8 Oct 2002 12:26:42 -0000 1.20 +++ ChangeLog 30 Oct 2002 09:56:34 -0000 1.21 @@ -1,4 +1,10 @@ +2002-10-30 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> + + * MimeUtils.cs : SetDisposition(MimePart, ContentDisposition), + : GetDisposition(MimePart) + - Stubbed. + 2002-10-08 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> * HeaderToken.cs, Index: MimeUtils.cs =================================================================== RCS file: /cvsroot/csmail/csmail/src/CSMail.Utils/MimeUtils.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- MimeUtils.cs 30 Sep 2002 04:02:38 -0000 1.1 +++ MimeUtils.cs 30 Oct 2002 09:56:34 -0000 1.2 @@ -9,6 +9,8 @@ */ using System; +using System.IO; +using System.Text; using CSMail; namespace CSMail.Utils @@ -45,7 +47,7 @@ } return null; } - + public static ParameterList GetParametersAsList(string headerValue, char[] separators) { @@ -81,6 +83,26 @@ } } return null; + } + + [MailTODO] + public static StreamReader Decode(StreamReader reader, + string encoding) + { + throw new NotImplementedException(); + } + + [MailTODO] + internal static void SetDisposition(IMimePart part, + ContentDisposition disposition) + { + throw new NotImplementedException(); + } + + [MailTODO] + internal static ContentDisposition SetDisposition(IMimePart part) + { + throw new NotImplementedException(); } } } |