Novell.Directory.Ldap.LdapExtendedResponse.register C# (CSharp) Méthode

register() public static méthode

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. ///
Résultat void
        public static void register(System.String oid, System.Type extendedResponseClass)
        {
            registeredResponses.registerResponseExtension(oid, extendedResponseClass);
            return ;
        }