aboutsummaryrefslogtreecommitdiff
path: root/SocketHttpListener.Portable/Net/ResponseStream.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-03-20 13:56:44 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-03-20 13:56:44 -0400
commitf1b1458ee8b94a5c75ed009581f5e9cb22ba70b7 (patch)
treedd689fd9b7e37231e84f34ed764bf2dcc94b9c02 /SocketHttpListener.Portable/Net/ResponseStream.cs
parent5b3b18b51dec8421d3ffc8c00874e22b026586b6 (diff)
3.2.8.6
Diffstat (limited to 'SocketHttpListener.Portable/Net/ResponseStream.cs')
-rw-r--r--SocketHttpListener.Portable/Net/ResponseStream.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/SocketHttpListener.Portable/Net/ResponseStream.cs b/SocketHttpListener.Portable/Net/ResponseStream.cs
index 19821f954..3c79f47c2 100644
--- a/SocketHttpListener.Portable/Net/ResponseStream.cs
+++ b/SocketHttpListener.Portable/Net/ResponseStream.cs
@@ -363,7 +363,7 @@ namespace SocketHttpListener.Net
}
}
- private async Task CopyToInternalAsync(Stream source, Stream destination, long copyLength, CancellationToken cancellationToken)
+ private static async Task CopyToInternalAsync(Stream source, Stream destination, long copyLength, CancellationToken cancellationToken)
{
var array = new byte[81920];
int count;