ISecureDataFormat<TData>.Unprotect Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Unprotect(String) |
Unprotects the specified |
Unprotect(String, String) |
Unprotects the specified |
Unprotect(String)
- Source:
- ISecureDataFormat.cs
Unprotects the specified protectedText
.
public:
TData Unprotect(System::String ^ protectedText);
public TData Unprotect (string protectedText);
public TData? Unprotect (string? protectedText);
abstract member Unprotect : string -> 'Data
Public Function Unprotect (protectedText As String) As TData
Parameters
- protectedText
- String
The data protected value.
Returns
TData
An instance of TData
.
Applies to
Unprotect(String, String)
- Source:
- ISecureDataFormat.cs
Unprotects the specified protectedText
using the specified purpose
.
public:
TData Unprotect(System::String ^ protectedText, System::String ^ purpose);
public TData Unprotect (string protectedText, string purpose);
public TData Unprotect (string protectedText, string? purpose);
public TData? Unprotect (string? protectedText, string? purpose);
abstract member Unprotect : string * string -> 'Data
Public Function Unprotect (protectedText As String, purpose As String) As TData
Parameters
- protectedText
- String
The data protected value.
- purpose
- String
The purpose.
Returns
TData
An instance of TData
.