BasicWorkItem Constructor (Boolean) |
Allowing to abort is disabled per default since thread aborting results in
unstable system state, see http://msdn.microsoft.com/en-us/magazine/cc163644.aspx :
[..] "I'll caution you against using Thread.Abort to control the lifetime of a thread,
especially if you have little knowledge about the implementation of the code you're
aborting. An abort inside of a critical region could spell disaster for an entire
AppDomain, and while a polite abort does signficantly reduce the window of disaster
to very tiny slivers, that one time out of 1,000 could lead to a deadlock or resource
leak or worse."
Namespace:
Jam.Shell
Assembly:
ShellBrowser.Core (in ShellBrowser.Core.dll) Version: 7.1
Syntax protected BasicWorkItem(
bool allowAbortUponExceedingTimeLimit
)
Protected Sub New (
allowAbortUponExceedingTimeLimit As Boolean
)
protected:
BasicWorkItem(
bool allowAbortUponExceedingTimeLimit
)
new :
allowAbortUponExceedingTimeLimit : bool -> BasicWorkItem
Parameters
- allowAbortUponExceedingTimeLimit
- Type: SystemBoolean
If true, the thread is aborted via
Abort if the MaxBusyTime is exceeded.
See Also