Update of /cvsroot/csmail/csmail/src/CSMail.Utils
In directory usw-pr-cvs1:/tmp/cvs-serv609
Modified Files:
ChangeLog UniqueValueGenerator.cs
Log Message:
2002-10-01
* UniqueValueGenerator.cs : GenerateMessgeID(Session)
- Stubbed.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/csmail/csmail/src/CSMail.Utils/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog 1 Oct 2002 10:33:58 -0000 1.13
+++ ChangeLog 1 Oct 2002 11:48:20 -0000 1.14
@@ -1,6 +1,11 @@
2002-10-01 Gaurav Vaish <mastergaurav AT users DOT sf DOT net>
+ * UniqueValueGenerator.cs : GenerateMessgeID(Session)
+ - Stubbed.
+
+2002-10-01 Gaurav Vaish <mastergaurav AT users DOT sf DOT net>
+
* Properties.cs : GetBool(string, bool) - Implemented.
: GetInt(string, int) - Implemented.
Index: UniqueValueGenerator.cs
===================================================================
RCS file: /cvsroot/csmail/csmail/src/CSMail.Utils/UniqueValueGenerator.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- UniqueValueGenerator.cs 26 Sep 2002 09:45:40 -0000 1.1
+++ UniqueValueGenerator.cs 1 Oct 2002 11:48:20 -0000 1.2
@@ -17,7 +17,6 @@
{
public class UniqueValueGenerator
{
- [MailTODO]
public static string GenerateBoundary()
{
StringBuilder retVal = new StringBuilder("__CSMail__Next");
@@ -45,6 +44,12 @@
retVal.Append((new Random()).Next());
retVal.Append("__");
return retVal.ToString();
+ }
+
+ [MailTODO]
+ public static string GenerateMessgeID(Session session)
+ {
+ throw new NotImplementedException();
}
}
}
|