Windows error 0x8013153B, -2146233029

Detailed Error Information

COR_E_OPERATIONCANCELED[1]

Message"The operation was cancelled."
Comment The operation was cancelled.

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode19 (0x013)
NameFACILITY_URT[2][3]
DescriptionThe source of the error code is .NET CLR.[2][3]
Error Code5435 (0x153b)

Questions

3votes
1answer

Getting TaskCancelledException after migrating a WPF app to dotnet Core 3

After migrating a WPF application to dotnet core 3 I am getting a TaskCancelledException in Visual Studio debugger every time the application is closing. This behavior was not seen using .NetFramework. The application follows MVVM pattern and does some async CRUD operations, is there any chance I can see where [...] read more
c#
wpf
exception
.net-core
0votes
0answers

Typed http client throws socket exception if to use it along with Task.WhenAll()

I have typed Http client with Polly configured. This is my Program.cs: serviceCollection.AddSingleton<IPolicyBuilder, PolicyBuilder>(); serviceCollection .AddHttpClient<ICustomHttpClient, CustomHttpClient>() .AddPolicyHandler((serviceProvider, httpRequestMessage) => { var policyBuilder = serviceProvider.GetRequiredService<IPolicyBuilder>(); return policyBuilder.BuildGenericPolicy(); }); My typed client: public class CustomHttpClient: ICustomHttpClient { private readonly HttpClient _httpClient; public NotificationsApiHttpClient(HttpClient httpClient) { _httpClient = httpClient ?? throw new [...] read more
c#
performance
.net-core
dotnet-httpclient

Comments

Leave a comment

(plain text only)

Sources

  1. https://github.com/dotnet/coreclr/blob/v1.1.0/src/inc/corerror.xml
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx
  3. winerror.h from Windows SDK 10.0.14393.0

User contributions licensed under CC BY-SA 3.0