Enum AsyncIOResult
Represents possible outcomes of an asynchronous I/O operation
public enum AsyncIOResult
Fields
Canceled = 2The asynchronous I/O operation was canceled before completing
Complete = 0The asynchronous I/O operation completed successfully
Failure = 1The asynchronous I/O operation failed (check TryGet(out string?) for more information)