2 instantiations of EncryptionProperty
System.Security.Cryptography.Xml (2)
System\Security\Cryptography\Xml\EncryptedData.cs (1)
57EncryptionProperty ep = new EncryptionProperty();
System\Security\Cryptography\Xml\EncryptedKey.cs (1)
93EncryptionProperty ep = new EncryptionProperty();
22 references to EncryptionProperty
System.Security (1)
System.Security.cs (1)
50[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.Xml.EncryptionProperty))]
System.Security.Cryptography.Xml (21)
System\Security\Cryptography\Xml\EncryptedData.cs (2)
57EncryptionProperty ep = new EncryptionProperty(); 111EncryptionProperty ep = EncryptionProperties.Item(index);
System\Security\Cryptography\Xml\EncryptedKey.cs (2)
93EncryptionProperty ep = new EncryptionProperty(); 184EncryptionProperty ep = EncryptionProperties.Item(index);
System\Security\Cryptography\Xml\EncryptedType.cs (1)
87public void AddProperty(EncryptionProperty ep)
System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs (16)
30if (!(value is EncryptionProperty)) 36public int Add(EncryptionProperty value) 49if (!(value is EncryptionProperty)) 55public bool Contains(EncryptionProperty value) 63if (!(value is EncryptionProperty)) 69public int IndexOf(EncryptionProperty value) 77if (!(value is EncryptionProperty)) 83public void Insert(int index, EncryptionProperty value) 91if (!(value is EncryptionProperty)) 97public void Remove(EncryptionProperty value) 117public EncryptionProperty Item(int index) 119return (EncryptionProperty)_props[index]!; 123public EncryptionProperty this[int index] 127return (EncryptionProperty)((IList)this)[index]!; 141if (!(value is EncryptionProperty)) 153public void CopyTo(EncryptionProperty[] array, int index)