public class TransformChain {
// Public Constructors
public TransformChain( );
// Public Instance Properties
public int Count{get; }
public Transform this{get; }
// Public Instance Methods
public void Add(Transform transform);
public IEnumerator GetEnumerator( );
}
This class represents the sequence of transformations applied to data
prior to creating a digital signature; each transformation is
represented by an implementation of the Transform
class. The number of transformations in the chain can be determined
with the Count property, while individual
transformations are accessible through the Item
property (which is the C# class indexer). Instances of this class are
obtained through the Reference.TransformChain
property.