C# 클래스 Novell.Directory.Ldap.LdapControl

Encapsulates optional additional parameters or constraints to be applied to an Ldap operation. When included with LdapConstraints or LdapSearchConstraints on an LdapConnection or with a specific operation request, it is sent to the server along with operation requests.
상속: System.ICloneable
파일 보기 프로젝트 열기: EventStore/csharp-ldap 1 사용 예제들

Private Properties

프로퍼티 타입 설명
LdapControl System
LdapControl System
getValue sbyte[]
setValue void

공개 메소드들

메소드 설명
Clone ( ) : Object

Returns a copy of the current LdapControl object.

register ( System oid, System controlClass ) : void

Registers a class to be instantiated on receipt of a control with the given OID. Any previous registration for the OID is overridden. The controlClass must be an extension of LdapControl.

보호된 메소드들

메소드 설명
LdapControl ( RfcControl control ) : System

Create an LdapControl from an existing control.

비공개 메소드들

메소드 설명
LdapControl ( ) : System
LdapControl ( System oid, bool critical, sbyte values ) : System
getValue ( ) : sbyte[]
setValue ( sbyte controlValue ) : void

메소드 상세

Clone() 공개 메소드

Returns a copy of the current LdapControl object.
public Clone ( ) : Object
리턴 System.Object

LdapControl() 보호된 메소드

Create an LdapControl from an existing control.
protected LdapControl ( RfcControl control ) : System
control Novell.Directory.Ldap.Rfc2251.RfcControl
리턴 System

register() 공개 정적인 메소드

Registers a class to be instantiated on receipt of a control with the given OID. Any previous registration for the OID is overridden. The controlClass must be an extension of LdapControl.
public static register ( System oid, System controlClass ) : void
oid System The object identifier of the control. /// ///
controlClass System A class which can instantiate an LdapControl. ///
리턴 void