diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs | 82 |
1 files changed, 41 insertions, 41 deletions
diff --git a/src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs b/src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs index faf9069e..92ca4059 100644 --- a/src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs +++ b/src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs | |||
| @@ -2,32 +2,32 @@ | |||
| 2 | 2 | ||
| 3 | namespace WixToolset.Data | 3 | namespace WixToolset.Data |
| 4 | { | 4 | { |
| 5 | using WixToolset.Data.Tuples; | 5 | using WixToolset.Data.Symbols; |
| 6 | 6 | ||
| 7 | public static partial class TupleDefinitions | 7 | public static partial class SymbolDefinitions |
| 8 | { | 8 | { |
| 9 | public static readonly IntermediateTupleDefinition MsiServiceConfigFailureActions = new IntermediateTupleDefinition( | 9 | public static readonly IntermediateSymbolDefinition MsiServiceConfigFailureActions = new IntermediateSymbolDefinition( |
| 10 | TupleDefinitionType.MsiServiceConfigFailureActions, | 10 | SymbolDefinitionType.MsiServiceConfigFailureActions, |
| 11 | new[] | 11 | new[] |
| 12 | { | 12 | { |
| 13 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.Name), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsSymbolFields.Name), IntermediateFieldType.String), |
| 14 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.OnInstall), IntermediateFieldType.Bool), | 14 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsSymbolFields.OnInstall), IntermediateFieldType.Bool), |
| 15 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.OnReinstall), IntermediateFieldType.Bool), | 15 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsSymbolFields.OnReinstall), IntermediateFieldType.Bool), |
| 16 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.OnUninstall), IntermediateFieldType.Bool), | 16 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsSymbolFields.OnUninstall), IntermediateFieldType.Bool), |
| 17 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.ResetPeriod), IntermediateFieldType.Number), | 17 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsSymbolFields.ResetPeriod), IntermediateFieldType.Number), |
| 18 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.RebootMessage), IntermediateFieldType.String), | 18 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsSymbolFields.RebootMessage), IntermediateFieldType.String), |
| 19 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.Command), IntermediateFieldType.String), | 19 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsSymbolFields.Command), IntermediateFieldType.String), |
| 20 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.Actions), IntermediateFieldType.String), | 20 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsSymbolFields.Actions), IntermediateFieldType.String), |
| 21 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.DelayActions), IntermediateFieldType.String), | 21 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsSymbolFields.DelayActions), IntermediateFieldType.String), |
| 22 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.ComponentRef), IntermediateFieldType.String), | 22 | new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsSymbolFields.ComponentRef), IntermediateFieldType.String), |
| 23 | }, | 23 | }, |
| 24 | typeof(MsiServiceConfigFailureActionsTuple)); | 24 | typeof(MsiServiceConfigFailureActionsSymbol)); |
| 25 | } | 25 | } |
| 26 | } | 26 | } |
| 27 | 27 | ||
| 28 | namespace WixToolset.Data.Tuples | 28 | namespace WixToolset.Data.Symbols |
| 29 | { | 29 | { |
| 30 | public enum MsiServiceConfigFailureActionsTupleFields | 30 | public enum MsiServiceConfigFailureActionsSymbolFields |
| 31 | { | 31 | { |
| 32 | Name, | 32 | Name, |
| 33 | OnInstall, | 33 | OnInstall, |
| @@ -41,76 +41,76 @@ namespace WixToolset.Data.Tuples | |||
| 41 | ComponentRef, | 41 | ComponentRef, |
| 42 | } | 42 | } |
| 43 | 43 | ||
| 44 | public class MsiServiceConfigFailureActionsTuple : IntermediateTuple | 44 | public class MsiServiceConfigFailureActionsSymbol : IntermediateSymbol |
| 45 | { | 45 | { |
| 46 | public MsiServiceConfigFailureActionsTuple() : base(TupleDefinitions.MsiServiceConfigFailureActions, null, null) | 46 | public MsiServiceConfigFailureActionsSymbol() : base(SymbolDefinitions.MsiServiceConfigFailureActions, null, null) |
| 47 | { | 47 | { |
| 48 | } | 48 | } |
| 49 | 49 | ||
| 50 | public MsiServiceConfigFailureActionsTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(TupleDefinitions.MsiServiceConfigFailureActions, sourceLineNumber, id) | 50 | public MsiServiceConfigFailureActionsSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(SymbolDefinitions.MsiServiceConfigFailureActions, sourceLineNumber, id) |
| 51 | { | 51 | { |
| 52 | } | 52 | } |
| 53 | 53 | ||
| 54 | public IntermediateField this[MsiServiceConfigFailureActionsTupleFields index] => this.Fields[(int)index]; | 54 | public IntermediateField this[MsiServiceConfigFailureActionsSymbolFields index] => this.Fields[(int)index]; |
| 55 | 55 | ||
| 56 | public string Name | 56 | public string Name |
| 57 | { | 57 | { |
| 58 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.Name]; | 58 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsSymbolFields.Name]; |
| 59 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.Name, value); | 59 | set => this.Set((int)MsiServiceConfigFailureActionsSymbolFields.Name, value); |
| 60 | } | 60 | } |
| 61 | 61 | ||
| 62 | public bool OnInstall | 62 | public bool OnInstall |
| 63 | { | 63 | { |
| 64 | get => this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.OnInstall].AsBool(); | 64 | get => this.Fields[(int)MsiServiceConfigFailureActionsSymbolFields.OnInstall].AsBool(); |
| 65 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.OnInstall, value); | 65 | set => this.Set((int)MsiServiceConfigFailureActionsSymbolFields.OnInstall, value); |
| 66 | } | 66 | } |
| 67 | 67 | ||
| 68 | public bool OnReinstall | 68 | public bool OnReinstall |
| 69 | { | 69 | { |
| 70 | get => this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.OnReinstall].AsBool(); | 70 | get => this.Fields[(int)MsiServiceConfigFailureActionsSymbolFields.OnReinstall].AsBool(); |
| 71 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.OnReinstall, value); | 71 | set => this.Set((int)MsiServiceConfigFailureActionsSymbolFields.OnReinstall, value); |
| 72 | } | 72 | } |
| 73 | 73 | ||
| 74 | public bool OnUninstall | 74 | public bool OnUninstall |
| 75 | { | 75 | { |
| 76 | get => this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.OnUninstall].AsBool(); | 76 | get => this.Fields[(int)MsiServiceConfigFailureActionsSymbolFields.OnUninstall].AsBool(); |
| 77 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.OnUninstall, value); | 77 | set => this.Set((int)MsiServiceConfigFailureActionsSymbolFields.OnUninstall, value); |
| 78 | } | 78 | } |
| 79 | 79 | ||
| 80 | public int? ResetPeriod | 80 | public int? ResetPeriod |
| 81 | { | 81 | { |
| 82 | get => (int?)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.ResetPeriod]; | 82 | get => (int?)this.Fields[(int)MsiServiceConfigFailureActionsSymbolFields.ResetPeriod]; |
| 83 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.ResetPeriod, value); | 83 | set => this.Set((int)MsiServiceConfigFailureActionsSymbolFields.ResetPeriod, value); |
| 84 | } | 84 | } |
| 85 | 85 | ||
| 86 | public string RebootMessage | 86 | public string RebootMessage |
| 87 | { | 87 | { |
| 88 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.RebootMessage]; | 88 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsSymbolFields.RebootMessage]; |
| 89 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.RebootMessage, value); | 89 | set => this.Set((int)MsiServiceConfigFailureActionsSymbolFields.RebootMessage, value); |
| 90 | } | 90 | } |
| 91 | 91 | ||
| 92 | public string Command | 92 | public string Command |
| 93 | { | 93 | { |
| 94 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.Command]; | 94 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsSymbolFields.Command]; |
| 95 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.Command, value); | 95 | set => this.Set((int)MsiServiceConfigFailureActionsSymbolFields.Command, value); |
| 96 | } | 96 | } |
| 97 | 97 | ||
| 98 | public string Actions | 98 | public string Actions |
| 99 | { | 99 | { |
| 100 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.Actions]; | 100 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsSymbolFields.Actions]; |
| 101 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.Actions, value); | 101 | set => this.Set((int)MsiServiceConfigFailureActionsSymbolFields.Actions, value); |
| 102 | } | 102 | } |
| 103 | 103 | ||
| 104 | public string DelayActions | 104 | public string DelayActions |
| 105 | { | 105 | { |
| 106 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.DelayActions]; | 106 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsSymbolFields.DelayActions]; |
| 107 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.DelayActions, value); | 107 | set => this.Set((int)MsiServiceConfigFailureActionsSymbolFields.DelayActions, value); |
| 108 | } | 108 | } |
| 109 | 109 | ||
| 110 | public string ComponentRef | 110 | public string ComponentRef |
| 111 | { | 111 | { |
| 112 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.ComponentRef]; | 112 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsSymbolFields.ComponentRef]; |
| 113 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.ComponentRef, value); | 113 | set => this.Set((int)MsiServiceConfigFailureActionsSymbolFields.ComponentRef, value); |
| 114 | } | 114 | } |
| 115 | } | 115 | } |
| 116 | } \ No newline at end of file | 116 | } \ No newline at end of file |
