ManagementBaseObject.ClassPath Property (System.Management)

Switch View :
ScriptFree
.NET Framework Class Library
ManagementBaseObject.ClassPath Property

Gets the path to the management object's class.

Namespace:  System.Management
Assembly:  System.Management (in System.Management.dll)
Syntax

Visual Basic
Public Overridable ReadOnly Property ClassPath As ManagementPath
	Get
C#
public virtual ManagementPath ClassPath { get; }
Visual C++
public:
virtual property ManagementPath^ ClassPath {
	ManagementPath^ get ();
}
F#
abstract ClassPath : ManagementPath
override ClassPath : ManagementPath

Property Value

Type: System.Management.ManagementPath
Returns a ManagementPath that contains the class path to the management object's class.
Remarks

Property Value

A ManagementPath that represents the path to the management object's class.

.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.

Examples

The following example code lists all the classes with their class paths in the root\CIMV2 namespace.

For the \\MyBox\root\cimv2:Win32_LogicalDisk= 'C:' object, the class path is \\MyBox\root\cimv2:Win32_LogicalDisk.

Visual Basic

Imports System
Imports System.Management

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

        ' Create a query for classes
        Dim query As New SelectQuery( _
            "SELECT * FROM meta_class")

        ' Initialize an object searcher with this query
        Dim searcher As New ManagementObjectSearcher( _
            query)

        ' Get the resulting collection and loop through it
        For Each classObject As ManagementObject _
            In searcher.Get()

            Console.WriteLine( _
                classObject.ClassPath)
        Next

    End Function
End Class


C#

using System;
using System.Management;

public class Sample 
{    
    public static void Main() 
    {
        // Create a query for classes
        SelectQuery query = 
            new SelectQuery("SELECT * FROM meta_class");

        // Initialize an object searcher with this query
        ManagementObjectSearcher searcher = 
            new ManagementObjectSearcher(query);

        // Get the resulting collection and loop through it
        foreach (ManagementObject classObject in searcher.Get()) 
        {
            Console.WriteLine(
                classObject.ClassPath);
        }
    }
}


Version Information

.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
.NET Framework Security

Platforms

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.
See Also

Reference