6 references to True
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\Microsoft\Win32\SafeHandles\SafeFileHandle.Unix.cs (6)
67
_supportsRandomAccess = supportsRandomAccess = GetCanSeek() ? NullableBool.
True
: NullableBool.False;
70
return supportsRandomAccess == NullableBool.
True
;
75
_supportsRandomAccess = value ? NullableBool.
True
: NullableBool.False;
346
_canSeek = NullableBool.
True
;
521
_canSeek = canSeek = Interop.Sys.LSeek(this, 0, Interop.Sys.SeekWhence.SEEK_CUR) >= 0 ? NullableBool.
True
: NullableBool.False;
524
return canSeek == NullableBool.
True
;