Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

This method decrements the reference count for the calling interface on a object. If the reference count on the object falls to zero, the object is freed from memory.

Syntax

ULONG Release(void);

Parameters

None.

Return Value

Returns the resulting value of the reference count, which is used for diagnostic/testing purposes only. If you need to know that resources have been freed, use an interface with higher-level semantics.

Remarks

If the IUnknown::AddRefmethod has been called on this object's interface ntimes and this is the n+1call to IUnknown::Release, the implementation of IUnknown::AddRefmust cause the interface pointer to free itself.

When the released pointer is the only existing reference to an object (whether the object supports single or multiple interfaces), the implementation must free the object.

Aggregation of objects restricts the ability to recover interface pointers.

To determine whether the platform supports this interface, see Determining Supported COM APIs.

Notes to Callers

Call this method when you no longer need to use an interface pointer. If you are writing a function that takes an in-out parameter, call IUnknown::Releaseon the pointer you are passing in before copying the out-value on top of it.

Requirements

Header unknwn.h, unknwn.idl
Library ole32.lib, uuid.lib
Windows Embedded CE Windows CE 1.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also