Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
JustinDallas
Specialist III
Specialist III

QlikSense C# SDK: Get AppName from Qlik.Engine.App instance

Hello Folks,

 

I'm using the QlikSense SDK for C#.  Given that I've got an instance of a Qlik.Engine.App, does anyone know how to get the AppName?

 

 var appIdentitifers = location.GetAppIdentifiers();
 var fooAppIdentifier = appIdentitifers.First();
 var fooApp= location.App(fooAppIdentifier );
 var appName = fooApp.?

 

 I know I can get that information from the Qlik.Engine.AppIdentifier, but I was wondering if there was a way to get it from the Qlik.Engine.App item itself. 

 

Any help is greatly appreciated

Labels (2)
1 Reply
Øystein_Kolsrud
Employee
Employee

Sure, it's this property: https://help.qlik.com/en-US/sense-developer/February2020/APIs/Net+SDK/html/P_Qlik_Engine_NxAppProper...

So your code should look like this:

var fooApp= location.App(fooAppIdentifier);
var appName = fooApp.GetAppPropertis().Title