<PackageReference Include="System.Security.Cryptography.Xml" Version="11.0.0-preview.6.26359.118" />

System.Security.Cryptography.Xml.Transform

public abstract class Transform
Represents the abstract base class from which all <Transform> elements that can be used in an XML digital signature derive.
public string Algorithm { get; set; }

Gets or sets the Uniform Resource Identifier (URI) that identifies the algorithm performed by the current transform.

public XmlElement Context { get; set; }

Gets or sets an XmlElement object that represents the document context under which the current Transform object is running.

public abstract Type[] InputTypes { get; }

When overridden in a derived class, gets an array of types that are valid inputs to the LoadInput method of the current Transform object.

public abstract Type[] OutputTypes { get; }

When overridden in a derived class, gets an array of types that are possible outputs from the GetOutput methods of the current Transform object.

Gets or sets a Hashtable object that contains the namespaces that are propagated into the signature.

protected Transform()

Initializes a new instance of the Transform class.

public virtual byte[] GetDigestedOutput(HashAlgorithm hash)

When overridden in a derived class, returns the digest associated with a Transform object.

protected abstract XmlNodeList GetInnerXml()

When overridden in a derived class, returns an XML representation of the parameters of the Transform object that are suitable to be included as subelements of an XMLDSIG <Transform> element.

public abstract object GetOutput()

When overridden in a derived class, returns the output of the current Transform object.

public abstract object GetOutput(Type type)

When overridden in a derived class, returns the output of the current Transform object of the specified type.

public XmlElement GetXml()

Returns the XML representation of the current Transform object.

public abstract void LoadInnerXml(XmlNodeList nodeList)

When overridden in a derived class, parses the specified XmlNodeList object as transform-specific content of a <Transform> element and configures the internal state of the current Transform object to match the <Transform> element.

public abstract void LoadInput(object obj)

When overridden in a derived class, loads the specified input into the current Transform object.