Discuss this help topic in SecureBlackbox Forum
XML: Add Null transform to reference
TElXMLNullTransform class represents the Null transform for an XML digital signature as defined by the XML-DSig standard.
To add null transform to the reference transform chain you need to create an instance of TElXMLNullTransform class and then add it to the chain.
C#:
TElXMLReference Ref = new TElXMLReference();
Ref.TransformChain.Add(new TElXMLNullTransform());
Delphi:
var Ref : TElXMLReference;
...
Ref := TElXMLReference.Create;
Ref.TransformChain.Add(TElXMLNullTransform.Create());