[USB] Add UsbDeviceStrings class
[platform/core/csapi/usb.git] / Tizen.System.Usb / Usb / UsbDevice.cs
index c625825..3e18f9c 100644 (file)
@@ -131,6 +131,18 @@ namespace Tizen.System.Usb
         }
 
         /// <summary>
+        /// String associated with device.
+        /// </summary>
+        public UsbDeviceStrings Strings
+        {
+            get
+            {
+                ThrowIfDisposed();
+                return new UsbDeviceStrings(this, "us-ascii");
+            }
+        }
+
+        /// <summary>
         /// Opens device, which allows performing operations on it.
         /// </summary>
         /// <exception cref="OutOfMemoryException">Throws exception in case of insufficient memory.</exception>