WmiConfigurationAttribute 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
WmiConfiguration 属性指示程序集包含通过使用 WMI.NET 提供程序扩展模型实现 WMI 提供程序的代码。 该属性接受建立所实现的 WMI 提供程序的高级配置的参数。
注意:WMI .NET 库现在视为处于最终状态,且没有可用于会影响这些库的非安全性相关问题的进一步开发、增强或更新。 MI API 应用于所有新的开发。
public ref class WmiConfigurationAttribute sealed : Attribute
[System.AttributeUsage(System.AttributeTargets.Assembly)]
public sealed class WmiConfigurationAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Assembly)>]
type WmiConfigurationAttribute = class
inherit Attribute
Public NotInheritable Class WmiConfigurationAttribute
Inherits Attribute
- 继承
- 属性
示例
// Specify that this assembly contains code that implements a WMI
// Provider. Use the assembly:WmiConfiguration attribute to define
// the WMI namespace, the hosting model, and the impersonation mode
// of the WMI provider.
// The attribute below specifies that the class this provider
// exposes to WMI will be in the root/MortgageCalc namespace, will
// use the decoupled hosting model and will not allow the provider
// to impersonate its callers.
[assembly: WmiConfiguration("root/MortgageCalc",HostingModel = ManagementHostingModel.Decoupled, IdentifyLevel = false)]
注解
下表列出了此属性接受的参数,以及它允许你控制的提供程序配置的哪个方面。
参数 | 配置 |
---|---|
Scope | 提供程序在其中公开类的命名空间。 |
NamespaceSecurity | - 所用命名空间上的安全 (DACL) 。 |
HostingModel | - 提供程序将使用的托管模型。 |
IdentifyLevel | - 提供程序的模拟模式。 |
HostingGroup | 提供程序所属的托管组。 此参数仅适用于进程内提供程序。 |
SecurityRestriction | 安全 (DACL 在 WMI 提供程序上) 。 |
构造函数
WmiConfigurationAttribute(String) |
初始化 WmiConfigurationAttribute 类的新实例,该类指定 WMI 提供程序用于公开类的 WMI 命名空间。 |
属性
HostingGroup |
获取或设置 WMI 提供程序的承载组。 |
HostingModel |
获取或设置 WMI 提供程序的承载模型。 |
IdentifyLevel |
获取或设置一个值,指定 WMI 提供程序是否可以模拟其调用方。 如果该值为 false,则说明提供程序无法模拟;如果该值为 true,则说明提供程序可以模拟。 |
NamespaceSecurity |
获取或设置一个安全描述符定义语言 (SDDL) 字符串,它指定提供程序用于公开管理对象的命名空间的安全描述符。 |
Scope |
获取 WMI 提供程序在其中公开类的 WMI 命名空间。 |
SecurityRestriction |
获取或设置 WMI 提供程序的安全描述符。 |
TypeId |
在派生类中实现时,获取此 Attribute 的唯一标识符。 (继承自 Attribute) |
方法
Equals(Object) |
返回一个值,该值指示此实例是否与指定的对象相等。 (继承自 Attribute) |
GetHashCode() |
返回此实例的哈希代码。 (继承自 Attribute) |
GetType() |
获取当前实例的 Type。 (继承自 Object) |
IsDefaultAttribute() |
在派生类中重写时,指示此实例的值是否是派生类的默认值。 (继承自 Attribute) |
Match(Object) |
当在派生类中重写时,返回一个指示此实例是否等于指定对象的值。 (继承自 Attribute) |
MemberwiseClone() |
创建当前 Object 的浅表副本。 (继承自 Object) |
ToString() |
返回表示当前对象的字符串。 (继承自 Object) |
显式接口实现
_Attribute.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr) |
将一组名称映射为对应的一组调度标识符。 (继承自 Attribute) |
_Attribute.GetTypeInfo(UInt32, UInt32, IntPtr) |
检索对象的类型信息,然后可以使用该信息获取接口的类型信息。 (继承自 Attribute) |
_Attribute.GetTypeInfoCount(UInt32) |
检索对象提供的类型信息接口的数量(0 或 1)。 (继承自 Attribute) |
_Attribute.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr) |
提供对某一对象公开的属性和方法的访问。 (继承自 Attribute) |