diff options
Diffstat (limited to 'src/WixToolset.Data/WixOutput.cs')
-rw-r--r-- | src/WixToolset.Data/WixOutput.cs | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/WixToolset.Data/WixOutput.cs b/src/WixToolset.Data/WixOutput.cs index 969de991..43359f24 100644 --- a/src/WixToolset.Data/WixOutput.cs +++ b/src/WixToolset.Data/WixOutput.cs | |||
@@ -24,6 +24,9 @@ namespace WixToolset.Data | |||
24 | this.stream = stream; | 24 | this.stream = stream; |
25 | } | 25 | } |
26 | 26 | ||
27 | /// <summary> | ||
28 | /// | ||
29 | /// </summary> | ||
27 | public Uri Uri { get; } | 30 | public Uri Uri { get; } |
28 | 31 | ||
29 | /// <summary> | 32 | /// <summary> |
@@ -60,8 +63,8 @@ namespace WixToolset.Data | |||
60 | /// <summary> | 63 | /// <summary> |
61 | /// Creates a new file structure. | 64 | /// Creates a new file structure. |
62 | /// </summary> | 65 | /// </summary> |
66 | /// <param name="uri"></param> | ||
63 | /// <param name="stream">Stream to write the file structure to.</param> | 67 | /// <param name="stream">Stream to write the file structure to.</param> |
64 | /// <param name="embedFilePaths">Paths to files to embedd in the file structure.</param> | ||
65 | /// <returns>Newly created <c>WixOutput</c>.</returns> | 68 | /// <returns>Newly created <c>WixOutput</c>.</returns> |
66 | public static WixOutput Create(Uri uri, Stream stream) | 69 | public static WixOutput Create(Uri uri, Stream stream) |
67 | { | 70 | { |
@@ -109,9 +112,11 @@ namespace WixToolset.Data | |||
109 | } | 112 | } |
110 | 113 | ||
111 | /// <summary> | 114 | /// <summary> |
112 | /// Loads a wixout from a assembly resource stream. | 115 | /// Loads a wixout from an assembly resource stream. |
113 | /// </summary> | 116 | /// </summary> |
114 | /// <param name="path">Path to wixout file saved on disk.</param> | 117 | /// <param name="assembly"></param> |
118 | /// <param name="resourceName"></param> | ||
119 | /// <returns>Loaded created <c>WixOutput</c>.</returns> | ||
115 | public static WixOutput Read(Assembly assembly, string resourceName) | 120 | public static WixOutput Read(Assembly assembly, string resourceName) |
116 | { | 121 | { |
117 | var resourceStream = assembly.GetManifestResourceStream(resourceName); | 122 | var resourceStream = assembly.GetManifestResourceStream(resourceName); |
@@ -128,6 +133,7 @@ namespace WixToolset.Data | |||
128 | /// <summary> | 133 | /// <summary> |
129 | /// Reads a file structure from an open stream. | 134 | /// Reads a file structure from an open stream. |
130 | /// </summary> | 135 | /// </summary> |
136 | /// <param name="uri"></param> | ||
131 | /// <param name="stream">Stream to read from.</param> | 137 | /// <param name="stream">Stream to read from.</param> |
132 | /// <returns>Loaded created <c>WixOutput</c>.</returns> | 138 | /// <returns>Loaded created <c>WixOutput</c>.</returns> |
133 | public static WixOutput Read(Uri uri, Stream stream) | 139 | public static WixOutput Read(Uri uri, Stream stream) |