mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-04-11 17:57:19 +10:00
24 lines
656 B
C#
24 lines
656 B
C#
using System.IO;
|
|
using System.Runtime.InteropServices;
|
|
namespace PriFileFormat
|
|
{
|
|
public class UnknownSection: Section
|
|
{
|
|
public byte [] SectionContent { get; private set; }
|
|
internal UnknownSection (string sectionIdentifier, PriFile priFile) : base (sectionIdentifier, priFile) {}
|
|
protected override bool ParseSectionContent (BinaryReader binaryReader)
|
|
{
|
|
int contentLength = (int)(binaryReader.BaseStream.Length - binaryReader.BaseStream.Position);
|
|
|
|
SectionContent = binaryReader.ReadBytes (contentLength);
|
|
|
|
return true;
|
|
}
|
|
public void ClearContent ()
|
|
{
|
|
SectionContent = null;
|
|
}
|
|
~UnknownSection () { ClearContent (); }
|
|
}
|
|
}
|