TsgcWSPClient_STOMP_RabbitMQProperties › Version

Version Property

Read-only string with the sgcWebSockets build version of the STOMP RabbitMQ subprotocol component.

Syntax

property Version: String read GetVersion;

Default Value

Inherited from the sgcWebSockets library build

Remarks

Inherited from the component framework: returns the build version of the installed sgcWebSockets library at design and runtime. The value is read-only and intended for diagnostics, support tickets and about-box text. It does not identify the STOMP wire protocol negotiated with RabbitMQ — use the Versions flags to configure which of STOMP 1.0/1.1/1.2 are offered, and read the Version parameter of OnRabbitMQConnected to find out which one the broker actually selected.

Example


oRabbit := TsgcWSPClient_STOMP_RabbitMQ.Create(nil);
ShowMessage('sgcWebSockets STOMP RabbitMQ version: ' + oRabbit.Version);

Back to Properties