System.Tether.Manager.TTetheringCommandType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TTetheringCommandType = (Command, SendResponse, CloseConnection, CreateConnection, SendStream, ReadStream, None, SendString, ReadString);

C++

enum class DECLSPEC_DENUM TTetheringCommandType : unsigned char { Command, SendResponse, CloseConnection, CreateConnection, SendStream, ReadStream, None, SendString, ReadString };

Properties

Type Visibility Source Unit Parent
enum public
System.Tether.Manager.pas
System.Tether.Manager.hpp
System.Tether.Manager System.Tether.Manager

Description

Enumerated type that defines the type of an app tethering command.

The following table shows the possible values:

Value Description

Command

A command that does not fit any of the other values.

SendResponse

A command that is a response to a previously-received command.

CloseConnection

A command that rejects a connection request from a remote profile.

CreateConnection

A command that accepts a connection request from a remote profile.

SendStream

A command that requests your profile to send a stream.

ReadStream

A command that lets your profile know that a stream can be read from the remote profile.

SendString

A command that requests your profile to send a string.

ReadString

A command that lets your profile know that a string can be read from the remote profile.

None

A command that is not actually a command.

See Also