What are the derived classes from xmlReader and xmlWriter
Answer / kirti
Both XmlReader and XmlWriter are abstract base classes, which define the functionality that all derived classes must support.
There are three concrete implementations of XmlReader:
1.XmlTextReader
2.XmlNodeReader
3.XmlValidatingReader
There are two concrete implementations of XmlWriter:
1.XmlTextWriter
2.XmlNodeWriter
XmlTextReader and XmlTextWriter support reading data to/from text-based stream, while XmlNodeReader and XmlNodeWriter are designed for working with in-memory DOM tree structure. The custom readers and writers can also be developed to extend the built-in functionality of XmlReader and XmlWriter.
Is This Answer Correct ? | 0 Yes | 0 No |
Explain the advantages of asp.net mvc over asp.net?
What is .net framwork? what is web application? what is CLR? How does work CLR & wht is work of CLR? What is compile? wht is thread? what does use in .net?
How the framework differentiate between 2 version dlls? eg Version 2.0 and 2.1 dlls are there. both are referred in the code.but we are using only name of that dll not the version number. in run time how the framework know which dll has to be referred?
I want to fetch data from datareader. i have three tables in datareader. i want to bind my two table with datagrid, then i want to fetch a value from my third table. do u have any idea pls help me. we use dr.nextresult() for multiple tables.
What is the difference between model and entity?
What is "out" parameter how it is used in methods?
If Controller is not there in MVC Pattern what happens?
What are Action Filters in ASP.NET MVC and its use?
which is good java or Dot net?
How you deploy .NET assemblies
How can Bitwise OR operator reresents in .Net?? To which alias name a variable points to if it is declared as "int" variable??
What is the difference between old ADO.NET and Entity framework coding techniques?