Represents an Ldap Authentication Choice.
 AuthenticationChoice ::= CHOICE { simple                  [0] OCTET STRING, -- 1 and 2 reserved sasl                    [3] SaslCredentials } 
Inheritance: Novell.Directory.Ldap.Asn1.Asn1Choice
        //*************************************************************************
        // Constructors for BindRequest
        //*************************************************************************

        /// <summary> </summary>
        public RfcBindRequest(Asn1Integer version, RfcLdapDN name, RfcAuthenticationChoice auth) : base(3)
        {
            add(version);
            add(name);
            add(auth);
            return;
        }
Exemple #2
0
        // *************************************************************************
        // Constructors for BindRequest
        // *************************************************************************

        /// <summary> </summary>
        public RfcBindRequest(Asn1Integer version, RfcLdapDn name, RfcAuthenticationChoice auth)
            : base(3)
        {
            Add(version);
            Add(name);
            Add(auth);
        }
 //*************************************************************************
 // Constructors for BindRequest
 //*************************************************************************
 /// <summary> </summary>
 public RfcBindRequest(Asn1Integer version, RfcLdapDN name, RfcAuthenticationChoice auth)
     : base(3)
 {
     add(version);
     add(name);
     add(auth);
     return ;
 }