Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 983 Bytes

nonextensible-attribute.md

File metadata and controls

16 lines (12 loc) · 983 Bytes
description title ms.date helpviewer_keywords ms.assetid
Learn more about: nonextensible Attribute
nonextensible Attribute
11/04/2016
nonextensible attribute
dual interfaces, nonextensible attribute
02a4a18b-ffd3-4d53-8fd1-feb1c05ad5ac

nonextensible Attribute

If a dual interface will not be extended at run time (that is, you won't provide methods or properties via IDispatch::Invoke that are not available via the vtable), you should apply the nonextensible attribute to your interface definition. This attribute provides information to client languages (such as Visual Basic) that can be used to enable full code verification at compile time. If this attribute is not supplied, bugs may remain hidden in the client code until run time.

For more information on the nonextensible attribute and an example, see nonextensible.

See also

Dual Interfaces and ATL