ManagementBaseObject.SystemProperties 속성

정의

관리 개체의 WMI 시스템 속성 컬렉션을 가져옵니다(예: 클래스 이름, 서버 및 네임스페이스). WMI 시스템 속성 이름은 "__"로 시작합니다.

public:
 virtual property System::Management::PropertyDataCollection ^ SystemProperties { System::Management::PropertyDataCollection ^ get(); };
public virtual System.Management.PropertyDataCollection SystemProperties { get; }
member this.SystemProperties : System.Management.PropertyDataCollection
Public Overridable ReadOnly Property SystemProperties As PropertyDataCollection

속성 값

관리 개체의 시스템 속성을 포함하는 컬렉션입니다.

예제

다음 예제에서는 속성을 사용하여 SystemPropertiesWin32_Process 클래스에 대한 시스템 속성의 이름과 값을 표시합니다. Win32_Process 클래스에 대한 자세한 내용은 Windows Management Instrumentation 설명서를 참조하세요.

using System;
using System.Management;

public class Sample
{
    public static void Main()
    {

        // Get the WMI class
        ManagementClass processClass =
            new ManagementClass("Win32_Process");

        // Get the system properties for the class
        PropertyDataCollection properties =
            processClass.SystemProperties;

        // display the properties
        foreach (PropertyData p in properties)
        {
            Console.WriteLine(p.Name);
            Console.WriteLine(p.Value);
            Console.WriteLine();
        }
    }
}
Imports System.Management


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

        ' Get the WMI class
        Dim processClass As New ManagementClass( _
            "Win32_Process")

        ' Get the system properties for the class
        Dim properties As PropertyDataCollection
        properties = processClass.SystemProperties

        For Each p As PropertyData In properties

            Console.WriteLine(p.Name)
            Console.WriteLine(p.Value)
            Console.WriteLine()

        Next
    End Function
End Class

설명

속성 값

PropertyDataCollection 관리 개체의 시스템 속성을 나타내는 입니다.

.NET Framework 보안

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

적용 대상