PlatformID 列挙型
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
アセンブリでサポートされるオペレーティング システム (プラットフォーム) を識別します。
public enum class PlatformID
public enum PlatformID
[System.Serializable]
public enum PlatformID
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public enum PlatformID
type PlatformID =
[<System.Serializable>]
type PlatformID =
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type PlatformID =
Public Enum PlatformID
- 継承
- 属性
フィールド
MacOSX | 6 | オペレーティング システムは Macintosh です。 この値は Silverlight から返されました。 その .NET Core での置き換えは |
Other | 7 | その他のオペレーティング システム。 これには Browser (WASM) が含まれます。 |
Unix | 4 | オペレーティング システムは Unix です。 |
Win32NT | 2 | オペレーティング システムは Windows NT 以降です。 |
Win32S | 0 | オペレーティング システムは Win32s です。 この値は使用できなくなりました。 |
Win32Windows | 1 | オペレーティング システムは Windows 95 または Windows 98 です。 この値は使用できなくなりました。 |
WinCE | 3 | オペレーティング システムは Windows CE です。 この値は使用できなくなりました。 |
Xbox | 5 | 開発プラットフォームは、Xbox 360 です。 この値は使用できなくなりました。 |
例
次の例は、クラスを PlatformID
使用して現在実行中のオペレーティング システムを識別する方法を示しています。
// This example demonstrates the PlatformID enumeration.
using namespace System;
int main()
{
String^ msg1 = L"This is a Windows operating system.";
String^ msg2 = L"This is a Unix operating system.";
String^ msg3 = L"ERROR: This platform identifier is invalid.";
// Assume this example is run on a Windows operating system.
OperatingSystem^ os = Environment::OSVersion;
PlatformID pid = os->Platform;
switch ( pid )
{
case PlatformID::Win32NT:
case PlatformID::Win32S:
case PlatformID::Win32Windows:
case PlatformID::WinCE:
Console::WriteLine( msg1 );
break;
case PlatformID::Unix:
Console::WriteLine( msg2 );
break;
default:
Console::WriteLine( msg3 );
break;
}
return 1;
}
/*
This example produces the following results:
This is a Windows operating system.
*/
// This example demonstrates the PlatformID enumeration.
using System;
class Sample
{
public static void Main()
{
string msg1 = "This is a Windows operating system.";
string msg2 = "This is a Unix operating system.";
string msg3 = "ERROR: This platform identifier is invalid.";
// Assume this example is run on a Windows operating system.
OperatingSystem os = Environment.OSVersion;
PlatformID pid = os.Platform;
switch (pid)
{
case PlatformID.Win32NT:
case PlatformID.Win32S:
case PlatformID.Win32Windows:
case PlatformID.WinCE:
Console.WriteLine(msg1);
break;
case PlatformID.Unix:
Console.WriteLine(msg2);
break;
default:
Console.WriteLine(msg3);
break;
}
}
}
/*
This example produces the following results:
This is a Windows operating system.
*/
// This example demonstrates the PlatformID enumeration.
open System
let msg1 = "This is a Windows operating system."
let msg2 = "This is a Unix operating system."
let msg3 = "ERROR: This platform identifier is invalid."
// Assume this example is run on a Windows operating system.
let os = Environment.OSVersion
let pid = os.Platform
match pid with
| PlatformID.Win32NT
| PlatformID.Win32S
| PlatformID.Win32Windows
| PlatformID.WinCE ->
printfn $"{msg1}"
| PlatformID.Unix ->
printfn $"{msg2}"
| _ ->
printfn $"{msg3}"
// This example produces the following results:
// This is a Windows operating system.
' This example demonstrates the PlatformID enumeration.
Class Sample
Public Shared Sub Main()
Dim msg1 As String = "This is a Windows operating system."
Dim msg2 As String = "This is a Unix operating system."
Dim msg3 As String = "ERROR: This platform identifier is invalid."
' Assume this example is run on a Windows operating system.
Dim os As OperatingSystem = Environment.OSVersion
Dim pid As PlatformID = os.Platform
Select Case pid
Case PlatformID.Win32NT, PlatformID.Win32S, _
PlatformID.Win32Windows, PlatformID.WinCE
Console.WriteLine(msg1)
Case PlatformID.Unix
Console.WriteLine(msg2)
Case Else
Console.WriteLine(msg3)
End Select
End Sub
End Class
'
'This example produces the following results:
'
'This is a Windows operating system.
'
注釈
プロパティをEnvironment.OSVersionOperatingSystem.Platform使用して、現在実行中のPlatformID
オペレーティング システムまたは開発プラットフォームの列挙体を取得します。 列挙を PlatformID
使用して、現在のオペレーティング システムまたは開発プラットフォームがアプリケーションをサポートしているかどうかを判断します。
SignTool.exe (Sign Tool) ユーティリティの引数としてPlatformId
、各PlatformID
列挙メンバーの基になる整数値を使用できます。