MachineKeySection.DataProtectorType 属性

定义

获取或设置数据保护器类型名称。 默认值为 Empty

public:
 property System::String ^ DataProtectorType { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.WhiteSpaceTrimStringConverter))]
[System.Configuration.ConfigurationProperty("dataProtectorType", DefaultValue="")]
public string DataProtectorType { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.WhiteSpaceTrimStringConverter))>]
[<System.Configuration.ConfigurationProperty("dataProtectorType", DefaultValue="")>]
member this.DataProtectorType : string with get, set
Public Property DataProtectorType As String

属性值

数据保护器类型的名称。

属性

注解

若要为 ASP.NET 指定自定义数据保护算法,请将 属性设置为 MachineKeySection.CompatibilityModeFramework45 ,并将此属性设置为表示派生自 类的类的 DataProtector 字符串。 此字符串对应于 providerClass 传递给静态 DataProtector.Create 工厂方法的参数。 指定的类由 MachineKey.ProtectMachineKey.Unprotect 方法使用,即使未指定 Framework45 选项也是如此。

如果设置此属性,还必须设置 ApplicationName 属性。

适用于