<PackageReference Include="System.Xml.XmlSerializer" Version="4.0.11-beta-23409" />

XmlArrayItemAttributes

Represents a collection of XmlArrayItemAttribute objects.
public int Count { get; }

Gets the number of elements contained in the XmlArrayItemAttributes.

public XmlArrayItemAttribute this[int index] { get; set; }

Gets or sets the item at the specified index.

Initializes a new instance of the XmlArrayItemAttributes class.

public int Add(XmlArrayItemAttribute attribute)

Adds an XmlArrayItemAttribute to the collection.

public void Clear()

Removes all elements from the XmlArrayItemAttributes.

public bool Contains(XmlArrayItemAttribute attribute)

Determines whether the collection contains the specified XmlArrayItemAttribute.

public void CopyTo(XmlArrayItemAttribute[] array, int index)

Copies an XmlArrayItemAttribute array to the collection, starting at a specified target index.

Returns an enumerator for the entire XmlArrayItemAttributes.

public int IndexOf(XmlArrayItemAttribute attribute)

Returns the zero-based index of the first occurrence of the specified XmlArrayItemAttribute in the collection or -1 if the attribute is not found in the collection.

public void Insert(int index, XmlArrayItemAttribute attribute)

Inserts an XmlArrayItemAttribute into the collection at the specified index.

public void Remove(XmlArrayItemAttribute attribute)

Removes an XmlArrayItemAttribute from the collection, if it is present.

public void RemoveAt(int index)

Removes the XmlArrayItemAttributes item at the specified index.