DOCUMENTATION: Added XML documentation to DiscImageChef.Server.

This commit is contained in:
2017-12-23 02:57:47 +00:00
parent c3a3caf4e2
commit b106e5d9af
13 changed files with 67 additions and 0 deletions

View File

@@ -38,6 +38,12 @@ namespace DiscImageChef.Server.App_Start
{
public static class ScsiEvpd
{
/// <summary>
/// Takes the SCSI EVPD part of a device report and prints it as a list key=value pairs to be sequenced by ASP.NET in the rendering
/// </summary>
/// <param name="pages">EVPD pages</param>
/// <param name="vendor">SCSI vendor string</param>
/// <param name="evpdPages">List to put the key=value pairs on</param>
public static void Report(pageType[] pages, string vendor, ref Dictionary<string, string> evpdPages)
{
foreach(pageType evpd in pages)