Läs på engelska Redigera

Dela via


IFeatureSupport Interface

Definition

Specifies a standard interface for retrieving feature information from the current system.

C#
public interface IFeatureSupport
Derived

Examples

The following example uses the OSFeature implementation of IFeatureSupport and queries for the LayeredWindows feature. The version is checked to see if it is null, to determine whether the feature is present. The result is displayed in a text box. This code assumes textBox1 has been created and placed on a form.

C#
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.";
}

Remarks

When implemented in a class, IFeatureSupport provides methods you can use to determine whether a feature is currently installed on the system and to get the version number of a feature. Call IsPresent to determine whether a feature, or a specific version of a feature, is currently installed. Call GetVersionPresent to determine the version number of an installed feature.

See the FeatureSupport and OSFeature classes for implementations of this interface.

Methods

GetVersionPresent(Object)

Retrieves the version of the specified feature.

IsPresent(Object, Version)

Determines whether the specified or newer version of the specified feature is currently available on the system.

IsPresent(Object)

Determines whether any version of the specified feature is currently available on the system.

Applies to

Produkt Versioner
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also