Soap.IntfInfo.TIntfParamEntry

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TIntfParamEntry = record

C++

struct DECLSPEC_DRECORD TIntfParamEntry
{
public:
    System::Typinfo::TParamFlags Flags;
    System::UnicodeString Name;
    System::Typinfo::TTypeInfo *Info;
};

Properties

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

Description

TIntfParamEntry and TIntfParamEntryArray represents the array of parameters in a TInfMethEntry value.

TIntfParamEntry describes a single parameter on a method. TIntfParamEntryArray describes all the parameters on a method.

Flags gives the attributes of the parameter.

Info is a pointer to the type description for the parameter type.

See Also