IFeatureSupport インターフェイス

定義

現在のシステムから機能情報を取得するための標準インターフェイスを指定します。

public interface class IFeatureSupport
public interface IFeatureSupport
type IFeatureSupport = interface
Public Interface IFeatureSupport
派生

次の例では、 OSFeature の実装 IFeatureSupport と、この機能のクエリを 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

注釈

クラスに実装されている場合、 IFeatureSupport 機能がシステムに現在インストールされているかどうかを判断し、機能のバージョン番号を取得するために使用できるメソッドを提供します。 を呼び出 IsPresent して、機能または特定のバージョンの機能が現在インストールされているかどうかを確認します。 を呼び出 GetVersionPresent して、インストールされている機能のバージョン番号を確認します。

このインターフェイスの FeatureSupport 実装については、 クラスと OSFeature クラスを参照してください。

メソッド

GetVersionPresent(Object)

指定した機能のバージョンを取得します。

IsPresent(Object)

指定した機能の任意のバージョンが現在システムで使用できるかどうかを判断します。

IsPresent(Object, Version)

指定した機能または指定した機能の新しいバージョンが、現在のシステムで使用できるかどうかを判断します。

適用対象

こちらもご覧ください