DataProtector.ProviderProtect(Byte[]) Methode

Definition

Gibt die Delegatmethode in der abgeleiteten Klasse an, in die die Protect(Byte[])-Methode in der Basisklasse wieder aufgerufen wird.

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

Parameter

userData
Byte[]

Die zu verschlüsselnden Daten.

Gibt zurück

Byte[]

Ein Bytearray, das die verschlüsselten Daten enthält.

Beispiele

Im folgenden Beispiel wird eine Implementierung der ProviderProtect-Methode veranschaulicht. Es ist Teil eines größeren Codebeispiels für die DataProtector -Klasse.

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

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

    ' Delegate to ProtectedData
    ProtectedMemory.Protect(userData, Scope)
    Return userData

End Function 'ProviderProtect

Gilt für: