Soap.InvokeRegistry.MethodMapItem

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  MethodMapItem = record
    Name: string;
    ExtName: InvString;
    ReturnName: InvString;  { Can use [key="value"] format }
    XMLOptions: Integer;
    Parameters: array of ParameterMapItem;
  end;

C++

struct DECLSPEC_DRECORD MethodMapItem
{
private:
    typedef System::DynamicArray<ParameterMapItem> _MethodMapItem__1;
public:
    System::UnicodeString Name;
    System::UnicodeString ExtName;
    System::UnicodeString ReturnName;
    int XMLOptions;
    _MethodMapItem__1 Parameters;
};

Properties

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

Description

Stores information about a method of an invokable interface.

MethodMapItem is used by the invocation registry to store information about a method of a registered invokable interface (the relationship to the corresponding operation name, and so forth).

See Also