[Usb]Remove XML warnings 18/155418/2
authorpr.jung <pr.jung@samsung.com>
Fri, 13 Oct 2017 06:22:16 +0000 (15:22 +0900)
committerHyotaek Shim <hyotaek.shim@samsung.com>
Fri, 13 Oct 2017 06:37:45 +0000 (06:37 +0000)
Change-Id: Ibcd1577a007a9f4386236a7e93c2d59f80200ca2
Signed-off-by: pr.jung <pr.jung@samsung.com>
src/Tizen.System.Usb/Usb/UsbConfiguration.cs
src/Tizen.System.Usb/Usb/UsbDevice.cs [changed mode: 0755->0644]

index ba9abfb..9ef8c98 100644 (file)
@@ -128,6 +128,9 @@ namespace Tizen.System.Usb
         #region IDisposable Support
         private bool disposedValue = false;
 
+        /// <summary>
+        /// Releases all resources used by the ConnectionProfile.
+        /// It should be called after finished using of the object.</summary>
         protected virtual void Dispose(bool disposing)
         {
             if (!disposedValue)
@@ -137,11 +140,17 @@ namespace Tizen.System.Usb
             }
         }
 
+        /// <summary>
+        /// Finalizes an instance of the UsbConfiguration class.
+        /// </summary>
         ~UsbConfiguration()
         {
             Dispose(false);
         }
 
+        /// <summary>
+        /// Releases all resources used by the ConnectionProfile.
+        /// It should be called after finished using of the object.</summary>
         public void Dispose()
         {
             Dispose(true);
old mode 100755 (executable)
new mode 100644 (file)
index f6e37d3..8f8fe4a
@@ -189,6 +189,9 @@ namespace Tizen.System.Usb
         #region IDisposable Support
         private bool disposedValue = false;
 
+        /// <summary>
+        /// Releases all resources used by the ConnectionProfile.
+        /// It should be called after finished using of the object.</summary>
         protected virtual void Dispose(bool disposing)
         {
             if (!disposedValue)
@@ -206,11 +209,17 @@ namespace Tizen.System.Usb
             }
         }
 
-         ~UsbDevice()
+        /// <summary>
+        /// Finalizes an instance of the UsbDevice class.
+        /// </summary>
+        ~UsbDevice()
         {
             Dispose(false);
         }
 
+        /// <summary>
+        /// Releases all resources used by the ConnectionProfile.
+        /// It should be called after finished using of the object.</summary>
         public void Dispose()
         {
             Dispose(true);