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

Encapsulates the response returned by an Ldap server on an asynchronous extended operation request. It extends LdapResponse. The response can contain the OID of the extension, an octet string with the operation's data, both, or neither.
상속: LdapResponse
파일 보기 프로젝트 열기: EventStore/csharp-ldap 1 사용 예제들

Private Properties

프로퍼티 타입 설명
LdapExtendedResponse System

공개 메소드들

메소드 설명
LdapExtendedResponse ( RfcLdapMessage message ) : System

Creates an LdapExtendedResponse object which encapsulates a server response to an asynchronous extended operation request.

register ( System oid, System extendedResponseClass ) : void

Registers a class to be instantiated on receipt of a extendedresponse with the given OID.

Any previous registration for the OID is overridden. The extendedResponseClass object MUST be an extension of LDAPExtendedResponse.

비공개 메소드들

메소드 설명
LdapExtendedResponse ( ) : System

메소드 상세

LdapExtendedResponse() 공개 메소드

Creates an LdapExtendedResponse object which encapsulates a server response to an asynchronous extended operation request.
public LdapExtendedResponse ( RfcLdapMessage message ) : System
message Novell.Directory.Ldap.Rfc2251.RfcLdapMessage The RfcLdapMessage to convert to an /// LdapExtendedResponse object. ///
리턴 System

register() 공개 정적인 메소드

Registers a class to be instantiated on receipt of a extendedresponse with the given OID.

Any previous registration for the OID is overridden. The extendedResponseClass object MUST be an extension of LDAPExtendedResponse.

public static register ( System oid, System extendedResponseClass ) : void
oid System The object identifier of the control. ///
extendedResponseClass System A class which can instantiate an /// LDAPExtendedResponse. ///
리턴 void