RelatedObjectQuery.RelationshipClass 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置关系(关联)的类型。
public:
property System::String ^ RelationshipClass { System::String ^ get(); void set(System::String ^ value); };
public string RelationshipClass { get; set; }
member this.RelationshipClass : string with get, set
Public Property RelationshipClass As String
属性值
返回一个 String 值,该值包含关系类名。
示例
以下示例设置 WMI 类与 RelatedObjectQuery之间的关系类型。
using System;
using System.Management;
class Sample
{
public static void Main(string[] args)
{
RelatedObjectQuery q =
new RelatedObjectQuery("Win32_Service='TCP/IP'");
q.RelationshipClass = "Win32_DependentService";
}
}
Imports System.Management
Public Class Sample
Public Overloads Shared Function _
Main(ByVal args() As String) As Integer
Dim q As New RelatedObjectQuery( _
"Win32_Service=""TCP/IP""")
q.RelationshipClass = "Win32_DependentService"
End Function
End Class
注解
设置此属性值将覆盖存储在 对象中的任何先前值。 将重新生成查询字符串以反映新的关系类。
属性值
包含关系类名称的字符串。
.NET Framework 安全性
对直接调用方的完全信任。 此成员不能由部分信任的代码使用。 有关详细信息,请参阅 使用部分受信任的代码中的库。