Soap.InvokeRegistry.TInvokableClassRegistry.GetExceptionInfoForInterface

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function  GetExceptionInfoForInterface(Info: PTypeInfo): TExceptionItemArray;

C++

TExceptionItemArray __fastcall GetExceptionInfoForInterface(System::Typinfo::PTypeInfo Info);

Properties

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

Description

Retrieves an array of exceptions that are registered as associated with an invokable interface.

Typically, applications do not need to call GetExceptionInfoForInterface. This method is used internally by the WSDL publisher to generate the WSDL that describes the exceptions that an invokable interface can raise.

Info is the runtime type information (RTTI) from a registered invokable interface. The interface must have been previously registered by a call to the RegisterInterface method.

GetExceptionInfoForInterface returns an array of IntfExceptionItem values, each of which describes a remotable exception that was registered for the invokable interface by a call to the RegisterException method.

See Also