Use the correct disposed object name (#13871)
The name of the disposed object should be FileBufferingWriteStream instead of FileBufferingReadStream
This commit is contained in:
parent
96f1c92caa
commit
67555a020b
|
|
@ -238,7 +238,7 @@ namespace Microsoft.AspNetCore.WebUtilities
|
|||
{
|
||||
if (Disposed)
|
||||
{
|
||||
throw new ObjectDisposedException(nameof(FileBufferingReadStream));
|
||||
throw new ObjectDisposedException(nameof(FileBufferingWriteStream));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue