processidtosessionid (kernel32)
Last changed: -194.238.48.90

.
Summary

C# Signature:

[DllImport("kernel32.dll")]
static extern bool ProcessIdToSessionId(uint dwProcessId, out uint pSessionId);

VB Signature:

  Declare Function ProcessIdToSessionId Lib "kernel32.dll" (ByVal dwProcessId As Int32, ByRef pSessionId As Int32) As Int32

User-Defined Types:

None.

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Get the Session Id for the current process in C#

int sessionId = System.Diagnostics.Process.GetCurrentProcess().SessionId;

Alternative Managed API:

int sessionId = System.Diagnostics.Process.GetProcessById(processId).SessionId;

Documentation