Datasnap.DSClientRest.TDSRESTChannelEventItem

提供: RAD Studio API Documentation
移動先: 案内検索

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;
};

プロパティ

種類 可視性 ソース ユニット
record
struct
public
Datasnap.DSClientRest.pas
Datasnap.DSClientRest.hpp
Datasnap.DSClientRest Datasnap.DSClientRest

説明

TDSRESRChannelEvent を通じて渡される、トンネル イベント情報を提供するイベント項目です。

TDSRESTChannelEventItem は、TDSRESRChannelEvent を通じてイベント項目として渡され、トンネル イベント情報を提供するレコードです。

フィールド 意味

EventType

トンネルに関して発生しているイベントの種類。

ClientChannel

影響を受けているチャネル。

ClientChannelId

影響を受けているチャネルの ID。

ClientChannelName

影響を受けているトンネルの ServerChannelName

CallbackId

追加または削除されるコールバックの ID。

Callback

追加または削除されるコールバック。チャネルが閉じられている場合には nil。

関連項目