IXMLDOMElement.getAttributeNode (C#)

The getAttributeNode method retrieves the attribute node.

IXMLDOMAttribute = IXMLDOMElement.getAttributeNode(
  string strName
);

Arguments

strName

[in] string specifying the name of the attribute to be retrieved.

Return Value

Returns an IXMLDOMAttributeIXMLDOMAttribute Object (C#) with the supplied name, or NULL if the named attribute cannot be found on this element.

Example

The following example retrieves an attribute node named src using the getAttributeNode method.

using Microsoft.WindowsMediaServices.Interop;
using interop_msxml;

// Declare variables.
WMSServer Server;
IXMLDOMDocument Playlist;
IXMLDOMNodeList ElemList;
IXMLDOMElement Elem;
IXMLDOMNode Node;
IXMLDOMAttribute AttNode;

try {
    // Create a new WMSServer object.
    Server = new WMSServerClass();

    // Create a new playlist object.
    Playlist = Server.CreatePlaylist();

    // Load a playlist.
    Playlist.load("file://c:\\wmpub\\wmroot\\simple.wsx");

    // Retrieve a list of nodes that matches the query.
    ElemList = Playlist.getElementsByTagName("media");

    // Retrieve the first node in the list.
    Node = ElemList[0];

    // Box the first node into an IXMLDOMElement object.
    Elem = (IXMLDOMElement)Node;

    // Retrieve the attribute named "src".
    AttNode = Elem.getAttributeNode("src");
}
catch (Exception e) {
    // TODO: Handle exceptions.
}

Requirements

Reference: Add references to Microsoft.WindowsMediaServices and interop_msxml.

Namespace: Microsoft.WindowsMediaServices.Interop, interop_msxml.

Assembly: Microsoft.WindowsMediaServices.dll, interop_msxml.dll.

Library: WMSServerTypeLib.dll, msxml.dll.

Platform: Windows Server 2003 family, Windows Server 2008 family.

See Also

Reference

IXMLDOMAttribute Object (C#)

IXMLDOMElement Object (C#)

Concepts

XML DOM Methods (C#)