次の方法で共有


Thread.GetDomainID メソッド

一意のアプリケーション ドメイン識別子を返します。

Public Shared Function GetDomainID() As Integer
[C#]
public static int GetDomainID();
[C++]
public: static int GetDomainID();
[JScript]
public static function GetDomainID() : int;

戻り値

アプリケーション ドメインを一意に識別する 32 ビット符号付き整数。

使用例

[Visual Basic, C#, C++] スレッドが実行されている AppDomain の名前と ID を取得する方法の例を次に示します。

 
Imports System
Imports System.Threading

Public Class Test

    Shared Sub Main()
        Dim newThread As New Thread(AddressOf ThreadMethod)
        newThread.Start()
    End Sub

    Shared Sub ThreadMethod()
        Console.WriteLine( _
            "Thread {0} started in {1} with AppDomainID = {2}.", _
            AppDomain.GetCurrentThreadId().ToString(), _
            Thread.GetDomain().FriendlyName, _
            Thread.GetDomainID().ToString())
    End Sub

End Class

[C#] 
using System;
using System.Threading;

class Test
{
    static void Main()
    {
        Thread newThread = new Thread(new ThreadStart(ThreadMethod));
        newThread.Start();
    }

    static void ThreadMethod()
    {
        Console.WriteLine(
            "Thread {0} started in {1} with AppDomainID = {2}.",
            AppDomain.GetCurrentThreadId().ToString(), 
            Thread.GetDomain().FriendlyName, 
            Thread.GetDomainID().ToString());
    }
}

[C++] 
#using <mscorlib.dll>
using namespace System;
using namespace System::Threading;

__gc class Test
{
    Test() {}
public:
    static void ThreadMethod()
    {
        Console::WriteLine(
            S"Thread {0} started in {1} with AppDomainID = {2}.",
            AppDomain::GetCurrentThreadId().ToString(), 
            Thread::GetDomain()->FriendlyName, 
            Thread::GetDomainID().ToString());
    }
};

void main()
{
    Thread* newThread = 
        new Thread(new ThreadStart(0, &Test::ThreadMethod));
    newThread->Start();
}

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

Thread クラス | Thread メンバ | System.Threading 名前空間