Not
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
You can create your own XmlReader that embeds the reader returned by the Parse method and provides customization.
Example
class MyXmlReader : XmlReader
{
public MyXmlReader(XmlReader xr)
{
_xr = xr;
}
// Overrides XmlReader and provides customized functionality of _xr
// ...
}