Novell.Directory.Ldap.LdapConnection.RemoveUnsolicitedNotificationListener C# (CSharp) Method

RemoveUnsolicitedNotificationListener() public method

Deregisters an object so that it will no longer be notified on arrival of an unsolicited message from a server. If the object is null or was not previously registered for unsolicited notifications, the method does nothing.
public RemoveUnsolicitedNotificationListener ( LdapUnsolicitedNotificationListener listener ) : void
listener LdapUnsolicitedNotificationListener An object to no longer be notified on arrival of /// an unsolicited message from a server. /// ///
return void
        public virtual void RemoveUnsolicitedNotificationListener(LdapUnsolicitedNotificationListener listener)
        {
            if (listener != null)
                conn.RemoveUnsolicitedNotificationListener(listener);
        }