Genesys CTI User Forum
		Genesys CTI User Forum => Genesys CTI Technical Discussion => Topic started by: shahzeb on September 09, 2019, 07:28:01 AM
		
			
			- 
				Hello Guys,
I want some help. Trying to extract the sections from the Annex tab from the WDE application, and not knowing on how to get my hands on that data at all. 
I know i can get the Options from the following code (below), but how to extract the sections in Annex tab then ? Any idea  
 IConfigurationService configService = container.Resolve<IConfigurationService>();
 KeyValueCollection options =  configService.MyApplication.Options;
			 
			
			- 
				What exactly do you mean by extract? Extract what? Remove? 
Enviado de meu SM-G9650 usando o Tapatalk
			 
			
			- 
				KeyValueCollection annex = configurationService.MyApplication.FlexibleProperties;
			
 
			
			- 
				
To get the annex values of your application I thought it was:
[code]this.configService = configService;
KeyValueCollection kvc = configService.MyApplication.UserProperties;[/code]
			 
			
			- 
				[quote author=PeteHoyle link=topic=11431.msg52101#msg52101 date=1568057274]
To get the annex values of your application I thought it was:
[code]this.configService = configService;
KeyValueCollection kvc = configService.MyApplication.UserProperties;[/code]
[/quote]
Oops... yes. That is the right one