System.Security.Cryptography.Xml.EncryptionPropertyCollection
Represents a collection of EncryptionProperty classes used in XML encryption. This class cannot be inherited.
namespace System.Security.Cryptography.Xml
{
public sealed class EncryptionPropertyCollection : IList, ICollection, IEnumerable
{
public int Count { get; }
public bool IsFixedSize { get; }
public bool IsReadOnly { get; }
public EncryptionProperty this[int index] { get; set; }
[Nullable(2)]
object IList.this[int index] { get; set; }
public object SyncRoot { get; }
public bool IsSynchronized { get; }
public EncryptionPropertyCollection();
public IEnumerator GetEnumerator();
public int Add(EncryptionProperty value);
public void Clear();
public bool Contains(EncryptionProperty value);
public int IndexOf(EncryptionProperty value);
public void Insert(int index, EncryptionProperty value);
public void Remove(EncryptionProperty value);
public void RemoveAt(int index);
public EncryptionProperty Item(int index);
public void CopyTo(Array array, int index);
public void CopyTo(EncryptionProperty[] array, int index);
}
}