How to kill all running threads in Silverlight? -
how kill running threads in silverlight?
you can't, abort method of thread object marked security critical , can't called in silverlight code.
if want kill running of own code use backgroundworker class run code , place reasonable checks in code cancellationpending being set. other code can call cancelasync terminate it.
Comments
Post a Comment