NonCryptographicHashAlgorithm.TryGetHashAndReset 方法

定义

尝试将计算的哈希值写入 。destination 如果成功,则清除累积状态。

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

参数

destination
Span<Byte>

接收计算的哈希值的缓冲区。

bytesWritten
Int32

当此方法返回时,包含写入到 destination 的字节数。

返回

true 如果 destination 足够长,则清除累积状态,以接收计算的哈希值;否则为 false

适用于