Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ ms.assetid: 0d4ddb53-eb2b-49c0-9c33-a8dec5c39b46

Adds custom application settings. Each `<add>` tag contains a key/value pair.

[**\<configuration>**](configuration-element.md)\
&nbsp;&nbsp;[**\<sectionName>**](custom-element-2.md)\
&nbsp;&nbsp;&nbsp;&nbsp;**\<add>**
[`<configuration>`](configuration-element.md)\
&nbsp;&nbsp;[`<sectionName>`](custom-element-2.md)\
&nbsp;&nbsp;&nbsp;&nbsp;`<add>`

## Syntax

Expand All @@ -34,7 +34,7 @@ Adds custom application settings. Each `<add>` tag contains a key/value pair.

| Element | Description |
| ------- | ------------|
| [`<sectionName>` Element](custom-element-2.md) | Defines settings for custom configuration sections that use the <xref:System.Configuration.NameValueSectionHandler> and <xref:System.Configuration.DictionarySectionHandler> classes. |
| [`<sectionName>`](custom-element-2.md) | Defines settings for custom configuration sections that use the <xref:System.Configuration.NameValueSectionHandler> and <xref:System.Configuration.DictionarySectionHandler> classes. |

## Child elements

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ helpviewer_keywords:
- "add Element"
- "<add> Element"
---
# `<add>` element for \<appSettings>
# `<add>` element for `<appSettings>`

Adds a custom application setting.

[**\<configuration>**](../configuration-element.md)\
&nbsp;&nbsp;[**\<appSettings>**](appsettings-element-for-configuration.md)\
&nbsp;&nbsp;&nbsp;&nbsp;**\<add>**
[`<configuration>`](../configuration-element.md)\
&nbsp;&nbsp;[`<appSettings>`](appsettings-element-for-configuration.md)\
&nbsp;&nbsp;&nbsp;&nbsp;`<add>`

## Syntax

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ helpviewer_keywords:
- "appSettings Element"
- "<appSettings> Element"
---
# `<appSettings>` element for \<configuration>
# `<appSettings>` element for `<configuration>`

Contains custom application settings. This is a predefined configuration section provided by the .NET Framework.

[**\<configuration>**](../configuration-element.md)\
&nbsp;&nbsp;**\<appSettings>**
[`<configuration>`](../configuration-element.md)\
&nbsp;&nbsp;`<appSettings>`

## Syntax

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ helpviewer_keywords:
- "<clear> Element"
ms.assetid: 6d18c7be-27db-438b-8fb5-765d396b0b7b
---
# `<clear>` element for \<appSettings>
# `<clear>` element for `<appSettings>`

Clears custom application settings.

[**\<configuration>**](../configuration-element.md)\
&nbsp;&nbsp;[**\<appSettings>**](appsettings-element-for-configuration.md)\
&nbsp;&nbsp;&nbsp;&nbsp;**\<clear>**
[`<configuration>`](../configuration-element.md)\
&nbsp;&nbsp;[`<appSettings>`](appsettings-element-for-configuration.md)\
&nbsp;&nbsp;&nbsp;&nbsp;`<clear>`

## Syntax

Expand All @@ -33,7 +33,7 @@ None

| | Description |
| --- | ----------- |
| [**\<appSettings>**](appsettings-element-for-configuration.md) | Contains custom application settings, such as file paths, XML Web service URLs, or any other custom application configuration information. |
| [`<appSettings>`](appsettings-element-for-configuration.md) | Contains custom application settings, such as file paths, XML Web service URLs, or any other custom application configuration information. |

## Child elements

Expand Down
18 changes: 9 additions & 9 deletions docs/framework/configure-apps/file-schema/appsettings/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ ms.assetid: 99347d62-3ea5-40b6-bfec-c31431011422

Contains custom application settings, such as file paths, XML Web service URLs, or any other custom configuration information for an application.

[**\<configuration>**](../configuration-element.md)\
&nbsp;&nbsp;[**\<appSettings>**](appsettings-element-for-configuration.md)\
&nbsp;&nbsp;&nbsp;&nbsp;[**\<add>**](add-element-for-appsettings.md)\
&nbsp;&nbsp;&nbsp;&nbsp;[**\<clear>**](clear-element-for-appsettings.md)\
&nbsp;&nbsp;&nbsp;&nbsp;[**\<remove>**](remove-element-for-appsettings.md)
[`<configuration>`](../configuration-element.md)\
&nbsp;&nbsp;[`<appSettings>`](appsettings-element-for-configuration.md)\
&nbsp;&nbsp;&nbsp;&nbsp;[`<add>`](add-element-for-appsettings.md)\
&nbsp;&nbsp;&nbsp;&nbsp;[`<clear>`](clear-element-for-appsettings.md)\
&nbsp;&nbsp;&nbsp;&nbsp;[`<remove>`](remove-element-for-appsettings.md)

| Element | Description |
| ------- | ----------- |
| [**\<appSettings>**](appsettings-element-for-configuration.md) | Contains `<add>`, `<clear>`, and `<remove>` tags to control application settings. Has an optional `file` attribute. |
| [**\<add>**](add-element-for-appsettings.md) | Defines a setting. Child of `<appSettings>`. Requires `key` and `value` attributes. |
| [**\<clear>**](clear-element-for-appsettings.md) | Clears all settings. Child of `<appSettings>`. Has no attributes. |
| [**\<remove>**](remove-element-for-appsettings.md) | Removes a setting. Child of `<appSettings>`. Requires a `key` attribute. |
| [`<appSettings>`](appsettings-element-for-configuration.md) | Contains `<add>`, `<clear>`, and `<remove>` tags to control application settings. Has an optional `file` attribute. |
| [`<add>`](add-element-for-appsettings.md) | Defines a setting. Child of `<appSettings>`. Requires `key` and `value` attributes. |
| [`<clear>`](clear-element-for-appsettings.md) | Clears all settings. Child of `<appSettings>`. Has no attributes. |
| [`<remove>`](remove-element-for-appsettings.md) | Removes a setting. Child of `<appSettings>`. Requires a `key` attribute. |

## `<appSettings>` element

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ helpviewer_keywords:

Removes custom application settings.

[**\<configuration>**](../configuration-element.md)\
&nbsp;&nbsp;[**\<appSettings>**](appsettings-element-for-configuration.md)\
&nbsp;&nbsp;&nbsp;&nbsp;**\<remove>**
[`<configuration>`](../configuration-element.md)\
&nbsp;&nbsp;[`<appSettings>`](appsettings-element-for-configuration.md)\
&nbsp;&nbsp;&nbsp;&nbsp;`<remove>`

## Syntax

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ helpviewer_keywords:
- "<assemblyBinding> Element"
---

# `<assemblyBinding>` element for \<configuration>
# `<assemblyBinding>` element for `<configuration>`

Specifies assembly binding policy at the configuration level.

[**\<configuration>**](configuration-element.md)\
&nbsp;&nbsp;**\<assemblyBinding>**
[`<configuration>`](configuration-element.md)\
&nbsp;&nbsp;`<assemblyBinding>`

## Syntax

Expand Down Expand Up @@ -44,7 +44,7 @@ Specifies assembly binding policy at the configuration level.

## Remarks

The [**\<linkedConfiguration>**](linkedconfiguration-element.md) element simplifies the management of component assemblies by allowing application configuration files to include assembly configuration files in well-known locations, rather than duplicating assembly configuration settings.
The [`<linkedConfiguration>`](linkedconfiguration-element.md) element simplifies the management of component assemblies by allowing application configuration files to include assembly configuration files in well-known locations, rather than duplicating assembly configuration settings.

> [!NOTE]
> The `<linkedConfiguration>` element is not supported for applications with Windows side-by-side manifests.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ ms.assetid: ff2294ec-fb82-4b0c-933e-ae185433fc7b

Clears all previously defined settings in a section.

[**\<configuration>**](configuration-element.md)\
&nbsp;&nbsp;[**\<sectionName>**](custom-element-2.md)\
&nbsp;&nbsp;&nbsp;&nbsp;**\<clear>**
[`<configuration>`](configuration-element.md)\
&nbsp;&nbsp;[`<sectionName>`](custom-element-2.md)\
&nbsp;&nbsp;&nbsp;&nbsp;`<clear>`

## Syntax

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ ms.assetid: 7a151659-b803-4c27-b5ce-1c4aa0d5a823

Specifies the compiler configuration attributes for a language provider.

[**\<configuration>**](../configuration-element.md)\
&nbsp;&nbsp;[**\<system.codedom>**](system-codedom-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;[**\<compilers>**](compilers-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;**\<compiler>**
[`<configuration>`](../configuration-element.md)\
&nbsp;&nbsp;[`<system.codedom>`](system-codedom-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;[`<compilers>`](compilers-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`<compiler>`

## Syntax

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ ms.assetid: d40fba59-98f9-4783-ae0c-2ebea27ce77b

Container for compiler configuration elements; contains zero or more [\<compiler>](compiler-element.md) elements.

[**\<configuration>**](../configuration-element.md)\
&nbsp;&nbsp;[**\<system.codedom>**](system-codedom-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;**\<compilers>**
[`<configuration>`](../configuration-element.md)\
&nbsp;&nbsp;[`<system.codedom>`](system-codedom-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;`<compilers>`

## Syntax

Expand Down
8 changes: 4 additions & 4 deletions docs/framework/configure-apps/file-schema/compiler/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ Compiler and language provider settings specify compiler configuration elements

The .NET Framework defines the initial compiler settings in the machine configuration file (Machine.config). Developers and compiler vendors can add configuration settings for a new <xref:System.CodeDom.Compiler.CodeDomProvider> implementation. Use the <xref:System.CodeDom.Compiler.CodeDomProvider.GetAllCompilerInfo%2A?displayProperty=nameWithType> method to programmatically enumerate language provider and compiler configuration settings on a computer.

[**\<configuration>**](../configuration-element.md)\
&nbsp;&nbsp;[**\<system.codedom>**](system-codedom-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;[**\<compilers>**](compilers-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[**\<compiler>**](compiler-element.md)
[`<configuration>`](../configuration-element.md)\
&nbsp;&nbsp;[`<system.codedom>`](system-codedom-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;[`<compilers>`](compilers-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[`<compiler>`](compiler-element.md)

|Element|Description|
|-------------|-----------------|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ ms.assetid: 014f2e0b-c0b5-4fc4-92d3-73f02978b2a1

Specifies the compiler version attributes for a language provider.

[**\<configuration>**](../configuration-element.md)\
&nbsp;&nbsp;[**\<system.codedom>**](system-codedom-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;[**\<compilers>**](compilers-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[**\<compiler>**](compiler-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;**\<providerOption>**
[`<configuration>`](../configuration-element.md)\
&nbsp;&nbsp;[`<system.codedom>`](system-codedom-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;[`<compilers>`](compilers-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[`<compiler>`](compiler-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`<providerOption>`

## Syntax

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ ms.assetid: 672a68f7-e69f-4479-ac30-e980085ec4fe

Specifies compiler configuration settings for available language providers.

[**\<configuration>**](../configuration-element.md)
&nbsp;&nbsp;**\<system.codedom>**
[`<configuration>`](../configuration-element.md)
&nbsp;&nbsp;`<system.codedom>`

## Syntax

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ ms.assetid: 9f963c1b-dc3f-4220-a8b6-2dd7a5a8e039

Contains configuration section and namespace declarations.

[**\<configuration>**](configuration-element.md)\
&nbsp;&nbsp;**\<configSections>**
[`<configuration>`](configuration-element.md)\
&nbsp;&nbsp;`<configSections>`

## Attributes

Expand All @@ -24,14 +24,14 @@ None

| | Description |
| --- | ----------- |
| [**\<configuration>**](configuration-element.md) | The root element in every configuration file used by the common language runtime and .NET Framework applications. |
| [`<configuration>`](configuration-element.md) | The root element in every configuration file used by the common language runtime and .NET Framework applications. |

## Child elements

| | Description |
| --- | ----------- |
| [**\<section>**](section-element.md) | Contains a configuration section declaration. |
| [**\<sectionGroup>**](sectiongroup-element-for-configsections.md) | Defines a namespace for configuration sections. |
| [`<section>`](section-element.md) | Contains a configuration section declaration. |
| [`<sectionGroup>`](sectiongroup-element-for-configsections.md) | Defines a namespace for configuration sections. |

## Remarks

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ None

| Element | Description |
| --- | ----------- |
| [**\<assemblyBinding>**](assemblybinding-element-for-configuration.md) | Specifies assembly binding policy at the configuration level.|
| [`<assemblyBinding>`](assemblybinding-element-for-configuration.md) | Specifies assembly binding policy at the configuration level.|
| [`<startup>` Settings Schema](./startup/index.md) | All elements in the startup settings schema. |
| [`<runtime>` Settings Schema](./runtime/index.md) | All elements in the runtime settings schema. |
| [`<system.runtime.remoting>` Settings Schema](/previous-versions/dotnet/netframework-4.0/z415cf9a(v=vs.100)) | All elements in the remoting settings schema. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ helpviewer_keywords:

The configuration sections schema contains elements that define custom settings in configuration files. For general information on configuration files and schemas, see [Configuration file schema for the .NET Framework](index.md).

[**\<configuration>**](configuration-element.md)
[**\<configSections>**](configsections-element-for-configuration.md)
[**\<section>**](section-element.md)
[**\<sectionGroup>**](sectiongroup-element-for-configsections.md)
[`<configuration>`](configuration-element.md)
[`<configSections>`](configsections-element-for-configuration.md)
[`<section>`](section-element.md)
[`<sectionGroup>`](sectiongroup-element-for-configsections.md)

| Element | Description |
| --- | ----------- |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ ms.assetid: 03db52ef-010e-44ea-b6fd-b9c900ecad50

Contains a cryptography class that has a mapping to a friendly name in the [\<nameEntry>](nameentry-element.md) element.

[**\<configuration>**](../configuration-element.md)\
&nbsp;&nbsp;[**\<mscorlib>**](mscorlib-element-for-cryptography-settings.md)\
&nbsp;&nbsp;&nbsp;&nbsp;[**\<cryptographySettings>**](cryptographysettings-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[**\<cryptoNameMapping>**](cryptonamemapping-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[**\<cryptoClasses>**](cryptoclasses-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;**\<cryptoClass>**
[`<configuration>`](../configuration-element.md)\
&nbsp;&nbsp;[`<mscorlib>`](mscorlib-element-for-cryptography-settings.md)\
&nbsp;&nbsp;&nbsp;&nbsp;[`<cryptographySettings>`](cryptographysettings-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[`<cryptoNameMapping>`](cryptonamemapping-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[`<cryptoClasses>`](cryptoclasses-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`<cryptoClass>`

## Syntax

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ ms.assetid: 290d5f96-946d-4f02-babb-1d31ec0b8295

Contains a list of cryptography classes that have a mapping to a friendly name in the [\<nameEntry>](nameentry-element.md) element.

[**\<configuration>**](../configuration-element.md)
&nbsp;&nbsp;[**\<mscorlib>**](mscorlib-element-for-cryptography-settings.md)
&nbsp;&nbsp;&nbsp;&nbsp;[**\<cryptographySettings>**](cryptographysettings-element.md)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[**\<cryptoNameMapping>**](cryptonamemapping-element.md)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;**\<cryptoClasses>**
[`<configuration>`](../configuration-element.md)
&nbsp;&nbsp;[`<mscorlib>`](mscorlib-element-for-cryptography-settings.md)
&nbsp;&nbsp;&nbsp;&nbsp;[`<cryptographySettings>`](cryptographysettings-element.md)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[`<cryptoNameMapping>`](cryptonamemapping-element.md)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`<cryptoClasses>`

## Syntax

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ ms.assetid: 6201b7da-bcb7-49f7-b9f5-ba1fe05573b9

Contains cryptography settings.

[**\<configuration>**](../configuration-element.md)\
&nbsp;&nbsp;[**\<mscorlib>**](mscorlib-element-for-cryptography-settings.md)\
&nbsp;&nbsp;&nbsp;&nbsp;**\<cryptographySettings>**
[`<configuration>`](../configuration-element.md)\
&nbsp;&nbsp;[`<mscorlib>`](mscorlib-element-for-cryptography-settings.md)\
&nbsp;&nbsp;&nbsp;&nbsp;`<cryptographySettings>`

## Syntax

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ ms.assetid: c59c9494-149b-4ce6-b38d-371f896ae85c

Contains mappings of classes to friendly names.

[**\<configuration>**](../configuration-element.md)\
&nbsp;&nbsp;[**\<mscorlib>**](mscorlib-element-for-cryptography-settings.md)\
&nbsp;&nbsp;&nbsp;&nbsp;[**\<cryptographySettings>**](cryptographysettings-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;**\<cryptoNameMapping>**
[`<configuration>`](../configuration-element.md)\
&nbsp;&nbsp;[`<mscorlib>`](mscorlib-element-for-cryptography-settings.md)\
&nbsp;&nbsp;&nbsp;&nbsp;[`<cryptographySettings>`](cryptographysettings-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`<cryptoNameMapping>`

## Syntax

Expand Down
24 changes: 12 additions & 12 deletions docs/framework/configure-apps/file-schema/cryptography/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ ms.assetid: 1f55050a-b2a3-4868-a3c0-da20826150f3

The cryptography settings schema contains elements that specify how to map friendly algorithm names to classes that implement cryptography algorithms.

[**\<configuration>**](../configuration-element.md)\
&nbsp;&nbsp;[**\<mscorlib>**](mscorlib-element-for-cryptography-settings.md)\
&nbsp;&nbsp;&nbsp;&nbsp;[**\<cryptographySettings>**](cryptographysettings-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[**\<cryptoNameMapping>**](cryptonamemapping-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[**\<cryptoClasses>**](cryptoclasses-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[**\<cryptoClass>**](cryptoclass-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[**\<nameEntry>**](nameentry-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[**\<oidMap>**](oidmap-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[**\<oidEntry>**](oidentry-element.md)
[`<configuration>`](../configuration-element.md)\
&nbsp;&nbsp;[`<mscorlib>`](mscorlib-element-for-cryptography-settings.md)\
&nbsp;&nbsp;&nbsp;&nbsp;[`<cryptographySettings>`](cryptographysettings-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[`<cryptoNameMapping>`](cryptonamemapping-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[`<cryptoClasses>`](cryptoclasses-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[`<cryptoClass>`](cryptoclass-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[`<nameEntry>`](nameentry-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[`<oidMap>`](oidmap-element.md)\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[`<oidEntry>`](oidentry-element.md)

|Element|Description|
|-------------|-----------------|
Expand All @@ -33,9 +33,9 @@ The cryptography settings schema contains elements that specify how to map frien
|[**\<cryptographySettings**>](cryptographysettings-element.md)|Contains cryptography settings.|
|[**\<cryptoNameMapping**>](cryptonamemapping-element.md)|Contains mappings of classes to friendly names.|
|[**\<mscorlib>** element for cryptography settings](mscorlib-element-for-cryptography-settings.md)|Contains the `<cryptographySettings>` element.|
|[**\<nameEntry>**](nameentry-element.md)|Maps a class name to a friendly algorithm name, which allows one class to have many friendly names.|
|[**\<oidEntry>**](oidentry-element.md)|Maps an ASN.1 object identifier (OID) to a friendly name.|
|[**\<oidMap>**](oidmap-element.md)|Contains ASN.1 OID mappings to classes.|
|[`<nameEntry>`](nameentry-element.md)|Maps a class name to a friendly algorithm name, which allows one class to have many friendly names.|
|[`<oidEntry>`](oidentry-element.md)|Maps an ASN.1 object identifier (OID) to a friendly name.|
|[`<oidMap>`](oidmap-element.md)|Contains ASN.1 OID mappings to classes.|

## See also

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ ms.assetid: d549668f-31f1-4b92-8021-a9135c09ca3c

Contains the [`<cryptographySettings>` element](cryptographysettings-element.md).

[**\<configuration>**](../configuration-element.md)
&nbsp;&nbsp;**\<mscorlib>**
[`<configuration>`](../configuration-element.md)
&nbsp;&nbsp;`<mscorlib>`

## Syntax

Expand Down
Loading