@using DiscImageChef.Decoders.SecureDigital @using DiscImageChef.Server.Core @model DiscImageChef.CommonTypes.Metadata.MmcSd @{ Layout = "~/Areas/Admin/Views/Shared/_Layout.cshtml"; ViewBag.Title = "DiscImageChef"; } @{ // /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // // Filename : Delete.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 // ****************************************************************************/ }

Are you sure you want to delete this?

MultiMediaCard / SecureDigital registers


@if (Model.SCR != null) { if (Model.CID != null) {
@Html.DisplayNameFor(model => model.CID)
@Html.Raw(Html.EncodedMultiLineText(Decoders.PrettifyCID(Model.CID)))
} if (Model.CSD != null) {
@Html.DisplayNameFor(model => model.CSD)
@Html.Raw(Html.EncodedMultiLineText(Decoders.PrettifyCSD(Model.CSD)))
} if (Model.OCR != null) {
@Html.DisplayNameFor(model => model.OCR)
@Html.Raw(Html.EncodedMultiLineText(Decoders.PrettifyOCR(Model.OCR)))
}
@Html.DisplayNameFor(model => model.SCR)
@Html.Raw(Html.EncodedMultiLineText(Decoders.PrettifySCR(Model.SCR)))
} else { if (Model.CID != null) {
@Html.DisplayNameFor(model => model.CID)
@Html.Raw(Html.EncodedMultiLineText(DiscImageChef.Decoders.MMC.Decoders.PrettifyCID(Model.CID)))
} if (Model.CSD != null) {
@Html.DisplayNameFor(model => model.CSD)
@Html.Raw(Html.EncodedMultiLineText(DiscImageChef.Decoders.MMC.Decoders.PrettifyCSD(Model.CSD)))
} if (Model.OCR != null) {
@Html.DisplayNameFor(model => model.OCR)
@Html.Raw(Html.EncodedMultiLineText(DiscImageChef.Decoders.MMC.Decoders.PrettifyOCR(Model.OCR)))
} if (Model.ExtendedCSD != null) {
@Html.DisplayNameFor(model => model.ExtendedCSD)
@Html.Raw(Html.EncodedMultiLineText(DiscImageChef.Decoders.MMC.Decoders.PrettifyExtendedCSD(Model.ExtendedCSD)))
} }
Back to List