Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Getting Qlik Sense Desktop Release Number using .NET SDK

Hi,

Does anybody know how to get the release of Qlik Sense Desktop using .NET SDK?

The number I'm looking for is the one highlighted in red below:

ps.png

Thanks in advance!

Paulo Garcia.

3 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

Check this link.

Get the version of Qlik Sense ‒ Qlik Sense

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Anonymous
Not applicable
Author

Thanks for your answer kaushik.solanki but as I mentioned above, I need the command of the .NET SDK, not the Web API.

I know that there's a ProductVersion Method in the Hub Class of the .NET SDK, but it doesn't return what I want. So, as an example, if I implement this:

ILocation Sense = Location.FromUri(new Uri("ws://127.0.0.1:4848"));

Sense.AsDirectConnectionToPersonalEdition();

IHub hub = Sense.Hub();

using (hub)

{

    senseVersion = hub.ProductVersion();

    Console.WriteLine(senseVersion);

}

I get this:

ps2.png

I appreciate any further help.

Thanks.

Anonymous
Not applicable
Author

Hi guys,

Nobody else?

Thanks in advance!