Gets the collection of WMI system properties of the management object (for example, the class name, server, and namespace). WMI system property names begin with "__".
Assembly: System.Management (in System.Management.dll)
Public Overridable ReadOnly Property SystemProperties As PropertyDataCollection Get
public virtual PropertyDataCollection SystemProperties { get; }
public: virtual property PropertyDataCollection^ SystemProperties { PropertyDataCollection^ get (); }
abstract SystemProperties : PropertyDataCollection override SystemProperties : PropertyDataCollection
Property Value
Type: System.Management.PropertyDataCollectionReturns a PropertyDataCollection that contains the system properties for a management object.
Property Value
A PropertyDataCollection that represents the system properties of the management object.
.NET Framework Security
Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
The following example uses the SystemProperties property to display the name and value of the system properties for the Win32_Process class. For more information on the Win32_Process class, see the Windows Management Instrumentation documentation in the MSDN Library at http://msdn.microsoft.com/library.
Imports System 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
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(); } } }
.NET Framework
Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0.NET Framework Client Profile
Supported in: 4, 3.5 SP1- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.