DSACryptoServiceProvider.UseMachineKeyStore 属性

定义

获取或设置一个值,该值指示是否应在计算机的密钥存储而不是用户配置文件存储中保留密钥。

public:
 static property bool UseMachineKeyStore { bool get(); void set(bool value); };
public static bool UseMachineKeyStore { get; set; }
static member UseMachineKeyStore : bool with get, set
Public Shared Property UseMachineKeyStore As Boolean

属性值

如果应在计算机密钥存储中保留密钥,则为 true;否则为 false

注解

将此属性设置为 true 等效于将 UseMachineKeyStore 标志传递给 CspParameters 对象。 属性 UseMachineKeyStore 适用于当前应用程序域中的所有代码,而 CspParameters 对象仅适用于显式引用它的类。 在未加载用户配置文件的帐户下模拟或运行时,这些设置非常有用。

适用于

另请参阅