다음을 통해 공유


RelatedObjectQuery.RelationshipClass 속성

정의

관계(연결) 형식을 가져오거나 설정합니다.

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

설명

속성 값이 설정 개체에 저장 된 이전 값을 재정의 합니다. 쿼리 문자열은 새 관계 클래스를 반영 하도록 다시 작성 됩니다.

속성 값

관계 클래스 이름이 들어 있는 string입니다.

.NET Framework 보안

직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분적으로 신뢰할 수 있는 코드에서 라이브러리를 사용 하 여입니다.

적용 대상