3 writes to IsAsync
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\Microsoft\Win32\SafeHandles\SafeFileHandle.Unix.cs (3)
217
tempReadHandle.
IsAsync
= asyncRead;
220
tempWriteHandle.
IsAsync
= asyncWrite;
411
IsAsync
= false; // Unix does not support O_NONBLOCK for regular files.
6 references to IsAsync
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\IO\FileStream.cs (3)
51
_strategy = FileStreamHelpers.ChooseStrategy(this, safeHandle, access, bufferSize, safeHandle.
IsAsync
);
96
_strategy = FileStreamHelpers.ChooseStrategy(this, handle, access, bufferSize, handle.
IsAsync
);
103
_strategy = FileStreamHelpers.ChooseStrategy(this, handle, access, bufferSize, handle.
IsAsync
);
src\libraries\System.Private.CoreLib\src\System\IO\RandomAccess.Unix.cs (2)
33
if (handle.
IsAsync
)
115
if (handle.
IsAsync
)
src\libraries\System.Private.CoreLib\src\System\IO\Strategies\OSFileStreamStrategy.cs (1)
69
internal override bool IsAsync => _fileHandle.
IsAsync
;