blob: 7b196b3e656f8b8482ca8e6b72d8fa29a717db12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixToolset.Dtf.WindowsInstaller
{
using System;
using System.Diagnostics.CodeAnalysis;
/// <summary>
/// Represents a media disk source of a product or a patch.
/// </summary>
[SuppressMessage("Microsoft.Performance", "CA1815:OverrideEqualsAndOperatorEqualsOnValueTypes")]
public struct MediaDisk
{
private int diskId;
private string volumeLabel;
private string diskPrompt;
/// <summary>
/// Creates a new media disk.
/// </summary>
/// <param name="diskId"></param>
/// <param name="volumeLabel"></param>
/// <param name="diskPrompt"></param>
public MediaDisk(int diskId, string volumeLabel, string diskPrompt)
{
this.diskId = diskId;
this.volumeLabel = volumeLabel;
this.diskPrompt = diskPrompt;
}
/// <summary>
/// Gets or sets the disk id of the media disk.
/// </summary>
public int DiskId
{
get { return this.diskId; }
set { this.diskId = value; }
}
/// <summary>
/// Gets or sets the volume label of the media disk.
/// </summary>
public string VolumeLabel
{
get { return this.volumeLabel; }
set { this.volumeLabel = value; }
}
/// <summary>
/// Gets or sets the disk prompt of the media disk.
/// </summary>
public string DiskPrompt
{
get { return this.diskPrompt; }
set { this.diskPrompt = value; }
}
}
}
|