Exemplo n.º 1
0
        internal LdapCompareRequest(Asn1LdapMessage message)
            : base(message)
        {
            var compare = message.ProtocolOp.CompareRequest;

            Entry     = new LdapDistinguishedName(compare.Entry.Span);
            Assertion = new LdapAttributeAssertion(compare.Assertion);
        }
 internal LdapGreaterOrEqualFilter(LdapAttributeAssertion assertion)
     : base(assertion)
 {
 }
Exemplo n.º 3
0
 internal LdapLessOrEqualFilter(LdapAttributeAssertion assertion)
     : base(assertion)
 {
 }
Exemplo n.º 4
0
 internal LdapCompareFilter(LdapAttributeAssertion assertion)
 {
     Assertion = assertion;
 }
Exemplo n.º 5
0
 internal LdapCompareFilter(Asn1AttributeValueAssertion assertion)
 {
     Assertion = new LdapAttributeAssertion(assertion);
 }
Exemplo n.º 6
0
 internal LdapApproxMatchFilter(LdapAttributeAssertion assertion)
     : base(assertion)
 {
 }
Exemplo n.º 7
0
 internal LdapEqualityFilter(LdapAttributeAssertion assertion)
     : base(assertion)
 {
 }
Exemplo n.º 8
0
 internal LdapCompareRequest(int messageId, string dn, LdapAttributeAssertion assertion, LdapControl[] controls)
     : base(messageId, controls)
 {
     Entry     = new LdapDistinguishedName(dn);
     Assertion = assertion;
 }