🎨REFACTOR: Rename some methods and fields in IMediaImage interface.

This commit is contained in:
2017-12-28 19:56:36 +00:00
parent b0bcda2e43
commit feecb2f70a
139 changed files with 325 additions and 325 deletions

View File

@@ -154,7 +154,7 @@ namespace DiscImageChef.DiscImages
public string Name => "Sydex TeleDisk";
public Guid Id => new Guid("0240B7B1-E959-4CDC-B0BD-386D6E467B88");
public string ImageFormat => "Sydex TeleDisk";
public string Format => "Sydex TeleDisk";
public List<Partition> Partitions =>
throw new FeatureUnsupportedImageException("Feature not supported by image format");
@@ -165,7 +165,7 @@ namespace DiscImageChef.DiscImages
public List<Session> Sessions =>
throw new FeatureUnsupportedImageException("Feature not supported by image format");
public bool IdentifyImage(IFilter imageFilter)
public bool Identify(IFilter imageFilter)
{
header = new TeleDiskHeader();
byte[] headerBytes = new byte[12];
@@ -221,7 +221,7 @@ namespace DiscImageChef.DiscImages
header.DriveType == DRIVE_TYPE_8_INCH;
}
public bool OpenImage(IFilter imageFilter)
public bool Open(IFilter imageFilter)
{
header = new TeleDiskHeader();
byte[] headerBytes = new byte[12];