CSPspEmu.Hle.Formats.IsoLoader.GetIso C# (CSharp) Method

GetIso() public static method

public static GetIso ( string IsoFile ) : IsoFile
IsoFile string
return IsoFile
        public static IsoFile GetIso(string IsoFile)
        {
            var IsoFileStream = (Stream)File.OpenRead(IsoFile);
            FormatDetector.SubType DetectedFormat;

            switch (DetectedFormat = new FormatDetector().DetectSubType(IsoFileStream))
            {
                case FormatDetector.SubType.Cso:
                    IsoFileStream = new CompressedIsoProxyStream(new Cso(IsoFileStream));
                    break;
                case FormatDetector.SubType.Dax:
                    IsoFileStream = new CompressedIsoProxyStream(new Dax(IsoFileStream));
                    break;
                case FormatDetector.SubType.Iso:
                    break;
                default:
                    throw (new InvalidDataException(String.Format("Can't set an ISO for '{0}' path '{1}'", DetectedFormat, IsoFile)));
            }

            return new IsoFile(IsoFileStream, IsoFile);
        }
IsoLoader