9 instantiations of TransformChain
System.Security.Cryptography.Xml (9)
System\Security\Cryptography\Xml\EncryptedReference.cs (3)
16protected EncryptedReference() : this(string.Empty, new TransformChain()) 20protected EncryptedReference(string uri) : this(uri, new TransformChain()) 47get => _transformChain ??= new TransformChain();
System\Security\Cryptography\Xml\Reference.cs (6)
34_transformChain = new TransformChain(); 43_transformChain = new TransformChain(); 52_transformChain = new TransformChain(); 62_transformChain = new TransformChain(); 121get => _transformChain ??= new TransformChain(); 227TransformChain = new TransformChain();
12 references to TransformChain
System.Security (1)
System.Security.cs (1)
68[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.Xml.TransformChain))]
System.Security.Cryptography.Xml (11)
System\Security\Cryptography\Xml\CipherReference.cs (1)
23public CipherReference(string uri, TransformChain transformChain) : base(uri, transformChain)
System\Security\Cryptography\Xml\DataReference.cs (1)
18public DataReference(string uri, TransformChain transformChain) : base(uri, transformChain)
System\Security\Cryptography\Xml\EncryptedReference.cs (3)
13private TransformChain? _transformChain; 24protected EncryptedReference(string uri, TransformChain transformChain) 45public TransformChain TransformChain
System\Security\Cryptography\Xml\EncryptedXml.cs (2)
210TransformChain tc = cipherData.CipherReference.TransformChain; 228TransformChain tc = cipherData.CipherReference.TransformChain;
System\Security\Cryptography\Xml\KeyReference.cs (1)
18public KeyReference(string uri, TransformChain transformChain) : base(uri, transformChain)
System\Security\Cryptography\Xml\Reference.cs (2)
18private TransformChain _transformChain; 119public TransformChain TransformChain
System\Security\Cryptography\Xml\SignedXml.cs (1)
695TransformChain transformChain = reference.TransformChain;