OperatingSystem.ServicePack Özellik

Tanım

Bu OperatingSystem nesne tarafından temsil edilen hizmet paketi sürümünü alır.

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

Özellik Değeri

String

Hizmet paketleri destekleniyorsa ve en az biri yüklüyse hizmet paketi sürümü; aksi takdirde, boş bir dize ("").

Örnekler

Aşağıdaki kod örneği özelliğini gösterir ServicePack .

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

Açıklamalar

Hizmet paketi, yüklü olduğu işletim sistemi için yazılım güncelleştirmelerini dağıtmak için kullanılır. Ancak, her işletim sistemi hizmet paketlerini kullanmaz.

Varsa hizmet paketi sürümü görüntülenmek üzere zaten doğru biçimlendirilmiştir.

Şunlara uygulanır

Ayrıca bkz.