Extract the Annex tab sections from the WDE application

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();
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:

this.configService = configService;
KeyValueCollection kvc = configService.MyApplication.UserProperties;

Oops… yes. That is the right one