DataProtector Constructor (String^, String^, array<String^>^)
Creates a new instance of the DataProtector class by using the provided application name, primary purpose, and specific purposes.
Assembly: System.Security (in System.Security.dll)
protected: DataProtector( String^ applicationName, String^ primaryPurpose, array<String^>^ specificPurposes )
Parameters
- applicationName
-
Type:
System::String^
The name of the application.
- primaryPurpose
-
Type:
System::String^
The primary purpose for the protected data. See Remarks for additional important information.
- specificPurposes
-
Type:
array<System::String^>^
The specific purposes for the protected data. See Remarks for additional important information.
| Exception | Condition |
|---|---|
| ArgumentException | applicationName is an empty string or null. -or- primaryPurpose is an empty string or null. -or- specificPurposes contains an empty string or null. |
This constructor sets the ApplicationName, PrimaryPurpose, and SpecificPurposes properties. The combination of these three properties must uniquely identify the data you are protecting. If the data is not uniquely identified, you might inadvertently read the wrong data, or other data might be substituted for yours. Examples of primary and specific purpose pairs are “invoice” and invoice number, “gift card” and gift card number, “password” and URL string.
Available since 4.5