CWbemProviderGlue::GetAllDerivedInstances (LPCWSTR,TRefPointerCollection<CInstance>*,MethodContext*,LPCWSTR) 方法 (wbemglue.h)
[CWbemProviderGlue 类是 WMI 提供程序框架的一部分,现在视为处于最终状态,对于影响这些库的非安全性相关问题,将不会提供进一步的开发、增强或更新。 所有新开发均应使用 MI API。]
GetAllDerivedInstances 方法检索基类的实例列表或该基类的任何子类。
语法
HRESULT GetAllDerivedInstances(
LPCWSTR pszBaseClassName,
TRefPointerCollection<CInstance> *pList,
MethodContext *pMethodContext,
LPCWSTR pszNamespace
);
参数
pszBaseClassName
指向应为其返回列表的基类名称的指针。
pList
指向从 pszBaseClassName 指定的类派生的实例的链接列表的指针。
pMethodContext
指向当前上下文的指针。 必须提供上下文以防止死锁。 使用由 Provider::EnumerateInstances 或 Provider::ExecQuery 传入提供程序的上下文,或使用 CInstance::GetMethodContext 从实例获取上下文。 此参数不得为 NULL。
pszNamespace
pszBaseClassName 指定的类名的命名空间。 如果此参数为 NULL,则使用默认命名空间 root\cimv2。
返回值
如果操作成功,则该方法返回WBEM_S_NO_ERROR,WBEM_E_OUT_OF_MEMORY如果操作因内存不足而失败,则返回任何其他 HRESULT 错误代码。
注解
GetAllDerivedInstances 方法允许框架提供程序访问来自其他提供程序的数据。 框架提供程序将基类的名称传递给 GetAllDerivedInstances,这会返回从该基类派生的所有实例的列表。
返回代码包括 来自 IWbemServices::ExecQuery 的所有可能返回。
此方法在语义上等效于查询 SELECT * FROM pszBaseClassName。
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows Vista |
最低受支持的服务器 | Windows Server 2008 |
目标平台 | Windows |
标头 | wbemglue.h (包括 FwCommon.h) |
Library | FrameDyn.lib |
DLL | FrameDynOS.dll;FrameDyn.dll |