@using System.Text @model IEnumerable @{ Layout = "~/Areas/Admin/Views/Shared/_Layout.cshtml"; ViewBag.Title = "DiscImageChef"; } @{ // /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // // Filename : Index.cshtml // Author(s) : Natalia Portillo // // Component : DiscImageChef Server. // // --[ License ] -------------------------------------------------------------- // // This library is free software; you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation; either version 2.1 of the // License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, see . // // ---------------------------------------------------------------------------- // Copyright © 2011-2019 Natalia Portillo // ****************************************************************************/ } ATA IDENTIFY DEVICE responses with possible private data @if (!Model.Any()) {
No private data found. Back to list
return; }
Clear private fields for all Clear reserved fields for all Back to list
@foreach (var item in Model) { }
@Html.DisplayNameFor(model => model.Id) @Html.DisplayNameFor(model => model.IdentifyDevice.Value.Model) @Html.DisplayNameFor(model => model.IdentifyDevice.Value.SerialNumber) @Html.DisplayNameFor(model => model.IdentifyDevice.Value.WWN) @Html.DisplayNameFor(model => model.IdentifyDevice.Value.WWNExtension) @Html.DisplayNameFor(model => model.IdentifyDevice.Value.MediaSerial) @Html.DisplayNameFor(model => model.IdentifyDevice.Value.ReservedWords121) @Html.DisplayNameFor(model => model.IdentifyDevice.Value.ReservedWords129) @Html.DisplayNameFor(model => model.IdentifyDevice.Value.ReservedCFA) @Html.DisplayNameFor(model => model.IdentifyDevice.Value.ReservedCEATA224) @Html.DisplayNameFor(model => model.IdentifyDevice.Value.ReservedWords)
@Html.DisplayFor(modelItem => item.Id) @Html.DisplayFor(modelItem => item.IdentifyDevice.Value.Model) @Html.DisplayFor(modelItem => item.IdentifyDevice.Value.SerialNumber) @Html.DisplayFor(modelItem => item.IdentifyDevice.Value.WWN) @Html.DisplayFor(modelItem => item.IdentifyDevice.Value.WWNExtension) @Html.DisplayFor(modelItem => item.IdentifyDevice.Value.MediaSerial) @Html.Encode(Encoding.ASCII.GetString(item.Identify, 121 * 2, 10).Replace("\0", "")) @Html.Encode(Encoding.ASCII.GetString(item.Identify, 129 * 2, 62).Replace("\0", "")) @Html.Encode(Encoding.ASCII.GetString(item.Identify, 161 * 2, 14).Replace("\0", "")) @Html.Encode(Encoding.ASCII.GetString(item.Identify, 224 * 2, 12).Replace("\0", "")) @Html.Encode(Encoding.ASCII.GetString(item.Identify, 236 * 2, 38).Replace("\0", "")) Clear private fields Clear reserved fields