NonCryptographicHashAlgorithm.Append Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Append(Byte[]) |
Appends the contents of |
Append(Stream) |
Appends the contents of |
Append(ReadOnlySpan<Byte>) |
When overridden in a derived class, appends the contents of |
Append(Byte[])
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)
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>)
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
.NET