DkmTransportConnection.GetRunningProcessInfo Method

Definition

Obtain information about a process running on the target computer.

public:
 Microsoft::VisualStudio::Debugger::DefaultPort::DkmRunningProcessInfo ^ GetRunningProcessInfo(int Id, long StartTime, bool IsDebuggee, Microsoft::VisualStudio::Debugger::DefaultPort::DkmRunningProcessInfoPropertyMask RequestedPropertyMask);
public:
 Microsoft::VisualStudio::Debugger::DefaultPort::DkmRunningProcessInfo ^ GetRunningProcessInfo(int Id, long long StartTime, bool IsDebuggee, Microsoft::VisualStudio::Debugger::DefaultPort::DkmRunningProcessInfoPropertyMask RequestedPropertyMask);
Microsoft::VisualStudio::Debugger::DefaultPort::DkmRunningProcessInfo GetRunningProcessInfo(int Id, long StartTime, bool IsDebuggee, Microsoft::VisualStudio::Debugger::DefaultPort::DkmRunningProcessInfoPropertyMask RequestedPropertyMask);
public Microsoft.VisualStudio.Debugger.DefaultPort.DkmRunningProcessInfo GetRunningProcessInfo (int Id, long StartTime, bool IsDebuggee, Microsoft.VisualStudio.Debugger.DefaultPort.DkmRunningProcessInfoPropertyMask RequestedPropertyMask);
member this.GetRunningProcessInfo : int * int64 * bool * Microsoft.VisualStudio.Debugger.DefaultPort.DkmRunningProcessInfoPropertyMask -> Microsoft.VisualStudio.Debugger.DefaultPort.DkmRunningProcessInfo
Public Function GetRunningProcessInfo (Id As Integer, StartTime As Long, IsDebuggee As Boolean, RequestedPropertyMask As DkmRunningProcessInfoPropertyMask) As DkmRunningProcessInfo

Parameters

Id
Int32

[In] Process Id (PID) assigned by the operating system.

StartTime
Int64

[In] 64-bit date time value indicating when the process was started. The start time along with the id and the machine where the process was started can uniquely identify a process. '0' can be passed if the start time is unknown.

IsDebuggee
Boolean

[In] When true, the request will fail if the debugger has insufficient privileges to complete the request. If false, the implementation should calculate what it can.

RequestedPropertyMask
DkmRunningProcessInfoPropertyMask

[In] Flags indicating which properties of DkmRunningProcessInfo should be computed.

Returns

[Out] Information about the requested process.

Applies to