Soap.InvokeRegistry.TInvokableClassRegistry.UnRegisterInvokableClass

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure UnRegisterInvokableClass(AClass: TClass);

C++

void __fastcall UnRegisterInvokableClass(System::TClass AClass);

Properties

Type Visibility Source Unit Parent
procedure
function
public
Soap.InvokeRegistry.pas
Soap.InvokeRegistry.hpp
Soap.InvokeRegistry TInvokableClassRegistry

Description

Unregisters the implementation class for an invokable interface.

UnRegisterInvokableClass unregisters an implementation class that was previously registered by a call to RegisterInvokableClass. Once a class is unregistered, the invocation registry can no longer create and use instances of the specified class to handle incoming method calls to its corresponding invokable interface.

AClass is a class reference to the class being unregistered.

See Also