[Csmail-patches] CVS: csmail/src/CSMail ProviderCollection.cs,NONE,1.1 ChangeLog,1.9,1.10 Provider.c
Status: Pre-Alpha
Brought to you by:
mastergaurav
From: Gaurav V. <mas...@us...> - 2002-08-29 04:10:14
|
Update of /cvsroot/csmail/csmail/src/CSMail In directory usw-pr-cvs1:/tmp/cvs-serv31294 Modified Files: ChangeLog Provider.cs Session.cs Added Files: ProviderCollection.cs Log Message: 2002-08-29 * ProviderCollection.cs : Added class. * Session.cs : Added property Debug --- NEW FILE --- /** * Namespace: CSMail * Class: ProviderCollection * * Author: Gaurav Vaish * Maintainer: mastergaurav AT users DOT sf DOT net * * (C) Gaurav Vaish (2002) */ using System.Collections; namespace CSMail { public class ProviderCollection : IEnumerable { private ArrayList providers = new ArrayList(); public ProviderCollection() { } } } Index: ChangeLog =================================================================== RCS file: /cvsroot/csmail/csmail/src/CSMail/ChangeLog,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- ChangeLog 28 Aug 2002 11:46:38 -0000 1.9 +++ ChangeLog 29 Aug 2002 04:10:11 -0000 1.10 @@ -1,7 +1,12 @@ +2002-08-29 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> + + * ProviderCollection.cs : Added class. + * Session.cs : Added property Debug + 2002-08-28 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> - * Providers.cs : Completed. + * Provider.cs : Completed. * Properties.cs : Made contructor public. * Session.cs : Working on it. Index: Provider.cs =================================================================== RCS file: /cvsroot/csmail/csmail/src/CSMail/Provider.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- Provider.cs 28 Aug 2002 11:44:20 -0000 1.2 +++ Provider.cs 29 Aug 2002 04:10:11 -0000 1.3 @@ -69,7 +69,7 @@ return version; } } - + public override string ToString() { String retVal = "CSMail.Provider["; Index: Session.cs =================================================================== RCS file: /cvsroot/csmail/csmail/src/CSMail/Session.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- Session.cs 28 Aug 2002 11:44:20 -0000 1.4 +++ Session.cs 29 Aug 2002 04:10:11 -0000 1.5 @@ -48,6 +48,18 @@ debug = bool.Parse(this.properties["CSMail.debug"]); } + public bool Debug + { + get + { + return debug; + } + set + { + debug = value; + } + } + public static Session GetInstance(Properties props, Authenticator auth) { return new Session(props, auth); |