[Csmail-patches] CVS: csmail/src/CSMail.Utils ChangeLog,1.11,1.12 StringUtils.cs,1.1,1.2
Status: Pre-Alpha
Brought to you by:
mastergaurav
From: Gaurav V. <mas...@us...> - 2002-09-30 12:28:04
|
Update of /cvsroot/csmail/csmail/src/CSMail.Utils In directory usw-pr-cvs1:/tmp/cvs-serv9059 Modified Files: ChangeLog StringUtils.cs Log Message: 2002-09-30 * StringUtils.cs : Escape(string), Unescape(string) - Stubbed. Index: ChangeLog =================================================================== RCS file: /cvsroot/csmail/csmail/src/CSMail.Utils/ChangeLog,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- ChangeLog 30 Sep 2002 04:02:38 -0000 1.11 +++ ChangeLog 30 Sep 2002 12:28:01 -0000 1.12 @@ -1,4 +1,9 @@ +2002-09-30 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> + + * StringUtils.cs : Escape(string), + Unescape(string) - Stubbed. + 2002-09-27 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> * DateUtils.cs : Added new class. Index: StringUtils.cs =================================================================== RCS file: /cvsroot/csmail/csmail/src/CSMail.Utils/StringUtils.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- StringUtils.cs 29 Aug 2002 10:12:50 -0000 1.1 +++ StringUtils.cs 30 Sep 2002 12:28:01 -0000 1.2 @@ -20,5 +20,17 @@ { return path.Split(new char[] { Path.PathSeparator }); } + + [MailTODO] + public static string Escape(string unescaped) + { + throw new NotImplementedException(); + } + + [MailTODO] + public static string Unescape(string escaped) + { + throw new NotImplementedException(); + } } } |