Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How do we access attributes using “XmlReader”
How do we access attributes using “XmlReader”?
✍: Guest
Below snippets shows the way to access attributes. First in order to check whether there any attributes present in the current node you can use “HasAttributes” function and use the “MoveToNextAttribute” method to move forward in attribute. In case you want to move to the next element use “MoveToElement()”.
if (reader.HasAttributes) { while(reader.MoveToNextAttribute()) { // your logic goes here string pdata = reader.Value } } reader.MoveToElement();
2007-10-31, 7262👍, 0💬
Popular Posts:
What is the main difference between a Vector and an ArrayList? Java Vector class is internally synch...
How to create arrays in JavaScript? We can declare an array like this var scripts = new Array(); We ...
How To Export Data to a CSV File? - Oracle DBA FAQ - Introduction to Oracle SQL Developer If you wan...
How can I show HTML examples without them being interpreted as part of my document? Within the HTML ...
Enable ASP.NET polling using “web.config” file Now that all our database side is configured in order...