diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Data/Tuples/ControlEventTuple.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/WixToolset.Data/Tuples/ControlEventTuple.cs b/src/WixToolset.Data/Tuples/ControlEventTuple.cs index b44cd19e..6486673b 100644 --- a/src/WixToolset.Data/Tuples/ControlEventTuple.cs +++ b/src/WixToolset.Data/Tuples/ControlEventTuple.cs | |||
@@ -47,37 +47,37 @@ namespace WixToolset.Data.Tuples | |||
47 | 47 | ||
48 | public string Dialog_ | 48 | public string Dialog_ |
49 | { | 49 | { |
50 | get => (string)this.Fields[(int)ControlEventTupleFields.Dialog_]?.Value; | 50 | get => (string)this.Fields[(int)ControlEventTupleFields.Dialog_]; |
51 | set => this.Set((int)ControlEventTupleFields.Dialog_, value); | 51 | set => this.Set((int)ControlEventTupleFields.Dialog_, value); |
52 | } | 52 | } |
53 | 53 | ||
54 | public string Control_ | 54 | public string Control_ |
55 | { | 55 | { |
56 | get => (string)this.Fields[(int)ControlEventTupleFields.Control_]?.Value; | 56 | get => (string)this.Fields[(int)ControlEventTupleFields.Control_]; |
57 | set => this.Set((int)ControlEventTupleFields.Control_, value); | 57 | set => this.Set((int)ControlEventTupleFields.Control_, value); |
58 | } | 58 | } |
59 | 59 | ||
60 | public string Event | 60 | public string Event |
61 | { | 61 | { |
62 | get => (string)this.Fields[(int)ControlEventTupleFields.Event]?.Value; | 62 | get => (string)this.Fields[(int)ControlEventTupleFields.Event]; |
63 | set => this.Set((int)ControlEventTupleFields.Event, value); | 63 | set => this.Set((int)ControlEventTupleFields.Event, value); |
64 | } | 64 | } |
65 | 65 | ||
66 | public string Argument | 66 | public string Argument |
67 | { | 67 | { |
68 | get => (string)this.Fields[(int)ControlEventTupleFields.Argument]?.Value; | 68 | get => (string)this.Fields[(int)ControlEventTupleFields.Argument]; |
69 | set => this.Set((int)ControlEventTupleFields.Argument, value); | 69 | set => this.Set((int)ControlEventTupleFields.Argument, value); |
70 | } | 70 | } |
71 | 71 | ||
72 | public string Condition | 72 | public string Condition |
73 | { | 73 | { |
74 | get => (string)this.Fields[(int)ControlEventTupleFields.Condition]?.Value; | 74 | get => (string)this.Fields[(int)ControlEventTupleFields.Condition]; |
75 | set => this.Set((int)ControlEventTupleFields.Condition, value); | 75 | set => this.Set((int)ControlEventTupleFields.Condition, value); |
76 | } | 76 | } |
77 | 77 | ||
78 | public int Ordering | 78 | public int Ordering |
79 | { | 79 | { |
80 | get => (int)this.Fields[(int)ControlEventTupleFields.Ordering]?.Value; | 80 | get => (int)this.Fields[(int)ControlEventTupleFields.Ordering]; |
81 | set => this.Set((int)ControlEventTupleFields.Ordering, value); | 81 | set => this.Set((int)ControlEventTupleFields.Ordering, value); |
82 | } | 82 | } |
83 | } | 83 | } |