8 types derived from Transform
System.Security.Cryptography.Xml (8)
System\Security\Cryptography\Xml\XmlDecryptionTransform.cs (1)
16public class XmlDecryptionTransform : Transform
System\Security\Cryptography\Xml\XmlDsigBase64Transform.cs (1)
11public class XmlDsigBase64Transform : Transform
System\Security\Cryptography\Xml\XmlDsigC14NTransform.cs (1)
9public class XmlDsigC14NTransform : Transform
System\Security\Cryptography\Xml\XmlDsigEnvelopedSignatureTransform.cs (1)
9public class XmlDsigEnvelopedSignatureTransform : Transform
System\Security\Cryptography\Xml\XmlDsigExcC14NTransform.cs (1)
9public class XmlDsigExcC14NTransform : Transform
System\Security\Cryptography\Xml\XmlDsigXPathTransform.cs (1)
12public class XmlDsigXPathTransform : Transform
System\Security\Cryptography\Xml\XmlDsigXsltTransform.cs (1)
13public class XmlDsigXsltTransform : Transform
System\Security\Cryptography\Xml\XmlLicenseTransform.cs (1)
12public class XmlLicenseTransform : Transform
20 references to Transform
System.Security (1)
System.Security.cs (1)
67[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.Xml.Transform))]
System.Security.Cryptography.Xml (19)
System\Security\Cryptography\Xml\CryptoHelpers.cs (1)
98Debug.Assert(!typeof(Transform).IsAssignableFrom(typeof(T)));
System\Security\Cryptography\Xml\EncryptedReference.cs (1)
55public void AddTransform(Transform transform)
System\Security\Cryptography\Xml\Reference.cs (3)
260Transform? transform = CryptoHelpers.CreateFromName<Transform>(algorithm); 341public void AddTransform(Transform transform)
System\Security\Cryptography\Xml\SignedInfo.cs (3)
21private Transform? _canonicalizationMethodTransform; 95public Transform CanonicalizationMethodObject 101_canonicalizationMethodTransform = CryptoHelpers.CreateFromName<Transform>(CanonicalizationMethod);
System\Security\Cryptography\Xml\SignedXml.cs (2)
700Transform transform = transformChain[i]; 806Transform c14nMethodTransform = SignedInfo.CanonicalizationMethodObject;
System\Security\Cryptography\Xml\SignedXmlDebugLog.cs (2)
279internal static void LogBeginCanonicalization(SignedXml signedXml, Transform canonicalizationTransform) 416internal static void LogCanonicalizedOutput(SignedXml signedXml, Transform canonicalizationTransform)
System\Security\Cryptography\Xml\TransformChain.cs (7)
34public void Add(Transform transform) 50public Transform this[int index] 56return (Transform)_transforms[index]!; 65foreach (Transform transform in _transforms) 157foreach (Transform transform in _transforms) 191Transform? transform = CryptoHelpers.CreateFromName<Transform>(algorithm);