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