限制

指定模块、接口或调度接口的成员不能随机调用。

[ restricted(
   interfaces
) ]

参数

  • interfaces
    在 COM 对象不能随机调用的一个或多个接口。 此参数只有效,在对类。

备注

限制 C++ 特性具有与 限制 MIDL 属性相同。

示例

下面的代码演示如何使用 限制 属性:

// cpp_attr_ref_restricted.cpp
// compile with: /LD
#include "windows.h"
#include "unknwn.h"
[module(name="MyLib")];

[object, uuid("00000000-0000-0000-0000-000000000001")]
__interface a
{
};

[object, uuid("00000000-0000-0000-0000-000000000002")]
__interface b
{
};

[coclass, restricted(a,b), uuid("00000000-0000-0000-0000-000000000003")]
class c : public a, public b
{
};

要求

属性上下文

适用对象

接口方法, interface, , struct

可重复

必需的特性

coclass (当应用于 或 struct)

无效的特性

有关属性上下文的更多信息,请参见 属性上下文

请参见

其他资源

IDL特性

接口特性

方案属性

Attributes Samples