DataProtector.ProviderUnprotect(Byte[]) メソッド

定義

基底クラスの Unprotect(Byte[]) メソッドがコールバックする、派生クラスのデリゲート メソッドを指定します。

protected:
 abstract cli::array <System::Byte> ^ ProviderUnprotect(cli::array <System::Byte> ^ encryptedData);
protected abstract byte[] ProviderUnprotect (byte[] encryptedData);
abstract member ProviderUnprotect : byte[] -> byte[]
Protected MustOverride Function ProviderUnprotect (encryptedData As Byte()) As Byte()

パラメーター

encryptedData
Byte[]

暗号化が解除されるデータ。

戻り値

Byte[]

暗号化解除されたデータ。

ProviderUnprotect メソッドを実装する例を次に示します。 これは、クラスのより大きなコード例の DataProtector 一部です。

// To allow a service to hand out instances of a DataProtector we demand unrestricted DataProtectionPermission
// in the constructor, but Assert the permission when ProviderUnprotect is called..  This is similar to FileStream
// where access is checked at time of creation, not time of use.
[SecuritySafeCritical]
[DataProtectionPermission(SecurityAction.Assert, UnprotectData = true)]
protected override byte[] ProviderUnprotect(byte[] encryptedData)
{

    ProtectedMemory.Unprotect(encryptedData,Scope);
        return encryptedData;
}
' To allow a service to hand out instances of a DataProtector we demand unrestricted DataProtectionPermission 
' in the constructor, but Assert the permission when ProviderUnprotect is called..  This is similar to FileStream
' where access is checked at time of creation, not time of use.
<SecuritySafeCritical(), DataProtectionPermission(SecurityAction.Assert, UnprotectData:=True)> _
Protected Overrides Function ProviderUnprotect(ByVal encryptedData() As Byte) As Byte()

    ProtectedMemory.Unprotect(encryptedData, Scope)
    Return encryptedData

End Function 'ProviderUnprotect

適用対象