Soap.InvokeRegistry.IntfExceptionItem

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  IntfExceptionItem = record
    ClassType: TClass;
    MethodNames: string;
  end;

C++

struct DECLSPEC_DRECORD IntfExceptionItem
{
public:
    System::TClass ClassType;
    System::UnicodeString MethodNames;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
Soap.InvokeRegistry.pas
Soap.InvokeRegistry.hpp
Soap.InvokeRegistry Soap.InvokeRegistry

Description

IntfExceptionItem and TExceptionItemArray describe the association between a remotable exception and an interface that can raise it.

IntfExceptionItem describes a single remotable exception type. TExceptionItemArray is an array of IntfExceptionItem descriptors. Typically, this array describes the set of exceptions associated with an invokable interface.

ClassType is the class reference for the remotable exception class.

MethodNames is a comma-delimited list of method names. If MethodNames is an empty string, the exception is associated with all the methods on an interface. If MethodNames is nonempty, the exception is associated only with those methods of the interface that the MethodNames field lists.