3 overrides of Unlock
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\Strategies\BufferedFileStreamStrategy.cs (1)
947internal override void Unlock(long position, long length) => _strategy.Unlock(position, length);
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\Strategies\DerivedFileStreamStrategy.cs (1)
58internal override void Unlock(long position, long length) => _strategy.Unlock(position, length);
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\Strategies\OSFileStreamStrategy.cs (1)
177internal sealed override void Unlock(long position, long length) => FileStreamHelpers.Unlock(_fileHandle, position, length);
3 references to Unlock
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\FileStream.cs (1)
247_strategy.Unlock(position, length);
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\Strategies\BufferedFileStreamStrategy.cs (1)
947internal override void Unlock(long position, long length) => _strategy.Unlock(position, length);
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\Strategies\DerivedFileStreamStrategy.cs (1)
58internal override void Unlock(long position, long length) => _strategy.Unlock(position, length);