Partager via


NonCryptographicHashAlgorithm.GetCurrentHash Méthode

Définition

Surcharges

GetCurrentHash()

Obtient la valeur de hachage calculée actuelle sans modifier l’état cumulé.

GetCurrentHash(Span<Byte>)

Écrit la valeur destination de hachage calculée dans sans modifier l’état cumulé.

GetCurrentHash()

Source:
NonCryptographicHashAlgorithm.cs
Source:
NonCryptographicHashAlgorithm.cs
Source:
NonCryptographicHashAlgorithm.cs

Obtient la valeur de hachage calculée actuelle sans modifier l’état cumulé.

public:
 cli::array <System::Byte> ^ GetCurrentHash();
public byte[] GetCurrentHash ();
member this.GetCurrentHash : unit -> byte[]
Public Function GetCurrentHash () As Byte()

Retours

Byte[]

Valeur de hachage pour les données déjà fournies.

S’applique à

GetCurrentHash(Span<Byte>)

Source:
NonCryptographicHashAlgorithm.cs
Source:
NonCryptographicHashAlgorithm.cs
Source:
NonCryptographicHashAlgorithm.cs

Écrit la valeur destination de hachage calculée dans sans modifier l’état cumulé.

public:
 int GetCurrentHash(Span<System::Byte> destination);
public int GetCurrentHash (Span<byte> destination);
member this.GetCurrentHash : Span<byte> -> int
Public Function GetCurrentHash (destination As Span(Of Byte)) As Integer

Paramètres

destination
Span<Byte>

Mémoire tampon qui reçoit la valeur de hachage calculée.

Retours

Nombre d’octets écrits dans destination, qui est toujours HashLengthInBytes.

Exceptions

destination est plus court que HashLengthInBytes.

S’applique à