NonCryptographicHashAlgorithm.TryGetCurrentHash 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
嘗試將計算哈希值寫入至 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
參數
- bytesWritten
- Int32
當此方法傳回時,包含寫入至 destination
的位元組數目。
傳回
true
如果 destination
夠長才能接收計算的哈希值,則為 ,否則為 false
。