.NET Framework Class Library
ManagementObject.ClassPath Property
Gets or sets the path to the object's class.
Assembly: System.Management (in System.Management.dll)
Syntax
Visual Basic
Public Overrides ReadOnly Property ClassPath As ManagementPath Get
C#
public override ManagementPath ClassPath { get; }
Visual C++
public: virtual property ManagementPath^ ClassPath { ManagementPath^ get () override; }
F#
abstract ClassPath : ManagementPath override ClassPath : ManagementPath
Property Value
Type: System.Management.ManagementPathA ManagementPath representing the path to the object's class.
Remarks
This property is read-only.
.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 initializes a new instance of the ManagementObject class and then retrieves the class path for the ManagementObject.
Visual Basic
Imports System Imports System.Management Public Class Sample Public Overloads Shared Function Main( _ ByVal args() As String) As Integer Dim o As New ManagementObject ' Specify the WMI path to which ' this object should be bound to o.Path = New ManagementPath( _ "Win32_Process.Name=""calc.exe""") Return 0 End Function End Class
C#
using System; using System.Management; public class Sample { public static void Main() { ManagementObject o = new ManagementObject(); // Specify the WMI path to which // this object should be bound to o.Path = new ManagementPath( "Win32_Process.Name='calc.exe'"); } }
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
- 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.
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