Method: Net::LDAP::Filter.ne

Defined in:
lib/net/ldap/filter.rb

.ne(attribute, value) ⇒ Object

Creates a Filter object indicating that a particular attribute value is either not present or does not match a particular string; see Filter::eq for more information.

This filter does not perform any escaping



140
141
142
# File 'lib/net/ldap/filter.rb', line 140

def ne(attribute, value)
  new(:ne, attribute, value)
end