mscorlib(4.0.0.0) API with additions
XmlArrayItemAttributes.cs
1 using System.Collections;
2 
4 {
6  [global::__DynamicallyInvokable]
8  {
12  [global::__DynamicallyInvokable]
13  public XmlArrayItemAttribute this[int index]
14  {
15  [global::__DynamicallyInvokable]
16  get
17  {
18  return (XmlArrayItemAttribute)base.List[index];
19  }
20  [global::__DynamicallyInvokable]
21  set
22  {
23  base.List[index] = value;
24  }
25  }
26 
30  [global::__DynamicallyInvokable]
31  public int Add(XmlArrayItemAttribute attribute)
32  {
33  return base.List.Add(attribute);
34  }
35 
39  [global::__DynamicallyInvokable]
40  public void Insert(int index, XmlArrayItemAttribute attribute)
41  {
42  base.List.Insert(index, attribute);
43  }
44 
48  [global::__DynamicallyInvokable]
49  public int IndexOf(XmlArrayItemAttribute attribute)
50  {
51  return base.List.IndexOf(attribute);
52  }
53 
58  [global::__DynamicallyInvokable]
59  public bool Contains(XmlArrayItemAttribute attribute)
60  {
61  return base.List.Contains(attribute);
62  }
63 
66  [global::__DynamicallyInvokable]
67  public void Remove(XmlArrayItemAttribute attribute)
68  {
69  base.List.Remove(attribute);
70  }
71 
75  [global::__DynamicallyInvokable]
76  public void CopyTo(XmlArrayItemAttribute[] array, int index)
77  {
78  base.List.CopyTo(array, index);
79  }
80 
82  [global::__DynamicallyInvokable]
84  {
85  }
86  }
87 }
void Insert(int index, XmlArrayItemAttribute attribute)
Inserts an T:System.Xml.Serialization.XmlArrayItemAttribute into the collection at the specified inde...
Provides the abstract base class for a strongly typed collection.
int Add(XmlArrayItemAttribute attribute)
Adds an T:System.Xml.Serialization.XmlArrayItemAttribute to the collection.
bool Contains(XmlArrayItemAttribute attribute)
Determines whether the collection contains the specified T:System.Xml.Serialization....
Definition: __Canon.cs:3
void Remove(XmlArrayItemAttribute attribute)
Removes an T:System.Xml.Serialization.XmlArrayItemAttribute from the collection, if it is present.
XmlArrayItemAttributes()
Initializes a new instance of the T:System.Xml.Serialization.XmlArrayItemAttributes class.
Represents an attribute that specifies the derived types that the T:System.Xml.Serialization....
void CopyTo(XmlArrayItemAttribute[] array, int index)
Copies an T:System.Xml.Serialization.XmlArrayItemAttribute array to the collection,...
Represents a collection of T:System.Xml.Serialization.XmlArrayItemAttribute objects.
int IndexOf(XmlArrayItemAttribute attribute)
Returns the zero-based index of the first occurrence of the specified T:System.Xml....