In the SearchResultEventArgs.ToString(), the function classification was
authorPalaniappan N <npalani@mono-cvs.ximian.com>
Wed, 19 Dec 2007 11:24:01 +0000 (11:24 -0000)
committerPalaniappan N <npalani@mono-cvs.ximian.com>
Wed, 19 Dec 2007 11:24:01 +0000 (11:24 -0000)
hard coded earlier. This has been corrected now.

svn path=/trunk/mcs/; revision=91611

mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap.Events/SearchResultEventArgs.cs

index 0d91a769e031ed1e556977f4b605066799ee7aa9..d0329f606bf6c771d0fd4b40093c909c99a5f6b5 100644 (file)
@@ -59,7 +59,7 @@ namespace Novell.Directory.Ldap.Events
       StringBuilder buf = new StringBuilder();
 
       buf.AppendFormat("[{0}:", GetType());
-      buf.Append("(Classification=LDAP Persistence Search Event)");
+      buf.AppendFormat("(Classification={0})",eClassification);
       buf.AppendFormat("(Type={0})", getChangeTypeString());
       buf.AppendFormat("(EventInformation:{0})", getStringRepresentaionOfEventInformation());
       buf.Append("]");