@@ -75,7 +75,7 @@ public class TarArchive : IDisposable
75
75
/// <summary>
76
76
/// Raises the ProgressMessage event
77
77
/// </summary>
78
- /// <param name="entry">TarEntry for this event</param>
78
+ /// <param name="entry">The <see cref=" TarEntry">TarEntry</see> for this event</param>
79
79
/// <param name="message">message for this event. Null is no message</param>
80
80
protected virtual void OnProgressMessageEvent ( TarEntry entry , string message )
81
81
{
@@ -126,6 +126,8 @@ protected TarArchive(TarOutputStream stream)
126
126
/// these constructors when you wish to extract files from or list
127
127
/// the contents of an existing tar archive.
128
128
/// </summary>
129
+ /// <param name="inputStream">The stream to retrieve archive data from.</param>
130
+ /// <returns>Returns a new <see cref="TarArchive"/> suitable for reading from.</returns>
129
131
public static TarArchive CreateInputTarArchive ( Stream inputStream )
130
132
{
131
133
if ( inputStream == null ) {
@@ -140,9 +142,7 @@ public static TarArchive CreateInputTarArchive(Stream inputStream)
140
142
/// </summary>
141
143
/// <param name="inputStream">Stream for tar archive contents</param>
142
144
/// <param name="blockFactor">The blocking factor to apply</param>
143
- /// <returns>
144
- /// TarArchive
145
- /// </returns>
145
+ /// <returns>Returns a <see cref="TarArchive"/> suitable for reading.</returns>
146
146
public static TarArchive CreateInputTarArchive ( Stream inputStream , int blockFactor )
147
147
{
148
148
if ( inputStream == null ) {
@@ -155,7 +155,8 @@ public static TarArchive CreateInputTarArchive(Stream inputStream, int blockFact
155
155
/// <summary>
156
156
/// Create a TarArchive for writing to, using the default blocking factor
157
157
/// </summary>
158
- /// <param name="outputStream">Stream to write to</param>
158
+ /// <param name="outputStream">The <see cref="Stream"/> to write to</param>
159
+ /// <returns>Returns a <see cref="TarArchive"/> suitable for writing.</returns>
159
160
public static TarArchive CreateOutputTarArchive ( Stream outputStream )
160
161
{
161
162
if ( outputStream == null ) {
@@ -170,6 +171,7 @@ public static TarArchive CreateOutputTarArchive(Stream outputStream)
170
171
/// </summary>
171
172
/// <param name="outputStream">The stream to write to</param>
172
173
/// <param name="blockFactor">The blocking factor to use for buffering.</param>
174
+ /// <returns>Returns a <see cref="TarArchive"/> suitable for writing.</returns>
173
175
public static TarArchive CreateOutputTarArchive ( Stream outputStream , int blockFactor )
174
176
{
175
177
if ( outputStream == null ) {
0 commit comments