12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace DiskAccessLibrary.LogicalDiskManager
- {
- public class DynamicDiskExtent : DiskExtent
- {
- private ulong m_extentID;
- public string Name;
- public Guid DiskGuid;
- public DynamicDiskExtent(Disk disk, long firstSector, long size, ulong extentID) : base(disk, firstSector, size)
- {
- m_extentID = extentID;
- }
- public DynamicDiskExtent(DiskExtent diskExtent, ulong extentID) : base(diskExtent.Disk, diskExtent.FirstSector, diskExtent.Size)
- {
- m_extentID = extentID;
- }
- public ulong ExtentID
- {
- get
- {
- return m_extentID;
- }
- }
- }
- }
|