共用方式為


NonCryptographicHashAlgorithm.Append 方法

定義

多載

Append(Byte[])

將的內容 source 附加至已針對目前哈希計算處理的數據。

Append(Stream)

將的內容 stream 附加至已針對目前哈希計算處理的數據。

Append(ReadOnlySpan<Byte>)

在衍生類別中覆寫時,將 的內容 source 附加至已針對目前哈希計算處理的數據。

Append(Byte[])

來源:
NonCryptographicHashAlgorithm.cs
來源:
NonCryptographicHashAlgorithm.cs
來源:
NonCryptographicHashAlgorithm.cs

將的內容 source 附加至已針對目前哈希計算處理的數據。

public:
 void Append(cli::array <System::Byte> ^ source);
public void Append (byte[] source);
member this.Append : byte[] -> unit
Public Sub Append (source As Byte())

參數

source
Byte[]

要處理的資料。

例外狀況

sourcenull

適用於

Append(Stream)

來源:
NonCryptographicHashAlgorithm.cs
來源:
NonCryptographicHashAlgorithm.cs
來源:
NonCryptographicHashAlgorithm.cs

將的內容 stream 附加至已針對目前哈希計算處理的數據。

public:
 void Append(System::IO::Stream ^ stream);
public void Append (System.IO.Stream stream);
member this.Append : System.IO.Stream -> unit
Public Sub Append (stream As Stream)

參數

stream
Stream

要處理的資料。

例外狀況

streamnull

適用於

Append(ReadOnlySpan<Byte>)

來源:
NonCryptographicHashAlgorithm.cs
來源:
NonCryptographicHashAlgorithm.cs
來源:
NonCryptographicHashAlgorithm.cs

在衍生類別中覆寫時,將 的內容 source 附加至已針對目前哈希計算處理的數據。

public:
 abstract void Append(ReadOnlySpan<System::Byte> source);
public abstract void Append (ReadOnlySpan<byte> source);
abstract member Append : ReadOnlySpan<byte> -> unit
Public MustOverride Sub Append (source As ReadOnlySpan(Of Byte))

參數

source
ReadOnlySpan<Byte>

要處理的資料。

適用於