diff options
Diffstat (limited to 'src/wixext/Tuples/IIsWebLogTuple.cs')
| -rw-r--r-- | src/wixext/Tuples/IIsWebLogTuple.cs | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/wixext/Tuples/IIsWebLogTuple.cs b/src/wixext/Tuples/IIsWebLogTuple.cs index ec912ac5..409dc673 100644 --- a/src/wixext/Tuples/IIsWebLogTuple.cs +++ b/src/wixext/Tuples/IIsWebLogTuple.cs | |||
| @@ -3,45 +3,45 @@ | |||
| 3 | namespace WixToolset.Iis | 3 | namespace WixToolset.Iis |
| 4 | { | 4 | { |
| 5 | using WixToolset.Data; | 5 | using WixToolset.Data; |
| 6 | using WixToolset.Iis.Tuples; | 6 | using WixToolset.Iis.Symbols; |
| 7 | 7 | ||
| 8 | public static partial class IisTupleDefinitions | 8 | public static partial class IisSymbolDefinitions |
| 9 | { | 9 | { |
| 10 | public static readonly IntermediateTupleDefinition IIsWebLog = new IntermediateTupleDefinition( | 10 | public static readonly IntermediateSymbolDefinition IIsWebLog = new IntermediateSymbolDefinition( |
| 11 | IisTupleDefinitionType.IIsWebLog.ToString(), | 11 | IisSymbolDefinitionType.IIsWebLog.ToString(), |
| 12 | new[] | 12 | new[] |
| 13 | { | 13 | { |
| 14 | new IntermediateFieldDefinition(nameof(IIsWebLogTupleFields.Format), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(IIsWebLogSymbolFields.Format), IntermediateFieldType.String), |
| 15 | }, | 15 | }, |
| 16 | typeof(IIsWebLogTuple)); | 16 | typeof(IIsWebLogSymbol)); |
| 17 | } | 17 | } |
| 18 | } | 18 | } |
| 19 | 19 | ||
| 20 | namespace WixToolset.Iis.Tuples | 20 | namespace WixToolset.Iis.Symbols |
| 21 | { | 21 | { |
| 22 | using WixToolset.Data; | 22 | using WixToolset.Data; |
| 23 | 23 | ||
| 24 | public enum IIsWebLogTupleFields | 24 | public enum IIsWebLogSymbolFields |
| 25 | { | 25 | { |
| 26 | Format, | 26 | Format, |
| 27 | } | 27 | } |
| 28 | 28 | ||
| 29 | public class IIsWebLogTuple : IntermediateTuple | 29 | public class IIsWebLogSymbol : IntermediateSymbol |
| 30 | { | 30 | { |
| 31 | public IIsWebLogTuple() : base(IisTupleDefinitions.IIsWebLog, null, null) | 31 | public IIsWebLogSymbol() : base(IisSymbolDefinitions.IIsWebLog, null, null) |
| 32 | { | 32 | { |
| 33 | } | 33 | } |
| 34 | 34 | ||
| 35 | public IIsWebLogTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(IisTupleDefinitions.IIsWebLog, sourceLineNumber, id) | 35 | public IIsWebLogSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(IisSymbolDefinitions.IIsWebLog, sourceLineNumber, id) |
| 36 | { | 36 | { |
| 37 | } | 37 | } |
| 38 | 38 | ||
| 39 | public IntermediateField this[IIsWebLogTupleFields index] => this.Fields[(int)index]; | 39 | public IntermediateField this[IIsWebLogSymbolFields index] => this.Fields[(int)index]; |
| 40 | 40 | ||
| 41 | public string Format | 41 | public string Format |
| 42 | { | 42 | { |
| 43 | get => this.Fields[(int)IIsWebLogTupleFields.Format].AsString(); | 43 | get => this.Fields[(int)IIsWebLogSymbolFields.Format].AsString(); |
| 44 | set => this.Set((int)IIsWebLogTupleFields.Format, value); | 44 | set => this.Set((int)IIsWebLogSymbolFields.Format, value); |
| 45 | } | 45 | } |
| 46 | } | 46 | } |
| 47 | } \ No newline at end of file | 47 | } \ No newline at end of file |
