mscorlib(4.0.0.0) API with additions
XmlAnyElementAttributes.cs
1 using System.Collections;
2 
4 {
6  [global::__DynamicallyInvokable]
8  {
12  [global::__DynamicallyInvokable]
13  public XmlAnyElementAttribute this[int index]
14  {
15  [global::__DynamicallyInvokable]
16  get
17  {
18  return (XmlAnyElementAttribute)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(XmlAnyElementAttribute attribute)
32  {
33  return base.List.Add(attribute);
34  }
35 
39  [global::__DynamicallyInvokable]
40  public void Insert(int index, XmlAnyElementAttribute attribute)
41  {
42  base.List.Insert(index, attribute);
43  }
44 
48  [global::__DynamicallyInvokable]
49  public int IndexOf(XmlAnyElementAttribute attribute)
50  {
51  return base.List.IndexOf(attribute);
52  }
53 
58  [global::__DynamicallyInvokable]
59  public bool Contains(XmlAnyElementAttribute attribute)
60  {
61  return base.List.Contains(attribute);
62  }
63 
66  [global::__DynamicallyInvokable]
67  public void Remove(XmlAnyElementAttribute attribute)
68  {
69  base.List.Remove(attribute);
70  }
71 
75  [global::__DynamicallyInvokable]
76  public void CopyTo(XmlAnyElementAttribute[] array, int index)
77  {
78  base.List.CopyTo(array, index);
79  }
80 
82  [global::__DynamicallyInvokable]
84  {
85  }
86  }
87 }
int Add(XmlAnyElementAttribute attribute)
Adds an T:System.Xml.Serialization.XmlAnyElementAttribute to the collection.
void CopyTo(XmlAnyElementAttribute[] array, int index)
Copies the entire collection to a compatible one-dimensional array of T:System.Xml....
Provides the abstract base class for a strongly typed collection.
Specifies that the member (a field that returns an array of T:System.Xml.XmlElement or T:System....
Definition: __Canon.cs:3
Represents a collection of T:System.Xml.Serialization.XmlAnyElementAttribute objects.
int IndexOf(XmlAnyElementAttribute attribute)
Gets the index of the specified T:System.Xml.Serialization.XmlAnyElementAttribute.
XmlAnyElementAttributes()
Initializes a new instance of the T:System.Xml.Serialization.XmlAnyElementAttributes class.
void Insert(int index, XmlAnyElementAttribute attribute)
Inserts an T:System.Xml.Serialization.XmlAnyElementAttribute into the collection at the specified ind...
bool Contains(XmlAnyElementAttribute attribute)
Gets a value that indicates whether the specified T:System.Xml.Serialization.XmlAnyElementAttribute e...
void Remove(XmlAnyElementAttribute attribute)
Removes the specified T:System.Xml.Serialization.XmlAnyElementAttribute from the collection.