OperatingSystem.ServicePack Vlastnost

Definice

Získá verzi aktualizace Service Pack reprezentovanou tímto OperatingSystem objektem.

public:
 property System::String ^ ServicePack { System::String ^ get(); };
public string ServicePack { get; }
member this.ServicePack : string
Public ReadOnly Property ServicePack As String

Hodnota vlastnosti

String

Verze aktualizace Service Pack, pokud jsou podporované aktualizace Service Pack a alespoň jedna je nainstalovaná; jinak prázdný řetězec ("").

Příklady

Následující příklad kódu ukazuje ServicePack vlastnost.

// This example demonstrates the OperatingSystem.ServicePack property.
using namespace System;
int main()
{
   OperatingSystem^ os = Environment::OSVersion;
   String^ sp = os->ServicePack;
   Console::WriteLine( "Service pack version = \"{0}\"", sp );
}

/*
This example produces the following results:

Service pack version = "Service Pack 1"

*/
// This example demonstrates the OperatingSystem.ServicePack property.
using System;

class Sample
{
    public static void Main()
    {
    OperatingSystem os = Environment.OSVersion;
    String sp = os.ServicePack;
    Console.WriteLine("Service pack version = \"{0}\"", sp);
    }
}
/*
This example produces the following results:

Service pack version = "Service Pack 1"

*/
// This example demonstrates the OperatingSystem.ServicePack property.
open System

let os = Environment.OSVersion
let sp = os.ServicePack
printfn $"Service pack version = \"{sp}\""
// This example produces the following results:
//     Service pack version = "Service Pack 1"
' This example demonstrates the OperatingSystem.ServicePack property.
Class Sample
   Public Shared Sub Main()
      Dim os As OperatingSystem = Environment.OSVersion
      Console.WriteLine("Service pack version = ""{0}""", os.ServicePack)
   End Sub
End Class
'
'This example produces the following results:
'
'Service pack version = "Service Pack 1"
'

Poznámky

Aktualizace Service Pack slouží k distribuci aktualizací softwaru pro operační systém, na kterém je nainstalován. Ale ne každý operační systém používá aktualizace Service Pack.

Verze aktualizace Service Pack, pokud je k dispozici, je již správně naformátovaná pro zobrazení.

Platí pro

Viz také