ManagementObject.Options 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置检索对象时要使用的其他信息。
public:
property System::Management::ObjectGetOptions ^ Options { System::Management::ObjectGetOptions ^ get(); void set(System::Management::ObjectGetOptions ^ value); };
public System.Management.ObjectGetOptions Options { get; set; }
member this.Options : System.Management.ObjectGetOptions with get, set
Public Property Options As ObjectGetOptions
属性值
检索对象时要使用的 ObjectGetOptions。
示例
以下示例初始化 类的新实例, ManagementObject 然后更改 的默认选项 ManagementObject。
using System;
using System.Management;
public class Sample
{
public static void Main()
{
///Contains default options
ManagementObject o =
new ManagementObject("Win32_Process.Name='notepad.exe'");
// Replace default options,
// in this case requesting retrieval of
// amended qualifiers along with the WMI object.
o.Options = new ObjectGetOptions(
null, System.TimeSpan.MaxValue, true);
}
}
Imports System.Management
Public Class Sample
Public Overloads Shared Function Main( _
ByVal args() As String) As Integer
'Contains default options
Dim o As New ManagementObject( _
"Win32_Process.Name=""notepad.exe""")
' Replace default options,
' in this case requesting retrieval of
' amended qualifiers along with the WMI object.
o.Options = New ObjectGetOptions( _
Nothing, System.TimeSpan.MaxValue, True)
Return 0
End Function
End Class
注解
当管理对象绑定到 WMI 对象后更改属性时,管理对象将与原始 WMI 对象断开连接,稍后使用新选项重新绑定。
.NET Framework 安全性
对直接调用方的完全信任。 此成员不能由部分信任的代码使用。 有关详细信息,请参阅 使用部分受信任的代码中的库。