Base:
property
CanSeek
System.IO.Stream.CanSeek
1 override of CanSeek
mscorlib (1)
system\io\isolatedstorage\isolatedstoragefilestream.cs (1)
307public override bool CanSeek {
18 references to CanSeek
mscorlib (15)
system\activationcontext.cs (1)
452if (fs.CanSeek)
system\io\filestream.cs (13)
1178if (!CanSeek) __Error.SeekNotSupported(); 1225if (!CanSeek) __Error.SeekNotSupported(); 1341else if (_readPos < _readLen && CanSeek) 1363Contract.Assert(CanSeek, "FileStream will lose buffered read data now."); 1450if (!CanSeek) __Error.SeekNotSupported(); 1519if (!CanSeek || (count >= _bufferSize)) { 1614if (!CanSeek) __Error.SeekNotSupported(); 1691Contract.Assert(!_handle.IsClosed && CanSeek, "!_handle.IsClosed && CanSeek"); 1730if (!CanSeek) 2030if (CanSeek) { 2091if (!_handle.IsClosed && CanSeek) // Update Position - It could be anywhere. 2284if (CanSeek) { 2348if (!_handle.IsClosed && CanSeek) // Update Position - It could be anywhere.
system\io\isolatedstorage\isolatedstoragefilestream.cs (1)
310return m_fs.CanSeek;
System (2)
net\System\Net\webclient.cs (2)
641if (fs.CanSeek) 654if (fs.CanSeek)
System.Data (1)
fx\src\data\System\Data\SQLTypes\SQLFileStream.cs (1)
203return m_fs.CanSeek;