Base:
property
CanRead
System.IO.Stream.CanRead
1 override of CanRead
System.IO.IsolatedStorage (1)
System\IO\IsolatedStorage\IsolatedStorageFileStream.cs (1)
151
public override bool
CanRead
5 references to CanRead
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\schema\GenerateConverter.cs (1)
1056
if (!fs.CanSeek || !fs.
CanRead
|| !fs.CanWrite)
Microsoft.CodeAnalysis.UnitTests (1)
MetadataReferences\MetadataReferenceTests.cs (1)
101
Assert.False(stream.
CanRead
);
System.IO.IsolatedStorage (1)
System\IO\IsolatedStorage\IsolatedStorageFileStream.cs (1)
155
return _fs.
CanRead
;
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\IO\FileStream.cs (1)
554
else if (!
CanRead
)
src\libraries\System.Private.CoreLib\src\System\IO\FileStreamOptions.cs (1)
38
/// A bitwise combination of the enumeration values that determines how the file can be accessed by the <see cref="FileStream" /> object. This also determines the values returned by the <see cref="FileStream.
CanRead
" /> and <see cref="FileStream.CanWrite" /> properties of the <see cref="FileStream" /> object.