Xml.xmldom.UnRegisterDOMVendor

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure UnRegisterDOMVendor(const Vendor: TDOMVendor);

C++

extern DELPHI_PACKAGE void __fastcall UnRegisterDOMVendor(TDOMVendor* const Vendor);

Properties

Type Visibility Source Unit Parent
procedure
function
public
Xml.Xmldom.pas
Xml.xmldom.hpp
Xml.xmldom Xml.xmldom


Description

Unregisters a DOM implementation that was registered using RegisterDOMVendor .

Call UnRegisterDOMVendor to unregister a DOM implementation when it is no longer available. After unregistering a DOM implementation, it can't be used by TXMLDocument for parsing XML documents.

Vendor is the TDOMVendor descendant the represents the DOM implementation that is to be unregistered. It must be the same object used when registering the DOM implementation when you called RegisterDOMVendor.

See Also