Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

CryptoConfig::AddOID Method (String^, array<String^>^)

.NET Framework (current version)
 

Adds a set of names to object identifier (OID) mappings to be used for the current application domain.

Namespace:   System.Security.Cryptography
Assembly:  mscorlib (in mscorlib.dll)

public:
[SecurityCriticalAttribute]
static void AddOID(
	String^ oid,
	... array<String^>^ names
)

Parameters

oid
Type: System::String^

The object identifier (OID) to map to.

names
Type: array<System::String^>^

An array of names to map to the OID.

Exception Condition
ArgumentNullException

The oid or names parameter is null.

ArgumentException

One of the entries in the names parameter is empty or null.

The specified mappings take precedence over the built-in mappings and the mappings in the machine.config file. The mappings are used to prevent partially trust code from using trusted cryptographic operations.

SecurityCriticalAttribute

requires full trust for the immediate caller. This member cannot be used by partially trusted or transparent code.

.NET Framework
Available since 4.0
Return to top
Show:
© 2017 Microsoft