Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 JustinDallas
		
			JustinDallas
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		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
 
					
				
		
 Øystein_Kolsrud
		
			Øystein_Kolsrud
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		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
