什么是appSettings键有效字符?

时间:2013-07-04 15:36:32

标签: asp.net configuration-files appsettings

这很奇怪。我以为我很容易找到这个信息谷歌搜索,但我没有取得多大成功。我想知道的是,可以在Web.config文件的AppSettings部分中使用的有效字符是什么。例如:

<add key="MySpeed" value="100" />
<add key="My.Speed" value="100" />
<add key="My Speed" value="100" />
<add key="Vélocité" value="100" />

是否允许上述所有密钥?

1 个答案:

答案 0 :(得分:3)

The Microsoft documentation states only that the key is a String attribute. Nothing more. Their examples do show a key with spaces in the name.