[corlib] Default comparer uses IComparable interface only
[mono.git] / mcs / class / System.DirectoryServices / System.DirectoryServices / ChangeLog
index 7b3da8778a8b3a42303a255a78282fa3c04a5826..7290e528fadc274bced60313a4905059d812a8d6 100644 (file)
@@ -1,3 +1,40 @@
+2009-02-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       - The PropertyValueCollection class doesn't mark its data as dirty/changed in
+         - this[int index] setter
+         - Insert()
+         - Remove() 
+         - Value setter
+       The DirectoryEntry class doesn't handle the clearing of an attribute (see
+       CommitEntry())
+       Patch from Juraj Skripsky that fixes bug #416985.
+
+2008-07-06  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * DirectoryEntry.cs: Use typeof(LdapModification) instead of
+       Type.GetType and actually use the value afterward.
+       [Found using Gendarme AvoidTypeGetTypeForConstantStringsRule]
+       * SearchResultCollection.cs: Avoid infinite recursion in 
+       Contains(SearchResult).
+       [Found using Gendarme BadRecursiveInvocationRule]
+
+2007-05-21  Adar Wesley <adarw@mainsoft.com>
+
+       * DirectoryEntry.cs: added missing methods InvokeGet, InvokeSet.
+
+2006-12-28  Jon Larimer <jlarimer@gmail.com>
+
+       * DirectorySearcher.cs: When using
+       System.DirectoryServices.DirectorySearcher to query a Windows
+       Active Directory Server, the results will almost always contain
+       referal nodes. These can probably be ignored, as there are also
+       non-referal responses.
+
+       With the below patch, the Mono DirectorySearcher can be used to
+       query Windows AD servers.
+
+       Fixes #80103.
+       
 2005-05-12  Boris Kirzner <borisk@mainsoft.com>
        * DirectoryEntry.cs, DirectorySearcher.cs: fix object disposing.