FeatureSupport.GetVersionPresent メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
システムで使用できる指定した機能のバージョンを取得します。
オーバーロード
GetVersionPresent(Object) |
派生クラスによってオーバーライドされるときに、このシステムで使用できる、指定した機能のバージョンを取得します。 |
GetVersionPresent(String, String) |
システムで使用できる指定した機能のバージョンを取得します。 |
GetVersionPresent(Object)
派生クラスによってオーバーライドされるときに、このシステムで使用できる、指定した機能のバージョンを取得します。
public:
abstract Version ^ GetVersionPresent(System::Object ^ feature);
public abstract Version GetVersionPresent (object feature);
public abstract Version? GetVersionPresent (object feature);
abstract member GetVersionPresent : obj -> Version
Public MustOverride Function GetVersionPresent (feature As Object) As Version
パラメーター
- feature
- Object
バージョンが要求されている機能。
戻り値
システムで使用できる指定した機能のバージョン番号を表す Version。その機能がインストールされていない場合は null
。
実装
例
次のコード例では、 機能の OSFeature および クエリの FeatureSupport 実装を LayeredWindows 使用します。 バージョンが かどうかを確認して、 null
機能が存在するかどうかを判断します。 結果がテキスト ボックスに表示されます。 このコードでは、 が textBox1
作成され、フォームに配置されている必要があります。
private:
void LayeredWindows()
{
// Gets the version of the layered windows feature.
Version^ myVersion = OSFeature::Feature->GetVersionPresent(
OSFeature::LayeredWindows );
// Prints whether the feature is available.
if ( myVersion != nullptr )
{
textBox1->Text = "Layered windows feature is installed.\n";
}
else
{
textBox1->Text = "Layered windows feature is not installed.\n";
}
// This is an alternate way to check whether a feature is present.
if ( OSFeature::Feature->IsPresent( OSFeature::LayeredWindows ) )
{
textBox1->Text = String::Concat( textBox1->Text,
"Again, layered windows feature is installed." );
}
else
{
textBox1->Text = String::Concat( textBox1->Text,
"Again, layered windows feature is not installed." );
}
}
private void LayeredWindows() {
// Gets the version of the layered windows feature.
Version myVersion = OSFeature.Feature.GetVersionPresent(OSFeature.LayeredWindows);
// Prints whether the feature is available.
if (myVersion != null)
textBox1.Text = "Layered windows feature is installed." + '\n';
else
textBox1.Text = "Layered windows feature is not installed." + '\n';
// This is an alternate way to check whether a feature is present.
if (OSFeature.Feature.IsPresent(OSFeature.LayeredWindows))
textBox1.Text += "Again, layered windows feature is installed.";
else
textBox1.Text += "Again, layered windows feature is not installed.";
}
Private Sub LayeredWindows()
' Gets the version of the layered windows feature.
Dim myVersion As Version = _
OSFeature.Feature.GetVersionPresent(OSFeature.LayeredWindows)
' Prints whether the feature is available.
If (myVersion IsNot Nothing) Then
textBox1.Text = "Layered windows feature is installed." & _
ControlChars.CrLf
Else
textBox1.Text = "Layered windows feature is not installed." & _
ControlChars.CrLf
End If
'This is an alternate way to check whether a feature is present.
If OSFeature.Feature.IsPresent(OSFeature.LayeredWindows) Then
textBox1.Text &= "Again, layered windows feature is installed."
Else
textBox1.Text &= "Again, layered windows feature is not installed."
End If
End Sub
注釈
バージョン番号は、メジャー、マイナー、ビルドの 3 つの部分で構成されます。 通常、バージョン番号は "メジャー番号.マイナー番号.ビルド番号" として表示されます。
注意 (実装者)
から FeatureSupport継承する場合は、このメソッドをオーバーライドする必要があります。 このメソッドをオーバーライドする場合、パラメーターに使用するクラスが メソッドでIsPresent(String, String)このパラメーターに使用feature
されるクラスと同じであることをチェックします。 2 つの feature
パラメーターが異なる場合は、 もオーバーライド IsPresent(String, String)する必要があります。
このメソッドの実装については、 を参照してください GetVersionPresent(Object) 。
こちらもご覧ください
適用対象
GetVersionPresent(String, String)
システムで使用できる指定した機能のバージョンを取得します。
public:
static Version ^ GetVersionPresent(System::String ^ featureClassName, System::String ^ featureConstName);
public static Version GetVersionPresent (string featureClassName, string featureConstName);
public static Version? GetVersionPresent (string featureClassName, string featureConstName);
static member GetVersionPresent : string * string -> Version
Public Shared Function GetVersionPresent (featureClassName As String, featureConstName As String) As Version
パラメーター
- featureClassName
- String
指定した機能についての情報を問い合わせるための、クラスの完全限定名。 このクラスは、IFeatureSupport インターフェイスを実装するか、またはこのインターフェイスを実装するクラスから継承する必要があります。
- featureConstName
- String
検索する機能の完全限定名。
戻り値
システムで使用できる、指定した機能のバージョン番号を示す Version。指定した機能がインストールされていない場合は null
。
注釈
バージョン番号は、メジャー、マイナー、ビルドの 3 つの部分で構成されます。 通常、バージョン番号は "メジャー番号.マイナー番号.ビルド番号" として表示されます。
機能を含む製品のドキュメントを参照して、 に渡す featureClassName
名前とパラメーターを featureConstName
決定します。
こちらもご覧ください
適用対象
.NET