FileVersionInfo.IsPatched Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient une valeur qui spécifie si le fichier a été modifié et ne correspond plus au fichier d'origine portant le même numéro de version.
public:
property bool IsPatched { bool get(); };
public bool IsPatched { get; }
member this.IsPatched : bool
Public ReadOnly Property IsPatched As Boolean
Valeur de propriété
true
en cas de modification du fichier ; sinon, false
.
Exemples
L’exemple suivant appelle GetVersionInfo pour obtenir le FileVersionInfo pour le Bloc-notes. Ensuite, il affiche l’état du booléen IsPatched dans une zone de texte. Ce code suppose que textBox1
a été instancié.
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