2024-01-29 15:37:19 +01:00
|
|
|
|
using System.Management;
|
2024-01-20 20:02:05 +01:00
|
|
|
|
using System.Runtime.Versioning;
|
2024-01-29 15:37:19 +01:00
|
|
|
|
using CShocker.Devices.Abstract;
|
2024-01-20 20:02:05 +01:00
|
|
|
|
using Microsoft.Win32;
|
2024-01-17 04:11:30 +01:00
|
|
|
|
|
2024-01-29 15:37:19 +01:00
|
|
|
|
namespace CShocker.Devices.Additional;
|
2024-01-17 04:11:30 +01:00
|
|
|
|
|
2024-01-29 15:37:19 +01:00
|
|
|
|
public static class SerialHelper
|
2024-01-17 04:11:30 +01:00
|
|
|
|
{
|
2024-01-20 20:02:05 +01:00
|
|
|
|
[SupportedOSPlatform("windows")]
|
|
|
|
|
public static List<SerialPortInfo> GetSerialPorts()
|
|
|
|
|
{
|
|
|
|
|
List<SerialPortInfo> ret = new();
|
|
|
|
|
using (ManagementClass entity = new("Win32_PnPEntity"))
|
|
|
|
|
{
|
|
|
|
|
// ReSharper disable once InconsistentNaming
|
|
|
|
|
const string CUR_CTRL = "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\";
|
|
|
|
|
|
|
|
|
|
foreach (ManagementObject instance in entity.GetInstances())
|
|
|
|
|
{
|
|
|
|
|
object oGuid;
|
|
|
|
|
oGuid = instance.GetPropertyValue("ClassGuid");
|
|
|
|
|
if (oGuid == null || oGuid.ToString()?.ToUpper().Equals("{4D36E978-E325-11CE-BFC1-08002BE10318}") is false)
|
|
|
|
|
continue; // Skip all devices except device class "PORTS"
|
|
|
|
|
|
|
|
|
|
string? caption = instance.GetPropertyValue("Caption")?.ToString();
|
|
|
|
|
string? manufacturer = instance.GetPropertyValue("Manufacturer")?.ToString();
|
|
|
|
|
string? deviceID = instance.GetPropertyValue("PnpDeviceID")?.ToString();
|
|
|
|
|
string regEnum = CUR_CTRL + "Enum\\" + deviceID + "\\Device Parameters";
|
|
|
|
|
string? portName = Registry.GetValue(regEnum, "PortName", "")?.ToString();
|
|
|
|
|
|
2024-01-20 20:04:10 +01:00
|
|
|
|
int? s32Pos = caption?.IndexOf(" (COM");
|
|
|
|
|
if (s32Pos > 0) // remove COM port from description
|
|
|
|
|
caption = caption?.Substring(0, (int)s32Pos);
|
2024-01-20 20:02:05 +01:00
|
|
|
|
|
|
|
|
|
ret.Add(new SerialPortInfo(
|
|
|
|
|
portName,
|
|
|
|
|
caption,
|
|
|
|
|
manufacturer,
|
|
|
|
|
deviceID));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-17 04:11:30 +01:00
|
|
|
|
}
|