Move optical disc exclusive methods to new interfaces.

This commit is contained in:
2019-01-20 20:11:10 +00:00
parent 287d761dff
commit 640c57b87a
144 changed files with 869 additions and 2708 deletions

View File

@@ -32,8 +32,6 @@
using System;
using System.Collections.Generic;
using DiscImageChef.CommonTypes;
using DiscImageChef.CommonTypes.Exceptions;
using DiscImageChef.CommonTypes.Structs;
using Schemas;
@@ -43,20 +41,10 @@ namespace DiscImageChef.DiscImages
{
public ImageInfo Info => imageInfo;
public string Name => "Microsoft VHDX";
public Guid Id => new Guid("536B141B-D09C-4799-AB70-34631286EB9D");
public string Author => "Natalia Portillo";
public string Format => "VHDX";
public List<Partition> Partitions =>
throw new FeatureUnsupportedImageException("Feature not supported by image format");
public List<Track> Tracks =>
throw new FeatureUnsupportedImageException("Feature not supported by image format");
public List<Session> Sessions =>
throw new FeatureUnsupportedImageException("Feature not supported by image format");
public string Name => "Microsoft VHDX";
public Guid Id => new Guid("536B141B-D09C-4799-AB70-34631286EB9D");
public string Author => "Natalia Portillo";
public string Format => "VHDX";
public List<DumpHardwareType> DumpHardware => null;
public CICMMetadataType CicmMetadata => null;
}