PlatformID Énumération

Définition

Identifie le système d'exploitation, ou la plateforme, pris en charge par un assembly.

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
Héritage
PlatformID
Attributs

Champs

MacOSX 6

Le système d'exploitation est Macintosh. Cette valeur a été retournée par Silverlight. Sur .NET Core, son remplacement est Unix.

Other 7

Tout autre système d'exploitation. Inclut Browser (WASM).

Unix 4

Le système d'exploitation est Unix.

Win32NT 2

Le système d'exploitation est Windows NT (ou version ultérieure).

Win32S 0

Le système d'exploitation est Win32s. Cette valeur n'est plus utilisée.

Win32Windows 1

Le système d'exploitation est Windows 95 ou Windows 98. Cette valeur n'est plus utilisée.

WinCE 3

Le système d'exploitation est Windows CE. Cette valeur n'est plus utilisée.

Xbox 5

La plateforme de développement est Xbox 360. Cette valeur n'est plus utilisée.

Exemples

L’exemple suivant montre comment utiliser la PlatformID classe pour identifier le système d’exploitation en cours d’exécution :

// 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.
'

Remarques

Utilisez les propriétés et OperatingSystem.Platform les Environment.OSVersion propriétés pour obtenir l’énumération PlatformID du système d’exploitation ou de la plateforme de développement en cours d’exécution. Utilisez l’énumération PlatformID pour déterminer si le système d’exploitation actuel ou la plateforme de développement prend en charge votre application.

Vous pouvez utiliser la valeur entière sous-jacente de chaque PlatformID membre d’énumération comme PlatformId argument de l’utilitaire SignTool.exe (Outil de signature).

S’applique à