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>

処理するデータ。

適用対象