Represents an Ldap Attribute Value Assertion.
 AttributeValueAssertion ::= SEQUENCE { attributeDesc   AttributeDescription, assertionValue  AssertionValue } 
Inheritance: Novell.Directory.Ldap.Asn1.Asn1Sequence
Ejemplo n.º 1
0
        //*************************************************************************
        // Constructor for CompareRequest
        //*************************************************************************

        /// <summary> </summary>
        public RfcCompareRequest(RfcLdapDN entry, RfcAttributeValueAssertion ava) : base(2)
        {
            add(entry);
            add(ava);
            if (ava.AssertionValue == null)
            {
                throw new ArgumentException("compare: Attribute must have an assertion value");
            }
        }
Ejemplo n.º 2
0
		//*************************************************************************
		// Constructor for CompareRequest
		//*************************************************************************
		
		/// <summary> </summary>
		public RfcCompareRequest(RfcLdapDN entry, RfcAttributeValueAssertion ava):base(2)
		{
			add(entry);
			add(ava);
			if (ava.AssertionValue == null)
			{
				throw new System.ArgumentException("compare: Attribute must have an assertion value");
			}
			return ;
		}