Nota
Pristup ovoj stranici zahteva autorizaciju. Možete pokušati da se prijavite ili promenite direktorijume.
Pristup ovoj stranici zahteva autorizaciju. Možete pokušati da promenite direktorijume.
Adds a custom application setting.
<configuration>
<appSettings>
<add>
Syntax
<appSettings>
<add key="Key of custom setting" value="Value of custom setting" />
</appSettings>
Attributes
| Attribute | 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
| 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
Saradnja sa nama na GitHub
Izvor za ovaj sadržaj može se naći na GitHub-u, gde takođe možete kreirati i pregledati probleme i zahteve za povlačenje. Za više informacija, pogledajte naš vodič za saradnike.