1 write to IsAsync
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\Microsoft\Win32\SafeHandles\SafeFileHandle.Unix.cs (1)
354
IsAsync
= (options & FileOptions.Asynchronous) != 0;
4 references to IsAsync
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\IO\FileStream.cs (3)
91
if (isAsync && !handle.
IsAsync
)
95
else if (!isAsync && handle.
IsAsync
)
110
_strategy = FileStreamHelpers.ChooseStrategy(this, handle, access, bufferSize, handle.
IsAsync
);
src\libraries\System.Private.CoreLib\src\System\IO\Strategies\OSFileStreamStrategy.cs (1)
69
internal override bool IsAsync => _fileHandle.
IsAsync
;