RelatedObjectQuery.RelatedClass 属性

定义

获取或设置终结点对象的类(相关类)。

public:
 property System::String ^ RelatedClass { System::String ^ get(); void set(System::String ^ value); };
public string RelatedClass { get; set; }
member this.RelatedClass : string with get, set
Public Property RelatedClass As String

属性值

返回一个 String 值,该值包含相关类名。

示例

以下示例将 WMI 类设置为与 RelatedObjectQuery相关。

using System;
using System.Management;

class Sample
{
    public static void Main(string[] args)
    {
        RelatedObjectQuery q =
            new RelatedObjectQuery("Win32_ComputerSystem='MySystem'");
        q.RelatedClass = "Win32_Service";
    }
}
Imports System.Management


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

        Dim q As New RelatedObjectQuery( _
            "Win32_ComputerSystem=""MySystem""")
        q.RelatedClass = "Win32_Service"

    End Function
End Class

注解

设置此属性值将覆盖存储在 对象中的任何先前值。 将重新生成查询字符串以反映新的相关类。

属性值

包含相关类名的字符串。

.NET Framework 安全性

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

适用于