TsgcHTTP2ClientProperties › Version

Version Property

Read-only string that returns the current sgcWebSockets library version.

Syntax

property Version: String read GetVersion;

Default Value

Remarks

Use this property at runtime or design time to confirm which build of the sgcWebSockets component library (which also implements the HTTP/2 client) is in use. The value is formatted as a dotted version number.

Example


oHTTP2 := TsgcHTTP2Client.Create(nil);
ShowMessage(oHTTP2.Version);

Back to Properties