ProviderSettings
Represents the configuration elements associated with a provider.
namespace System.Configuration
{
[AttributeUsage(AttributeTargets.Property)]
public sealed class SettingsDescriptionAttribute : Attribute
{
private readonly string _description = description;
public string Description => _description;
public SettingsDescriptionAttribute(string description)
{
}
}
}