/// <summary>
 /// Initializes a new instance of the <see cref="LogicalVolume" /> class.
 /// </summary>
 /// <param name="deviceRootNode">deviceRootNode.</param>
 /// <param name="groupName">Specifies the group name of the logical volume..</param>
 /// <param name="groupUuid">Specifies the group uuid of the logical volume..</param>
 /// <param name="name">Specifies the name of the logical volume..</param>
 /// <param name="uuid">Specifies the uuid of the logical volume..</param>
 public LogicalVolume(DeviceTreeDetails deviceRootNode = default(DeviceTreeDetails), string groupName = default(string), string groupUuid = default(string), string name = default(string), string uuid = default(string))
 {
     this.GroupName      = groupName;
     this.GroupUuid      = groupUuid;
     this.Name           = name;
     this.Uuid           = uuid;
     this.DeviceRootNode = deviceRootNode;
     this.GroupName      = groupName;
     this.GroupUuid      = groupUuid;
     this.Name           = name;
     this.Uuid           = uuid;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DeviceNode" /> class.
 /// </summary>
 /// <param name="intermediateNode">intermediateNode.</param>
 /// <param name="leafNode">leafNode.</param>
 public DeviceNode(DeviceTreeDetails intermediateNode = default(DeviceTreeDetails), FilePartitionBlock leafNode = default(FilePartitionBlock))
 {
     this.IntermediateNode = intermediateNode;
     this.LeafNode         = leafNode;
 }