Xml.XMLDoc.TXMLNode._Release

From RAD Studio API Documentation
Jump to: navigation, search


Delphi

function _Release: Integer; stdcall;

C++

HIDESBASE int __stdcall _Release();

Properties

Type Visibility Source Unit Parent
function protected
Xml.XMLDoc.pas
Xml.XMLDoc.hpp
Xml.XMLDoc TXMLNode

Description

Decrements the reference count for this node.

__Release implements the IInterface or IUnknown method that is called when an application releases a reference to this node's interface pointer. __Release decrements the RefCount property. In addition, it also decrements the reference count for the owning document, which it incremented when the _AddRef method was called.

When __Release causes the node's reference count to drop to zero, __Release causes the node to free itself.

See Also