System.Security.Cryptography.IncrementalHash.IncrementalHash C# (CSharp) Method

IncrementalHash() private method

private IncrementalHash ( HashAlgorithmName name, HashAlgorithm hash ) : System.Diagnostics
name HashAlgorithmName
hash HashAlgorithm
return System.Diagnostics
        private IncrementalHash(HashAlgorithmName name, HashAlgorithm hash)
        {
            Debug.Assert(name != null);
            Debug.Assert(!string.IsNullOrEmpty(name.Name));
            Debug.Assert(hash != null);

            _algorithmName = name;
            _hash = hash;
        }