FileVersionInfo.IsPrivateBuild プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ファイルが標準リリース プロシージャを使用して作成されたものかどうかを指定する値を取得します。
public:
property bool IsPrivateBuild { bool get(); };
public bool IsPrivateBuild { get; }
member this.IsPrivateBuild : bool
Public ReadOnly Property IsPrivateBuild As Boolean
プロパティ値
このファイルがプライベートにビルドされたファイルの場合は true
。ファイルが標準リリース プロシージャを使用して作成された場合、またはファイルにバージョン情報が含まれていない場合は false
。
例
次の例では、 を呼び出 GetVersionInfo してメモ帳の を FileVersionInfo 取得します。 次に、プライベート ビルド情報をテキスト ボックスに表示します。 このコードは、 textBox1
がインスタンス化されていることを前提としています。
private:
void GetIsPrivateBuild()
{
// Get the file version for the notepad.
FileVersionInfo^ myFileVersionInfo =
FileVersionInfo::GetVersionInfo( Environment::SystemDirectory + "\\Notepad.exe" );
// Print whether the version is a private build.
textBox1->Text = String::Concat( "Version is a private build: ", myFileVersionInfo->IsPrivateBuild );
}
private void GetIsPrivateBuild()
{
// Get the file version for the notepad.
FileVersionInfo myFileVersionInfo =
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe");
// Print whether the version is a private build.
textBox1.Text = "Version is a private build: " + myFileVersionInfo.IsPrivateBuild;
}
Private Sub GetIsPrivateBuild()
' Get the file version for the notepad.
Dim myFileVersionInfo As FileVersionInfo = _
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
' Print whether the version is a private build.
textBox1.Text = "Version is a private build: " & myFileVersionInfo.IsPrivateBuild
End Sub
注釈
この値が のPrivateBuild場合、true
このバージョンのファイルと標準バージョンの違いについて説明します。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET