我的 web.config 中有配置文件提供程序
<profile defaultProvider="MyProvider">
<providers>
.......
<properties>
<add name="CustomField1" type="string" />
<add name="CustomField2" type="string" />
<add name="CustomField3" type="string" />
<add name="CustomField4" type="string" />
</properties>
</profile>
如何获取包含所有可用属性的字符串 [] 数组(CustomField1、CustomField2 ....)
编辑: 找到可行的解决方案,但不确定它是否是最好和最简单的解决方案。
var allCustomProperties =
profile.GetType().GetProperties().Where(l => l.PropertyType.Name == "String" && l.CanWrite == true).Select(
l => l.Name).ToArray();