Novell.Directory.Ldap.Rfc2251.RfcFilter.addExtensibleMatch C# (CSharp) Method

addExtensibleMatch() private method

private addExtensibleMatch ( System matchingRule, System attrName, sbyte value_Renamed, bool useDNMatching ) : void
matchingRule System
attrName System
value_Renamed sbyte
useDNMatching bool
return void
        public virtual void addExtensibleMatch(System.String matchingRule, System.String attrName, sbyte[] value_Renamed, bool useDNMatching)
        {
            Asn1Object current = new Asn1Tagged(new Asn1Identifier(Asn1Identifier.CONTEXT, true, EXTENSIBLE_MATCH), new RfcMatchingRuleAssertion(((System.Object) matchingRule == null)?null:new RfcMatchingRuleId(matchingRule), ((System.Object) attrName == null)?null:new RfcAttributeDescription(attrName), new RfcAssertionValue(value_Renamed), (useDNMatching == false)?null:new Asn1Boolean(true)), false);
            addObject(current);
            return ;
        }