mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
DOCUMENTATION: Added XML documentation to DiscImageChef.Core.
This commit is contained in:
@@ -39,8 +39,15 @@ using DiscImageChef.Metadata;
|
||||
|
||||
namespace DiscImageChef.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Handles connections to DiscImageChef.Server
|
||||
/// </summary>
|
||||
public static class Remote
|
||||
{
|
||||
/// <summary>
|
||||
/// Submits a device report
|
||||
/// </summary>
|
||||
/// <param name="report">Device report</param>
|
||||
public static void SubmitReport(DeviceReport report)
|
||||
{
|
||||
Thread submitThread = new Thread(() =>
|
||||
@@ -50,7 +57,7 @@ namespace DiscImageChef.Core
|
||||
#if DEBUG
|
||||
System.Console.WriteLine("Uploading device report");
|
||||
#else
|
||||
DicConsole.DebugWriteLine("Submit stats", "Uploading device report");
|
||||
DiscImageChef.Console.DicConsole.DebugWriteLine("Submit stats", "Uploading device report");
|
||||
#endif
|
||||
|
||||
MemoryStream xmlStream = new MemoryStream();
|
||||
|
||||
Reference in New Issue
Block a user