System.Security.Cryptography.Xml.TransformChain
Defines an ordered list of Transform objects that is applied to unsigned content prior to digest calculation.
namespace System.Security.Cryptography.Xml
{
public class TransformChain
{
public int Count { get; }
public Transform this[int index] { get; }
public TransformChain();
public void Add(Transform transform);
public IEnumerator GetEnumerator();
}
}