Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
.gif)
| Previous | Next |
IXMLDOMElement.removeAttribute (C#)
The removeAttribute method removes or replaces the named attribute.
Syntax
IXMLDOMElement .removeAttribute( string strName );
Parameters
strName
[in] string specifying the name of the attribute to be removed or replaced.
Return Values
This method does not return a value.
Example Code
The following example removes the attribute node named "src" from the specified element node.
using Microsoft.WindowsMediaServices.Interop;
using interop_msxml;
// Declare variables.
WMSServer Server;
IXMLDOMDocument Playlist;
IXMLDOMNodeList ElemList;
IXMLDOMElement Elem;
IXMLDOMNode Node;
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 match 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;
// Remove attribute named "src".
Elem.removeAttribute("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
| Previous | Next |