Base:
property
CanWrite
System.IO.Stream.CanWrite
2 overrides of CanWrite
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\IO\UnmanagedMemoryStreamWrapper.cs (1)
25public override bool CanWrite => _unmanagedStream.CanWrite;
WindowsBase.Tests (1)
System\IO\Packaging\EncryptedPackageEnvelopeTests.cs (1)
56public override bool CanWrite => false;
4 references to CanWrite
Microsoft.AspNetCore.Mvc.Core.Test (1)
Formatters\JsonOutputFormatterTestBase.cs (1)
106Assert.True(body.CanWrite, "Response body should not be disposed.");
Microsoft.AspNetCore.Mvc.NewtonsoftJson.Test (1)
src\Mvc\Mvc.Core\test\Formatters\JsonOutputFormatterTestBase.cs (1)
106Assert.True(body.CanWrite, "Response body should not be disposed.");
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\IO\MemoryStream.cs (1)
113if (!CanWrite)
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\MemoryStreamAdapter.cs (1)
111adapter.Writable = memoryStream.CanWrite;