diff options
-rw-r--r-- | src/WixToolset.Data/Identifier.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/WixToolset.Data/Identifier.cs b/src/WixToolset.Data/Identifier.cs index ffb04cd7..0ef39afa 100644 --- a/src/WixToolset.Data/Identifier.cs +++ b/src/WixToolset.Data/Identifier.cs | |||
@@ -40,6 +40,12 @@ namespace WixToolset.Data | |||
40 | this.Id = String.Join("/", ids); | 40 | this.Id = String.Join("/", ids); |
41 | } | 41 | } |
42 | 42 | ||
43 | public Identifier(AccessModifier access, params object[] ids) | ||
44 | { | ||
45 | this.Access = access; | ||
46 | this.Id = String.Join("/", ids); | ||
47 | } | ||
48 | |||
43 | public Identifier(AccessModifier access, int id) | 49 | public Identifier(AccessModifier access, int id) |
44 | { | 50 | { |
45 | this.Access = access; | 51 | this.Access = access; |