ElementList.Item Property

Gets or sets the XML element at the specified index.

Namespace: Microsoft.Web.Services3.Xml
Assembly: Microsoft.Web.Services3 (in microsoft.web.services3.dll)

Usage

'Usage
Dim elementList1 As ElementList

Dim key As Integer
Dim returnValue As XmlElement
returnValue = elementList1.Item(key)

Dim sampleValue As XmlElement
elementList1.Item(key) = sampleValue

Syntax

'Declaration
Public Property Item( _
    ByVal index As Integer _
) As XmlElement
public XmlElement this[
    int index
] {get; set;}
public:
property XmlElement^ default[int] {
    XmlElement^ get(int index);
    void set(int index, XmlElement^ value);
}
public XmlElement get_Item(
    int index
);
public void set_Item(
    int index
XmlElement);
In JScript, you can use Indexed Properties defined by a class, but you cannot define your own.

Parameters

  • index
    The zero-based index of the XML element to get or set.

Property Value

The XmlElement at the specified index.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, Windows 2000, Windows 2000 Server, Windows 2000 Advanced Server

Target Platforms

See Also

Reference

ElementList Class
ElementList Members
Microsoft.Web.Services3.Xml Namespace