diff options
Diffstat (limited to 'src/api')
| -rw-r--r-- | src/api/wix/WixToolset.Data/Symbols/WixFileSearchSymbol.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/api/wix/WixToolset.Data/Symbols/WixFileSearchSymbol.cs b/src/api/wix/WixToolset.Data/Symbols/WixFileSearchSymbol.cs index 4f8a370e..9c8e0843 100644 --- a/src/api/wix/WixToolset.Data/Symbols/WixFileSearchSymbol.cs +++ b/src/api/wix/WixToolset.Data/Symbols/WixFileSearchSymbol.cs | |||
| @@ -54,6 +54,7 @@ namespace WixToolset.Data.Symbols | |||
| 54 | MaxSizeInclusive = 0x010, | 54 | MaxSizeInclusive = 0x010, |
| 55 | MinDateInclusive = 0x020, | 55 | MinDateInclusive = 0x020, |
| 56 | MaxDateInclusive = 0x040, | 56 | MaxDateInclusive = 0x040, |
| 57 | DisableFileRedirection = 0x080, | ||
| 57 | } | 58 | } |
| 58 | 59 | ||
| 59 | public enum WixFileSearchType | 60 | public enum WixFileSearchType |
| @@ -246,5 +247,21 @@ namespace WixToolset.Data.Symbols | |||
| 246 | } | 247 | } |
| 247 | } | 248 | } |
| 248 | } | 249 | } |
| 250 | |||
| 251 | public bool DisableFileRedirection | ||
| 252 | { | ||
| 253 | get { return this.Attributes.HasFlag(WixFileSearchAttributes.DisableFileRedirection); } | ||
| 254 | set | ||
| 255 | { | ||
| 256 | if (value) | ||
| 257 | { | ||
| 258 | this.Attributes |= WixFileSearchAttributes.DisableFileRedirection; | ||
| 259 | } | ||
| 260 | else | ||
| 261 | { | ||
| 262 | this.Attributes &= ~WixFileSearchAttributes.DisableFileRedirection; | ||
| 263 | } | ||
| 264 | } | ||
| 265 | } | ||
| 249 | } | 266 | } |
| 250 | } | 267 | } |
