Udostępnij za pośrednictwem


NonCryptographicHashAlgorithm.GetCurrentHash Metoda

Definicja

Przeciążenia

GetCurrentHash()

Pobiera bieżącą obliczoną wartość skrótu bez modyfikowania skumulowanego stanu.

GetCurrentHash(Span<Byte>)

Zapisuje obliczoną wartość skrótu bez destination modyfikowania skumulowanego stanu.

GetCurrentHash()

Źródło:
NonCryptographicHashAlgorithm.cs
Źródło:
NonCryptographicHashAlgorithm.cs
Źródło:
NonCryptographicHashAlgorithm.cs

Pobiera bieżącą obliczoną wartość skrótu bez modyfikowania skumulowanego stanu.

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

Zwraca

Byte[]

Wartość skrótu dla podanych danych.

Dotyczy

GetCurrentHash(Span<Byte>)

Źródło:
NonCryptographicHashAlgorithm.cs
Źródło:
NonCryptographicHashAlgorithm.cs
Źródło:
NonCryptographicHashAlgorithm.cs

Zapisuje obliczoną wartość skrótu bez destination modyfikowania skumulowanego stanu.

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

Parametry

destination
Span<Byte>

Bufor, który odbiera obliczoną wartość skrótu.

Zwraca

Liczba bajtów zapisanych w obiekcie destination, która jest zawsze HashLengthInByteswartością .

Wyjątki

destination wartość jest krótsza niż HashLengthInBytes.

Dotyczy