FileVersionInfo.IsPatched Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Dosyanın değiştirilip değiştirilmediğini ve aynı sürüm numarasının özgün sevkiyat dosyasıyla aynı olmadığını belirten bir değer alır.
public:
property bool IsPatched { bool get(); };
public bool IsPatched { get; }
member this.IsPatched : bool
Public ReadOnly Property IsPatched As Boolean
Özellik Değeri
true
dosyaya düzeltme eki eklendiğinde; aksi takdirde , false
.
Örnekler
Aşağıdaki örnek, Not Defteri için öğesini FileVersionInfo almak için çağrısı GetVersionInfo yapar. Ardından boole IsPatched değerinin durumunu bir metin kutusunda görüntüler. Bu kod örneği başlatıldığını varsayar textBox1
.
private:
void GetIsPatched()
{
// Get the file version for the notepad.
FileVersionInfo^ myFileVersionInfo =
FileVersionInfo::GetVersionInfo( Environment::SystemDirectory + "\\Notepad.exe" );
// Print whether the file has a patch installed.
textBox1->Text = String::Concat( "File has patch installed: ", myFileVersionInfo->IsPatched );
}
private void GetIsPatched()
{
// Get the file version for the notepad.
FileVersionInfo myFileVersionInfo =
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe");
// Print whether the file has a patch installed.
textBox1.Text = "File has patch installed: " + myFileVersionInfo.IsPatched;
}
Private Sub GetIsPatched()
' Get the file version for the notepad.
Dim myFileVersionInfo As FileVersionInfo = _
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
' Print whether the file has a patch installed.
textBox1.Text = "File has patch installed: " & myFileVersionInfo.IsPatched
End Sub