Datasnap.DSSession.TDSSessionTunnelInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TDSSessionTunnelInfo = record
    ChannelName: string;
    ClientChannelId: string;
    SecurityToken: string;
    AuthUser: string;
    AuthPassword: string;
  end;

C++

struct DECLSPEC_DRECORD TDSSessionTunnelInfo
{
public:
    System::UnicodeString ChannelName;
    System::UnicodeString ClientChannelId;
    System::UnicodeString SecurityToken;
    System::UnicodeString AuthUser;
    System::UnicodeString AuthPassword;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
Datasnap.DSSession.pas
Datasnap.DSSession.hpp
Datasnap.DSSession Datasnap.DSSession

Description

Record holding information that is mapped to a specific tunnel, which is to be associated with a session.

Field Meaning

ChannelName

The channel name associated with the tunnel.

ClientChannelId

The ID of the tunnel, as specified by the client.

SecurityToken

Security token associated with the tunnel, for authorized modification.

AuthUser

The user associated with the tunnel.

AuthPassword

The password of the user associated with the tunnel.