ManagementObject.Scope 属性

定义

获取或设置此对象在其中驻留的范围。

public:
 property System::Management::ManagementScope ^ Scope { System::Management::ManagementScope ^ get(); void set(System::Management::ManagementScope ^ value); };
public System.Management.ManagementScope Scope { get; set; }
member this.Scope : System.Management.ManagementScope with get, set
Public Property Scope As ManagementScope

属性值

此对象驻留的范围。

示例

以下示例使用默认命名空间初始化 类的新实例 ManagementObject ,然后更改 的 ManagementObject作用域。

using System;
using System.Management;
public class Sample
{
    public static void Main()
    {
        // Create the object with the default namespace
        // (root\cimv2)
        ManagementObject o = new ManagementObject();

        // Change the scope (=namespace) of this object
        // to the one specified.
        o.Scope = new ManagementScope("root\\CIMV2");
    }
}
Imports System.Management
Public Class Sample

    Public Overloads Shared Function Main( _
    ByVal args() As String) As Integer

        ' Create the object with the default namespace
        ' (root\cimv2)
        Dim o As New ManagementObject

        ' Change the scope (=namespace) of this object
        ' to the one specified.
        o.Scope = New ManagementScope("root\CIMV2")

        Return 0
    End Function
End Class

注解

在管理对象绑定到特定命名空间中的 WMI 对象后更改此属性会导致释放原始 WMI 对象。 这会导致管理对象重新绑定到由新路径属性和范围值指定的新对象。

重新绑定以“延迟”方式执行,即仅当请求的值要求管理对象绑定到 WMI 对象时。 在尝试重新绑定 (之前,可以更改多个属性,例如,同时) 修改范围和路径属性。

.NET Framework 安全性

对直接调用方的完全信任。 此成员不能由部分信任的代码使用。 有关详细信息,请参阅 使用部分受信任的代码中的库

适用于