Update of /cvsroot/csmail/csmail/src/CSMail.Utils
In directory usw-pr-cvs1:/tmp/cvs-serv30170/CSMail.Utils
Modified Files:
Properties.cs
Log Message:
2002-08-28 Gaurav Vaish <mastergaurav AT users DOT sf DOT net>
* CSMail/Providers.cs : Completed.
* CSMail/Properties.cs : Made contructor public.
* CSMail/Session.cs : Working on it.
* CSMail.Utils/Properties.cs : Stubbed "this[string]" property.
Index: Properties.cs
===================================================================
RCS file: /cvsroot/csmail/csmail/src/CSMail.Utils/Properties.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Properties.cs 20 Jun 2002 11:20:37 -0000 1.1
+++ Properties.cs 28 Aug 2002 11:44:20 -0000 1.2
@@ -8,12 +8,28 @@
* (C) Gaurav Vaish (2002)
*/
+using System;
+using CSMail;
+
namespace CSMail.Utils
{
public class Properties
{
- private Properties()
+ public Properties()
{
+ }
+
+ [MailTODO]
+ public string this[string key]
+ {
+ get
+ {
+ throw new NotImplementedException();
+ }
+ set
+ {
+ throw new NotImplementedException();
+ }
}
}
}
|