Skip to content

Commit ae9d5c5

Browse files
committed
Make InvokePerFileProgress public
Change method visibility of InvokePerFileProgress from internal to public so callers outside the assembly can invoke the per-file progress callback.
1 parent 39e4155 commit ae9d5c5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

SharedStatic.V1Ext_Update5.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public partial class SharedStaticV1Ext
2424
/// </summary>
2525
/// <param name="perFileDownloadedBytes">Bytes downloaded for the current file.</param>
2626
/// <param name="perFileTotalBytes">Total size of the current file.</param>
27-
internal static unsafe void InvokePerFileProgress(long perFileDownloadedBytes, long perFileTotalBytes)
27+
public static unsafe void InvokePerFileProgress(long perFileDownloadedBytes, long perFileTotalBytes)
2828
{
2929
var callback = PerFileProgressCallback;
3030
if (callback == null)

0 commit comments

Comments
 (0)