ThreadAbortException.ExceptionState プロパティ
アセンブリ: mscorlib (mscorlib.dll 内)

アプリケーション固有の情報を含むオブジェクト。

このプロパティから返されるオブジェクトは、Abort メソッドの stateInfo パラメータで指定します。このオブジェクトの正確な内容と使用法はアプリケーションで定義されます。通常、このオブジェクトは中止されるスレッドに重要な情報を伝達するために使用されます。

Imports System Imports System.Threading Public Class Test <MTAThread> _ Shared Sub Main() Dim newThread As New Thread(AddressOf TestMethod) newThread.Start() Thread.Sleep(1000) ' Abort newThread. Console.WriteLine("Main aborting new thread.") newThread.Abort("Information from Main.") ' Wait for the thread to terminate. newThread.Join() Console.WriteLine("New thread terminated - Main exiting.") End Sub Shared Sub TestMethod() Try While True Console.WriteLine("New thread running.") Thread.Sleep(1000) End While Catch abortException As ThreadAbortException Console.WriteLine( _ CType(abortException.ExceptionState, String)) End Try End Sub End Class
using System; using System.Threading; class Test { public static void Main() { Thread newThread = new Thread(new ThreadStart(TestMethod)); newThread.Start(); Thread.Sleep(1000); // Abort newThread. Console.WriteLine("Main aborting new thread."); newThread.Abort("Information from Main."); // Wait for the thread to terminate. newThread.Join(); Console.WriteLine("New thread terminated - Main exiting."); } static void TestMethod() { try { while(true) { Console.WriteLine("New thread running."); Thread.Sleep(1000); } } catch(ThreadAbortException abortException) { Console.WriteLine((string)abortException.ExceptionState); } } }
using namespace System; using namespace System::Threading; ref class Test { private: Test(){} public: static void TestMethod() { try { while ( true ) { Console::WriteLine( "New thread running." ); Thread::Sleep( 1000 ); } } catch ( ThreadAbortException^ abortException ) { Console::WriteLine( dynamic_cast<String^>(abortException->ExceptionState) ); } } }; int main() { Thread^ newThread = gcnew Thread( gcnew ThreadStart( &Test::TestMethod ) ); newThread->Start(); Thread::Sleep( 1000 ); // Abort newThread. Console::WriteLine( "Main aborting new thread." ); newThread->Abort( "Information from main." ); // Wait for the thread to terminate. newThread->Join(); Console::WriteLine( "New thread terminated - main exiting." ); }
import System.*; import System.Threading.*; import System.Threading.Thread; class Test { public static void main(String[] args) { Thread newThread = new Thread(new ThreadStart(TestMethod)); newThread.Start(); Thread.Sleep(1000); // Abort newThread. Console.WriteLine("Main aborting new thread."); newThread.Abort("Information from Main."); // Wait for the thread to terminate. newThread.Join(); Console.WriteLine("New thread terminated - Main exiting."); } //main static void TestMethod() { try { while (true) { Console.WriteLine("New thread running."); Thread.Sleep(1000); } } catch (ThreadAbortException abortException) { Console.WriteLine((System.String)(abortException. get_ExceptionState())); } } //TestMethod } //Test

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からThreadAbortException.ExceptionState プロパティを検索する場合は、下記のリンクをクリックしてください。

- ThreadAbortException.ExceptionState プロパティのページへのリンク