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
Показать файл Открыть проект Примеры использования класса

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