Table of Contents

Struct ProcessInfo

Namespace
Artemis.Core.Services
Assembly
Artemis.Core.dll

This readonly struct provides information about a process.

public readonly struct ProcessInfo
Inherited Members

Constructors

ProcessInfo(int, string, string, string)

Initializes a new instance of the ProcessInfo struct.

public ProcessInfo(int processId, string processName, string imageName, string executable)

Parameters

processId int

The identifier for the process.

processName string

The name of the process.

imageName string

The Image Name of the process.

executable string

The executable associated with the process.

Fields

Executable

Gets the Executable associated with the Process.

public readonly string Executable

Field Value

string

ImageName

Gets the Image Name of the Process.

public readonly string ImageName

Field Value

string

ProcessId

Gets the Identifier for the process.

public readonly int ProcessId

Field Value

int

ProcessName

Gets the name of the process.

public readonly string ProcessName

Field Value

string