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.