nonextensible
指定 IDispatch 实现接口中声明包括只有列表的属性和方法,而不能扩展与运行时的其他成员。
[nonextensible]
备注
nonextensible C++ 特性具有与 nonextensible MIDL 属性相同。
为 nonextensible 的使用还需要 custom 属性。
示例
下面的代码演示 nonextensible 属性的一个用途:
// cpp_attr_ref_nonextensible.cpp
// compile with: /LD
#include "unknwn.h"
[module(name="ATLFIRELib")];
[export] typedef long HRESULT;
[dual, nonextensible, ms_union, oleautomation,
uuid("00000000-0000-0000-0000-000000000001")]
__interface IFireTabCtrl
{
HRESULT procedure (int i);
};
要求
属性上下文
适用对象 |
interface |
可重复 |
否 |
必需的特性 |
双 和 custom或 dispinterface |
无效的特性 |
无 |
有关属性上下文的更多信息,请参见 属性上下文。