restricted
指定模組、介面或 dispinterface 的成員無法任意呼叫。
語法
[ 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
{
};
需求
屬性內容 | 值 |
---|---|
適用於 | 介面方法、介面、、 class struct |
可重複 | No |
必要屬性 | coclass (套用至 class 或 struct 時) |
無效屬性 | 無 |
如需有關屬性內容的詳細資訊,請參閱 屬性內容。