mscorlib(4.0.0.0) API with additions
XmlElementAttributes.cs
1 using System.Collections;
2 
4 {
6  [global::__DynamicallyInvokable]
8  {
15  [global::__DynamicallyInvokable]
16  public XmlElementAttribute this[int index]
17  {
18  [global::__DynamicallyInvokable]
19  get
20  {
21  return (XmlElementAttribute)base.List[index];
22  }
23  [global::__DynamicallyInvokable]
24  set
25  {
26  base.List[index] = value;
27  }
28  }
29 
33  [global::__DynamicallyInvokable]
34  public int Add(XmlElementAttribute attribute)
35  {
36  return base.List.Add(attribute);
37  }
38 
42  [global::__DynamicallyInvokable]
43  public void Insert(int index, XmlElementAttribute attribute)
44  {
45  base.List.Insert(index, attribute);
46  }
47 
51  [global::__DynamicallyInvokable]
52  public int IndexOf(XmlElementAttribute attribute)
53  {
54  return base.List.IndexOf(attribute);
55  }
56 
61  [global::__DynamicallyInvokable]
62  public bool Contains(XmlElementAttribute attribute)
63  {
64  return base.List.Contains(attribute);
65  }
66 
69  [global::__DynamicallyInvokable]
70  public void Remove(XmlElementAttribute attribute)
71  {
72  base.List.Remove(attribute);
73  }
74 
78  [global::__DynamicallyInvokable]
79  public void CopyTo(XmlElementAttribute[] array, int index)
80  {
81  base.List.CopyTo(array, index);
82  }
83 
85  [global::__DynamicallyInvokable]
87  {
88  }
89  }
90 }
bool Contains(XmlElementAttribute attribute)
Determines whether the collection contains the specified object.
Provides the abstract base class for a strongly typed collection.
Definition: __Canon.cs:3
int IndexOf(XmlElementAttribute attribute)
Gets the index of the specified T:System.Xml.Serialization.XmlElementAttribute.
void Insert(int index, XmlElementAttribute attribute)
Inserts an T:System.Xml.Serialization.XmlElementAttribute into the collection.
XmlElementAttributes()
Initializes a new instance of the T:System.Xml.Serialization.XmlElementAttributes class.
int Add(XmlElementAttribute attribute)
Adds an T:System.Xml.Serialization.XmlElementAttribute to the collection.
void CopyTo(XmlElementAttribute[] array, int index)
Copies the T:System.Xml.Serialization.XmlElementAttributes, or a portion of it to a one-dimensional a...
Represents a collection of T:System.Xml.Serialization.XmlElementAttribute objects used by the T:Syste...
void Remove(XmlElementAttribute attribute)
Removes the specified object from the collection.
Indicates that a public field or property represents an XML element when the T:System....