Retrieves all configuration passes in which the specified Windows component will perform out-of-box device driver installation. Namespace: Microsoft.ComponentStudio.ComponentPlatformInterface
Assembly: Microsoft.ComponentStudio.ComponentPlatformInterface (in microsoft.componentstudio.componentplatforminterface.dll)

Usage

Visual Basic
Dim driverComponentName As String
Dim returnValue As ReadOnlyCollection(Of ConfigurationPass)
returnValue = DriverPath.GetApplicableConfigurationPasses(driverComponentName)

Syntax

Visual Basic
Public Shared Function GetApplicableConfigurationPasses( _
		ByVal driverComponentName As String _
) As ReadOnlyCollection(Of ConfigurationPass)
C#
public static ReadOnlyCollection<ConfigurationPass> GetApplicableConfigurationPasses(
		string driverComponentName
);
C++
public:
static ReadOnlyCollection<ConfigurationPass>^ GetApplicableConfigurationPasses(
		String^ driverComponentName
);
J#
public static ReadOnlyCollection<ConfigurationPass> GetApplicableConfigurationPasses(
		System.String driverComponentName
);
JScript
JScript does not support Generics.

Parameters

driverComponentName

Windows component that will perform out-of-box device driver installation.

Return Value

A collection of all configuration passes in which the specified Windows component will perform out-of-box device driver installation.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, Windows Vista, and Windows 2000

Target Platforms

See Also