[Csmail-patches] CVS: csmail/docs ChangeLog,1.2,1.3 csMailAPI.xml,1.5,1.6
Status: Pre-Alpha
Brought to you by:
mastergaurav
From: Gaurav V. <mas...@us...> - 2002-07-26 06:54:16
|
Update of /cvsroot/csmail/csmail/docs In directory usw-pr-cvs1:/tmp/cvs-serv30511/docs Modified Files: ChangeLog csMailAPI.xml Log Message: 2002-07-26 Gaurav Vaish <mastergaurav> * CSMailAPI.xml : Removed InternetAddressList::Set(int, InternetAddress) Added parameter (bool) to InternetAddressList::FindByValue(string) Added parameter (bool) to InternetAddressList::RemoveFirst(string) Added parameter (bool) to InternetAddressList::Remove(string[]) Removed parameter (int) from InternetAddressList::ToString(int) * InternetAddressList.cs : Completed. Well almost. Index: ChangeLog =================================================================== RCS file: /cvsroot/csmail/csmail/docs/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ChangeLog 25 Jul 2002 11:24:14 -0000 1.2 +++ ChangeLog 26 Jul 2002 06:54:13 -0000 1.3 @@ -1,8 +1,21 @@ +2002-07-26 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> + + * CSMailAPI.xml : Removed + InternetAddressList::Set(int, InternetAddress) + Added parameter (bool) to + InternetAddressList::FindByValue(string) + Added parameter (bool) to + InternetAddressList::RemoveFirst(string) + Added parameter (bool) to + InternetAddressList::Remove(string[]) + Removed parameter (int) from + InternetAddressList::ToString(int) + 2002-07-25 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> - * CSMailAPI.xml : Removed property "Empty" from - class InternetAddressList. No Need. + * CSMailAPI.xml : Removed property "Empty" from + class InternetAddressList. No Need. 2002-06-19 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> Index: csMailAPI.xml =================================================================== RCS file: /cvsroot/csmail/csmail/docs/csMailAPI.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- csMailAPI.xml 25 Jul 2002 11:24:14 -0000 1.5 +++ csMailAPI.xml 26 Jul 2002 06:54:13 -0000 1.6 @@ -414,15 +414,12 @@ <param name="addresses" type="InternetAddressList"/> </method> <method name="Clear" return="void"/> - <method name="Set" return="void"> - <param name="index" type="int"/> - <param name="address" type="InternetAddress"/> - </method> <method name="IndexOf" return="int"> <param name="address" type="InternetAddress"/> </method> <method name="FindByValue" return="int"> <param name="address" type="string"/> + <param name="ignoreCase" type="bool"/> </method> <method name="Item" return="InternetAddress"> <param name="index" type="int"/> @@ -435,13 +432,13 @@ </method> <method name="RemoveFirst" return="InternetAddress"> <param name="address" type="string"/> + <param name="ignoreCase" type="bool"/> </method> <method name="Remove" return="InternetAddress[]"> <param name="addresses" type="string[]"/> + <param name="ignoreCase" type="bool"/> </method> - <method name="ToString" return="string"> - <param name="index" type="int"/> - </method> + <method name="ToString" return="string"/> <implements> <interface name="IAddressList"/> <interface name="IEnumerable"/> |