Browse Source

DeviceInfo: Added DeviceName property

Tal Aloni 8 years ago
parent
commit
25cfd0431b
1 changed files with 18 additions and 0 deletions
  1. 18 0
      DiskAccessLibrary/Win32/Utilities/DeviceInterfaceUtils.cs

+ 18 - 0
DiskAccessLibrary/Win32/Utilities/DeviceInterfaceUtils.cs

@@ -54,6 +54,24 @@ namespace DiskAccessLibrary
         public string DevicePath;
         public string DeviceDescription;
         public string FriendlyName;
+
+        /// <summary>
+        /// Device manager shows the friendly name if it exists and the device description otherwise.
+        /// </summary>
+        public string DeviceName
+        {
+            get
+            {
+                if (!String.IsNullOrEmpty(FriendlyName))
+                {
+                    return FriendlyName;
+                }
+                else
+                {
+                    return DeviceDescription;
+                }
+            }
+        }
     }
 
     public class DeviceInterfaceUtils // SetupDi functions