DataProtectionCommonExtensions.Unprotect(IDataProtector, String) 方法

定义

以加密方式取消保护一段受保护的数据。

public:
[System::Runtime::CompilerServices::Extension]
 static System::String ^ Unprotect(Microsoft::AspNetCore::DataProtection::IDataProtector ^ protector, System::String ^ protectedData);
public static string Unprotect (this Microsoft.AspNetCore.DataProtection.IDataProtector protector, string protectedData);
static member Unprotect : Microsoft.AspNetCore.DataProtection.IDataProtector * string -> string
<Extension()>
Public Function Unprotect (protector As IDataProtector, protectedData As String) As String

参数

protector
IDataProtector

用于此操作的数据保护程序。

protectedData
String

要取消保护的受保护数据。

返回

受保护数据的纯文本形式。

例外

如果无效或格式不正确,则 protectedData 引发。

适用于