DataProtectionProvider Class

Definition

Contains factory methods for creating an IDataProtectionProvider where keys are stored at a particular location on the file system.

public ref class DataProtectionProvider abstract sealed
public static class DataProtectionProvider
type DataProtectionProvider = class
Public Class DataProtectionProvider
Inheritance
DataProtectionProvider

Remarks

Use these methods when not using dependency injection to provide the service to the application.

Methods

Create(DirectoryInfo)

Creates an DataProtectionProvider given a location at which to store keys.

Create(DirectoryInfo, Action<IDataProtectionBuilder>)

Creates an DataProtectionProvider given a location at which to store keys and an optional configuration callback.

Create(DirectoryInfo, Action<IDataProtectionBuilder>, X509Certificate2)

Creates an DataProtectionProvider given a location at which to store keys, an optional configuration callback and a X509Certificate2 used to encrypt the keys.

Create(DirectoryInfo, X509Certificate2)

Creates an DataProtectionProvider given a location at which to store keys and a X509Certificate2 used to encrypt the keys.

Create(String)

Creates a DataProtectionProvider that store keys in a location based on the platform and operating system.

Create(String, X509Certificate2)

Creates a DataProtectionProvider that store keys in a location based on the platform and operating system and uses the given X509Certificate2 to encrypt the keys.

Applies to