NonCryptographicHashAlgorithm.GetCurrentHash メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
GetCurrentHash() |
累積状態を変更せずに、現在計算されたハッシュ値を取得します。 |
GetCurrentHash(Span<Byte>) |
累積状態を変更せずに、計算されたハッシュ値を に |
GetCurrentHash()
累積状態を変更せずに、現在計算されたハッシュ値を取得します。
public:
cli::array <System::Byte> ^ GetCurrentHash();
public byte[] GetCurrentHash ();
member this.GetCurrentHash : unit -> byte[]
Public Function GetCurrentHash () As Byte()
戻り値
Byte[]
既に提供されているデータのハッシュ値。
適用対象
GetCurrentHash(Span<Byte>)
累積状態を変更せずに、計算されたハッシュ値を に destination
書き込みます。
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
パラメーター
戻り値
に destination
書き込まれたバイト数 。これは常に HashLengthInBytesです。
例外
destination
は HashLengthInBytes よりも短いです。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET