Datasnap.DSClientRest.TDSRESTChannelEventItem

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

  TDSRESTChannelEventItem = record
    EventType: TDSRESTChannelEventType;
    ClientChannel: TDSRestClientChannel;
    ClientChannelId: string;
    ClientChannelName: string;
    CallbackId: string;
    Callback: TDSRestClientCallback;
  end;

C++

struct DECLSPEC_DRECORD TDSRESTChannelEventItem
{
public:
    TDSRESTChannelEventType EventType;
    TDSRestClientChannel* ClientChannel;
    System::UnicodeString ClientChannelId;
    System::UnicodeString ClientChannelName;
    System::UnicodeString CallbackId;
    TDSRestClientCallback* Callback;
};

Propriétés

Type Visibilité  Source Unité  Parent
record
struct
public
Datasnap.DSClientRest.pas
Datasnap.DSClientRest.hpp
Datasnap.DSClientRest Datasnap.DSClientRest

Description

Elément d'événement transmis via le TDSRESRChannelEvent pour fournir des informations d'événement de tunnel.

TDSRESTChannelEventItem est un enregistrement transmis en tant qu'élément d'événement via le TDSRESRChannelEvent pour fournir des informations d'événement de tunnel.

Champ Signification

EventType

Le type de l'événement se déclenchant pour un tunnel.

ClientChannel

Le canal sur lequel l'action se produit.

ClientChannelId

L'ID du canal sur lequel l'action se produit.

ClientChannelName

Le ServerChannelName du tunnel sur lequel l'action se produit.

CallbackId

L'ID du rappel ajouté ou retiré.

Callback

Le rappel ajouté ou retiré, ou nil si le canal est fermé.

Voir aussi