共用方式為


NonCryptographicHashAlgorithm.TryGetCurrentHash 方法

定義

嘗試將計算哈希值寫入至 destination ,而不需修改累積狀態。

public:
 bool TryGetCurrentHash(Span<System::Byte> destination, [Runtime::InteropServices::Out] int % bytesWritten);
public bool TryGetCurrentHash (Span<byte> destination, out int bytesWritten);
member this.TryGetCurrentHash : Span<byte> * int -> bool
Public Function TryGetCurrentHash (destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean

參數

destination
Span<Byte>

接收計算哈希值的緩衝區。

bytesWritten
Int32

當此方法傳回時,包含寫入至 destination 的位元組數目。

傳回

true 如果 destination 夠長才能接收計算的哈希值,則為 ,否則為 false

適用於