Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ComputeHashAsync()

Task< byte[]> System.Security.Cryptography.HashAlgorithm.ComputeHashAsync ( Stream inputStream,
CancellationToken cancellationToken = default(CancellationToken) )
inlineinherited

Definition at line 140 of file HashAlgorithm.cs.

141 {
142 if (inputStream == null)
143 {
144 throw new ArgumentNullException("inputStream");
145 }
146 if (_disposed)
147 {
148 throw new ObjectDisposedException(null);
149 }
150 return ComputeHashAsyncCore(inputStream, cancellationToken);
151 }
async Task< byte[]> ComputeHashAsyncCore(Stream inputStream, CancellationToken cancellationToken)

References System.Security.Cryptography.HashAlgorithm._disposed, System.cancellationToken, and System.Security.Cryptography.HashAlgorithm.ComputeHashAsyncCore().

ml">doxygen 1.10.0