mirror of
https://github.com/vinaypamnani/wmie2.git
synced 2026-01-02 22:49:57 +01:00
42 lines
904 B
C#
42 lines
904 B
C#
using System.Management;
|
|
|
|
namespace WmiExplorer.Classes
|
|
{
|
|
internal class WmiMethod
|
|
{
|
|
private string _description;
|
|
private bool _isStatic;
|
|
private string _methodName;
|
|
private string _path;
|
|
private MethodData _wmiMethod;
|
|
|
|
public WmiMethod(MethodData actualMethod)
|
|
{
|
|
_wmiMethod = actualMethod;
|
|
}
|
|
|
|
public string Description
|
|
{
|
|
get { return _description; }
|
|
set { _description = value; }
|
|
}
|
|
|
|
public bool IsStatic
|
|
{
|
|
get { return _isStatic; }
|
|
set { _isStatic = value; }
|
|
}
|
|
|
|
public string MethodName
|
|
{
|
|
get { return _methodName; }
|
|
set { _methodName = value; }
|
|
}
|
|
|
|
public string Path
|
|
{
|
|
get { return _path; }
|
|
set { _path = value; }
|
|
}
|
|
}
|
|
} |