<appSettings> 的 <remove> 元素
添加自定义应用程序设置。
configuration
<appSettings>
<add>
语法
<appSettings>
<add key="Key of custom setting" value="Value of custom setting" />
</appSettings>
特性
说明 | |
---|---|
key | 必需的特性。 指定要添加的键名。 |
value | 必需的特性。 指定要添加的键值。 |
父元素
描述 | |
---|---|
<appSettings> | 包含自定义应用程序设置,如文件路径、XML Web service URL 或应用程序的任何其他自定义配置信息。 |
子元素
无
示例
下面的示例演示如何为应用程序名称添加自定义配置设置:
<appSettings>
<add key="ApplicationName" value="MyApplication" />
</appSettings>
下面的示例使用 <add>
元素在 ASP.NET 应用程序中定义两种兼容性设置:
<appSettings>
<add key="AppContext.SetSwitch:Switch.System.Globalization.NoAsyncCurrentCulture" value="true" />
<add key="AppContext.SetSwitch:Switch.System.Uri.DontEnableStrictRFC3986ReservedCharacterSets" value="true" />
</appSettings>