Datasnap.DSCommon.TDSClientChannelEventItem
Delphi
  TDSClientChannelEventItem = record
    EventType: TDSCallbackTunnelEventType;
    TunnelId: string;
    Tunnel: TDSClientCallbackChannelManager;
    TunnelChannelName: string;
    CallbackId: string;
    CallbackItem: TDSCallbackItem;
  end;
C++
struct DECLSPEC_DRECORD TDSClientChannelEventItem
{
public:
    TDSCallbackTunnelEventType EventType;
    System::UnicodeString TunnelId;
    TDSClientCallbackChannelManager* Tunnel;
    System::UnicodeString TunnelChannelName;
    System::UnicodeString CallbackId;
    TDSCallbackItem* CallbackItem;
};
Propriétés
| Type | Visibilité | Source | Unité | Parent | 
|---|---|---|---|---|
| record struct | public | Datasnap.DSCommon.pas Datasnap.DSCommon.hpp | Datasnap.DSCommon | Datasnap.DSCommon | 
Description
Elément d'événement transmis à travers TDSClientChannelManagerEvent afin de fournir des informations sur l'événement de tunnel.
TDSClientChannelEventItem est un enregistrement transmis en tant qu'élément d'événement, à travers TDSClientChannelManagerEvent, afin de fournir des informations sur l'événement de tunnel.
| Champ | Signification | 
|---|---|
| EventType | Le type d'événement se produisant pour un tunnel. | 
| TunnelId | L'ID du tunnel sur lequel on agit. | 
| Tunnel | Le tunnel sur lequel on agit. | 
| TunnelChannelName | Le  | 
| CallbackId | L'ID du rappel ajouté ou retiré. | 
| CallbackItem | L'élément de rappel qui encapsule le rappel pour lequel l'événement est disponible, ou nil si le tunnel est fermé. |