Poznámka:
Přístup k této stránce vyžaduje autorizaci. Můžete se zkusit přihlásit nebo změnit adresáře.
Přístup k této stránce vyžaduje autorizaci. Můžete zkusit změnit adresáře.
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
// ...
}