Windows error 0x80131530, -2146233040

Detailed Error Information

COR_E_THREADABORTED[1]

Message"Thread has aborted."
Comment Thrown into a thread to cause it to abort. Not catchable.

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 Code5424 (0x1530)

Questions

1vote
1answer

AppDomain.Unload throws ThreadAbortException exception

Having public class ObjFromOtherAppDomain : MarshalByRefObject { public async void Do(MarshalableCompletionSource<bool> source) { await Task.Delay(1000); source.SetResult(true); } } public class MarshalableCompletionSource<T> : MarshalByRefObject { private readonly TaskCompletionSource<T> tsc = new TaskCompletionSource<T>(); public void SetResult(T result) => tsc.SetResult(result); public void SetException(Exception[] exception) => tsc.SetException(exception); public void SetCanceled() => tsc.SetCanceled(); public Task<T> [...] read more
c#
multithreading
async-await
appdomain
0votes
0answers

SSRS cannot save/upload report to Report Server

I have a 10mb Report that I am trying to upload to my SQL Report Server. When I would save it, I ran into the maxRequest Length exceeded error. So I edited the web.config file and changed the httpRuntime line to the following: httpRuntime executionTimeout="9000" maxRequestLength="1048576" requestValidationMode="2.0" Now I am [...] read more
sql
sql-server
reporting-services
ssrs-2016
0votes
1answer

system.threading .threadAbortException error

I am taking over an existing website and I am trying to get the application running on my machine, however I can't launch the application because I get the following error. System.Threading.ThreadAbortException occurred HResult=0x80131530 Message=Thread was being aborted. Source=mscorlib StackTrace: at System.Threading.Thread.AbortInternal() at System.Threading.Thread.Abort(Object stateInfo) This is my code protected [...] read more
threadabortexception
thread-exceptions
0votes
1answer

Sudden failure in DNN development environment

I've been working on a mixed desktop-and-web based solution for quite some time now. My local development environment was using VS2013-Pro, a recent DNN version (7.3, I think), Webmatrix 3, IIS Express 8.0, and SQL Server 2014 running on Windows 7 on Parallels on my Mac. Everything is up-to-date, all [...] read more
dotnetnuke
webmatrix-3

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