API:Soap.InvokeRegistry.IntfHeaderItem

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  IntfHeaderItem = record
    Info: PTypeInfo;
    ClassType: TClass;
    Namespace: InvString;                   { Header namespace }
    Name: InvString;                        { Header name }
    DefaultMethodType: eHeaderMethodType;   { used if MethodNames = '' }
    DefaultRequired: Boolean;               { used if MethodNames = '' }
    MethodNames: string;                    { comma-delimited list of Method Names }
    MethodTypes: THeaderMethodTypeArray;    { matching array of in/out/inout enums }
    HeaderRequired: TRequiredArray;         { matching array of Required Booleans }
  end;

C++

struct DECLSPEC_DRECORD IntfHeaderItem
{
public:
    System::Typinfo::TTypeInfo *Info;
    System::TClass ClassType;
    System::UnicodeString Namespace;
    System::UnicodeString Name;
    eHeaderMethodType DefaultMethodType;
    bool DefaultRequired;
    System::UnicodeString MethodNames;
    THeaderMethodTypeArray MethodTypes;
    TRequiredArray HeaderRequired;
};

Properties

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

Description

Embarcadero Technologies does not currently have any additional information. Please help us document this topic by using the Discussion page!