I have not seen a managed API for this. The only APIs I could see to get this information were through WMI or the native Windows Terminal Services API.
Here is an example that returns the client name using the API WTSQuerySessionInformation:
namespace com.stackoverflow
{
using System;
using System.Runtime.InteropServices;
public class Program
{
static void Main(string[] args)
{
Console.WriteLine(GetTerminalServicesClientName());
}
internal static string GetTerminalServicesClientName()
{
IntPtr buffer = IntPtr.Zero;
string clientName = null;
int bytesReturned;
bool success = NativeMethods.WTSQuerySessionInformation(
NativeMethods.WTS_CURRENT_SERVER_HANDLE,
NativeMethods.WTS_CURRENT_SESSION,
NativeMethods.WTS_INFO_CLASS.WTSClientName,
out buffer,
out bytesReturned);
if (success)
{
clientName = Marshal.PtrToStringUni(
buffer,
bytesReturned / 2
);
NativeMethods.WTSFreeMemory(buffer);
}
return clientName;
}
}
public static class NativeMethods
{
public static readonly IntPtr WTS_CURRENT_SERVER_HANDLE = IntPtr.Zero;
public const int WTS_CURRENT_SESSION = -1;
public enum WTS_INFO_CLASS
{
WTSClientName = 10
}
[DllImport("Wtsapi32.dll", CharSet = CharSet.Unicode)]
public static extern bool WTSQuerySessionInformation(
IntPtr hServer,
Int32 sessionId,
WTS_INFO_CLASS wtsInfoClass,
out IntPtr ppBuffer,
out Int32 pBytesReturned);
[DllImport("wtsapi32.dll", ExactSpelling = true, SetLastError = false)]
public static extern void WTSFreeMemory(IntPtr memory);
}
}
source
share