Windows error 0x80070323, -2147024093

Detailed Error Information

OPLOCK_HANDLE_CLOSED[1]

MessageThe handle with which this oplock was associated has been closed. The oplock is now broken.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode7 (0x007)
NameFACILITY_WIN32[2][1]
DescriptionThis region is reserved to map undecorated error codes into HRESULTs.[2][1]
Error Code803 (0x0323)

This is a Win32 error which has been mapped into an HRESULT. More information may be available in error 0x00000323.

Questions

12votes
1answer

Exception when reading text from the file using FileIO.ReadTextAsync

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
c#
windows-runtime
windows-store-apps
0votes
1answer

Compose Email with attachment on Windows Phone 8.1 Silverlight application

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
c#
silverlight
windows-phone-8.1

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0