NonCryptographicHashAlgorithm.Append 方法

定义

重载

Append(Byte[])

将 的内容 source 追加到已为当前哈希计算处理的数据。

Append(Stream)

将 的内容 stream 追加到已为当前哈希计算处理的数据。

Append(ReadOnlySpan<Byte>)

在派生类中重写时,将 的内容 source 追加到已为当前哈希计算处理的数据。

Append(Byte[])

Source:
NonCryptographicHashAlgorithm.cs
Source:
NonCryptographicHashAlgorithm.cs
Source:
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)

Source:
NonCryptographicHashAlgorithm.cs
Source:
NonCryptographicHashAlgorithm.cs
Source:
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>)

Source:
NonCryptographicHashAlgorithm.cs
Source:
NonCryptographicHashAlgorithm.cs
Source:
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>

要处理的数据。

适用于