/// <summary>
 /// Initializes a new instance of the NtfsFileSystemChecker class.
 /// </summary>
 /// <param name="diskData">The file system to check</param>
 public NtfsFileSystemChecker(Stream diskData)
 {
     SnapshotStream protectiveStream = new SnapshotStream(diskData, Ownership.None);
     protectiveStream.Snapshot();
     protectiveStream.Freeze();
     _target = protectiveStream;
 }
 /// <summary>
 /// Initializes a new instance of the NtfsFileSystemChecker class.
 /// </summary>
 /// <param name="diskData">The file system to check.</param>
 public NtfsFileSystemChecker(Stream diskData)
 {
     SnapshotStream protectiveStream = new SnapshotStream(diskData, Ownership.None);
     protectiveStream.Snapshot();
     protectiveStream.Freeze();
     _target = protectiveStream;
 }