/****************************************************************************** * The MIT License * Copyright (c) 2003 Novell Inc. www.novell.com * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the Software), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. *******************************************************************************/ // // Novell.Directory.Ldap.LdapBindRequest.cs // // Author: // Sunil Kumar (Sunilk@novell.com) // // (C) 2003 Novell, Inc (http://www.novell.com) // using System; using Novell.Directory.Ldap.Asn1; using Novell.Directory.Ldap.Rfc2251; namespace Novell.Directory.Ldap { /// Represents a simple bind request. /// /// /// /// /* * BindRequest ::= [APPLICATION 0] SEQUENCE { * version INTEGER (1 .. 127), * name LdapDN, * authentication AuthenticationChoice } */ public class LdapBindRequest:LdapMessage { /// Retrieves the Authentication DN for a bind request. /// /// /// the Authentication DN for a bind request /// virtual public System.String AuthenticationDN { get { return Asn1Object.RequestDN; } } /// Constructs a simple bind request. /// /// /// The Ldap protocol version, use Ldap_V3. /// Ldap_V2 is not supported. /// /// /// If non-null and non-empty, specifies that the /// connection and all operations through it should /// be authenticated with dn as the distinguished /// name. /// /// /// If non-null and non-empty, specifies that the /// connection and all operations through it should /// be authenticated with dn as the distinguished /// name and passwd as password. /// /// /// Any controls that apply to the simple bind request, /// or null if none. /// [CLSCompliantAttribute(false)] public LdapBindRequest(int version, System.String dn, sbyte[] passwd, LdapControl[] cont):base(LdapMessage.BIND_REQUEST, new RfcBindRequest(new Asn1Integer(version), new RfcLdapDN(dn), new RfcAuthenticationChoice(new Asn1Tagged(new Asn1Identifier(Asn1Identifier.CONTEXT, false, 0), new Asn1OctetString(passwd), false))), cont) { return ; } /// Constructs a secure bind request. /// /// /// The Ldap protocol version, use Ldap_V3. /// Ldap_V2 is not supported. /// /// /// If non-null and non-empty, specifies that the /// connection and all operations through it should /// be authenticated with dn as the distinguished /// name. /// /// /// Security mechanism code /// /// /// Security credentials /// /// /// Any controls that apply to the simple bind request, /// or null if none. /// [CLSCompliantAttribute(false)] public LdapBindRequest(int version, System.String dn, String mechanism, sbyte[] credentials, LdapControl[] cont):base(LdapMessage.BIND_REQUEST, new RfcBindRequest(version, dn, mechanism, credentials), cont) { return ; } /// Return an Asn1 representation of this add request. /// /// #return an Asn1 representation of this object. /// public override System.String ToString() { return Asn1Object.ToString(); } } }