aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.SystemInfo
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-03-22 00:04:44 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-03-22 00:04:44 +0200
commitd48b2d23515d06a21ad241380986bf8f31773195 (patch)
treeebbb6b2bc874773ec58a4c999a1f6eb61a572592 /Software/Visual_Studio/Tango.SystemInfo
parent8c094ceeaa538fdb5dc1d69b6ac73f8574cecb66 (diff)
downloadTango-d48b2d23515d06a21ad241380986bf8f31773195.tar.gz
Tango-d48b2d23515d06a21ad241380986bf8f31773195.zip
Implemented WebRtcTransportAdapter.
Implemented FileSystem via WebRTC. Improved FileSystemControl keyboard control. Implemented FileSystemControl context menu. Improved Transported custom request handler registration. Implemented FS copy/move/delete. Implemented InputBox.
Diffstat (limited to 'Software/Visual_Studio/Tango.SystemInfo')
-rw-r--r--Software/Visual_Studio/Tango.SystemInfo/WMIReader.cs8
1 files changed, 6 insertions, 2 deletions
diff --git a/Software/Visual_Studio/Tango.SystemInfo/WMIReader.cs b/Software/Visual_Studio/Tango.SystemInfo/WMIReader.cs
index d7d909089..2d8c95aae 100644
--- a/Software/Visual_Studio/Tango.SystemInfo/WMIReader.cs
+++ b/Software/Visual_Studio/Tango.SystemInfo/WMIReader.cs
@@ -2,6 +2,7 @@ using System;
using System.Collections.Generic;
using System.Text;
using System.Management;
+using System.Diagnostics;
namespace Tango.SystemInfo
{
@@ -45,13 +46,16 @@ namespace Tango.SystemInfo
Value = item[property].ToString()
});
}
- catch (SystemException) { /* ignore error */ }
+ catch (SystemException)
+ {
+ //Debug.WriteLine($"System Exception on {className}, {property}");
+ }
}
}
}
catch (ManagementException e)
{
- /* Do Nothing */
+ //Debug.WriteLine($"Management Exception on {className}");
}
return hardwareList;