Redigera

NonCryptographicHashAlgorithm.Append Method

Definition

Overloads

Append(Byte[])

Appends the contents of source to the data already processed for the current hash computation.

Append(Stream)

Appends the contents of stream to the data already processed for the current hash computation.

Append(ReadOnlySpan<Byte>)

When overridden in a derived class, appends the contents of source to the data already processed for the current hash computation.

Append(Byte[])

Source:
NonCryptographicHashAlgorithm.cs
Source:
NonCryptographicHashAlgorithm.cs
Source:
NonCryptographicHashAlgorithm.cs
Source:
NonCryptographicHashAlgorithm.cs

Appends the contents of source to the data already processed for the current hash computation.

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

Parameters

source
Byte[]

The data to process.

Exceptions

source is null.

Applies to

Append(Stream)

Source:
NonCryptographicHashAlgorithm.cs
Source:
NonCryptographicHashAlgorithm.cs
Source:
NonCryptographicHashAlgorithm.cs
Source:
NonCryptographicHashAlgorithm.cs

Appends the contents of stream to the data already processed for the current hash computation.

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)

Parameters

stream
Stream

The data to process.

Exceptions

stream is null.

Applies to

Append(ReadOnlySpan<Byte>)

Source:
NonCryptographicHashAlgorithm.cs
Source:
NonCryptographicHashAlgorithm.cs
Source:
NonCryptographicHashAlgorithm.cs
Source:
NonCryptographicHashAlgorithm.cs

When overridden in a derived class, appends the contents of source to the data already processed for the current hash computation.

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))

Parameters

source
ReadOnlySpan<Byte>

The data to process.

Applies to