XmlAttribute.Value Property
.NET Framework 2.0
Gets or sets the value of the node.
Namespace: System.Xml
Assembly: System.Xml (in system.xml.dll)
Assembly: System.Xml (in system.xml.dll)
/** @property */ public String get_Value () /** @property */ public void set_Value (String value)
public override function get Value () : String public override function set Value (value : String)
Property Value
The value returned depends on the NodeType of the node. For XmlAttribute nodes, this property is the value of attribute.The following example displays information on each of the nodes in the attribute collection.
using System; using System.IO; using System.Xml; public class Sample { public static void Main(){ XmlDocument doc = new XmlDocument(); doc.LoadXml("<book xmlns:bk='urn:samples' bk:genre='novel'>" + "<title>Pride And Prejudice</title>" + "</book>"); //Create an attribute collection. XmlAttributeCollection attrColl = doc.DocumentElement.Attributes; Console.WriteLine("Display information on each of the attributes... \r\n"); foreach (XmlAttribute attr in attrColl){ Console.Write("{0}:{1} = {2}", attr.Prefix, attr.LocalName, attr.Value); Console.WriteLine("\t namespaceURI=" + attr.NamespaceURI); } } }
import System.*;
import System.IO.*;
import System.Xml.*;
public class Sample
{
public static void main(String[] args)
{
XmlDocument doc = new XmlDocument();
doc.LoadXml("<book xmlns:bk='urn:samples' bk:genre='novel'>"
+ "<title>Pride And Prejudice</title>"
+ "</book>");
//Create an attribute collection.
XmlAttributeCollection attrColl =
doc.get_DocumentElement().get_Attributes();
Console.WriteLine("Display information on each of the"
+ " attributes... \r\n");
for (int iCtr = 0; iCtr < attrColl.get_Count(); iCtr++) {
XmlAttribute attr = attrColl.get_ItemOf(iCtr);
Console.Write("{0}:{1} = {2}", attr.get_Prefix(),
attr.get_LocalName(), attr.get_Value());
Console.WriteLine("\t namespaceURI=" + attr.get_NamespaceURI());
}
} //main
} //Sample
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.