Windows error 0x80070323, -2147024093 Detailed Error Information OPLOCK_HANDLE_CLOSED[1] Message The handle with which this oplock was associated has been closed. The oplock is now broken. Declared in winerror.h
HRESULT analysis[2] Flags Severity Failure Reserved (R) false Origin Microsoft NTSTATUS false Reserved (X) false Facility Code 7 (0x007) Name FACILITY_WIN32 [2] [1] Description This region is reserved to map undecorated error codes into HRESULTs.[2] [1] Error Code 803 (0x0323)
This is a Win32 error which has been mapped into an HRESULT. More information may be available in error 0x00000323 .
Questions I am getting the following exception when attempting to read a locl text file using var text = await FileIO.ReadTextAsync(file); > The handle with which this oplock was associated has been closed. The oplock > is now broken. (Exception from HRESULT: 0x80070323) This happens in one of the regression unit [...]
read more Here's my function (based on this: https://msdn.microsoft.com/en-us/library/windows/apps/xaml/dn632427.aspx): private async void ComposeEmail(String subject, String messageBody, String attachmentFile) { var msg = new EmailMessage(); msg.Subject = subject; msg.Body = messageBody; msg.To.Add(new EmailRecipient("example@example.com")); if (attachmentFile != null && attachmentFile != "") { bool exists = File.Exists(attachmentFile); Debug.WriteLine("File: " + attachmentFile + (exists ? [...]
read more Comments Leave a comment Sources winerror.h from Windows SDK 10.0.14393.0 https://msdn.microsoft.com/en-us/library/cc231198.aspx User contributions licensed under CC BY-SA 3.0