<add> element for <appSettings>
Adds a custom application setting.
<configuration>
<appSettings>
<add>
Syntax
<appSettings>
<add key="Key of custom setting" value="Value of custom setting" />
</appSettings>
Attributes
Description | |
---|---|
key | Required attribute. Specifies the name of the key to add. |
value | Required attribute. Specifies the value of the key to add. |
Parent element
Description | |
---|---|
<appSettings> | Contains custom application settings, such as file paths, XML Web service URLs, or any other custom configuration information for an application. |
Child elements
None
Example
The following example shows how to add a custom configuration setting for the application's name:
<appSettings>
<add key="ApplicationName" value="MyApplication" />
</appSettings>
The following example uses the <add>
element to define two compatibility settings in an ASP.NET application:
<appSettings>
<add key="AppContext.SetSwitch:Switch.System.Globalization.NoAsyncCurrentCulture" value="true" />
<add key="AppContext.SetSwitch:Switch.System.Uri.DontEnableStrictRFC3986ReservedCharacterSets" value="true" />
</appSettings>
See also
Работете съвместно с нас в GitHub
Източникът за това съдържание може да бъде намерен в GitHub, където можете също да създавате и преглеждате проблеми и да изтегляте искания. За повече информация вижте нашето ръководство за сътрудник.