How can Read plugin configurable values in c# code

what is the way to get all configurable properties that we have save against a plugin .

i have created the configurable value by below code .

public PropertyGroup[] ConfigurationOptions
{
get
{
PropertyGroup[] groups = new[] {
new PropertyGroup { Id = "ABC", LabelText = "ABC" }
};
GroupConfigurationCollection(groups);
return groups;
}
}

How can read these group properties values using into plugin code.

Parents Reply Children
No Data