Code cleanup

This commit is contained in:
Ajay Bhargav Baaskaran 2015-01-15 18:34:38 -08:00
parent d43cf30eff
commit 26860ad7de
1 changed files with 2 additions and 1 deletions

View File

@ -12,7 +12,8 @@ namespace Microsoft.AspNet.Http
/// </summary>
public static class FormFileExtensions
{
private static int DefaultBufferSize = 81920;
// Stream.CopyTo method uses 80KB as the default buffer size.
private static int DefaultBufferSize = 80 * 1024;
/// <summary>
/// Saves the contents of an uploaded file.