Product.GetMissingDependencies Method

Definition

Overloads

GetMissingDependencies(IEnumerable<Product>)

Gets a read-only collection of products representing missing dependencies for the current product.

GetMissingDependencies(IEnumerable<Product>, Product)

GetMissingDependencies(IEnumerable<Product>)

Gets a read-only collection of products representing missing dependencies for the current product.

public:
 System::Collections::ObjectModel::ReadOnlyCollection<Microsoft::Web::PlatformInstaller::Product ^> ^ GetMissingDependencies(System::Collections::Generic::IEnumerable<Microsoft::Web::PlatformInstaller::Product ^> ^ productsToBeInstalled);
public System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.Web.PlatformInstaller.Product> GetMissingDependencies (System.Collections.Generic.IEnumerable<Microsoft.Web.PlatformInstaller.Product> productsToBeInstalled);
member this.GetMissingDependencies : seq<Microsoft.Web.PlatformInstaller.Product> -> System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.Web.PlatformInstaller.Product>
Public Function GetMissingDependencies (productsToBeInstalled As IEnumerable(Of Product)) As ReadOnlyCollection(Of Product)

Parameters

productsToBeInstalled
IEnumerable<Product>

An IEnumerable collection of Product objects to be installed.

Returns

A generic ReadOnlyCollection of Product objects.

Applies to

GetMissingDependencies(IEnumerable<Product>, Product)

public:
 System::Collections::ObjectModel::ReadOnlyCollection<Microsoft::Web::PlatformInstaller::Product ^> ^ GetMissingDependencies(System::Collections::Generic::IEnumerable<Microsoft::Web::PlatformInstaller::Product ^> ^ productsToBeInstalled, Microsoft::Web::PlatformInstaller::Product ^ preferredDependency);
public System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.Web.PlatformInstaller.Product> GetMissingDependencies (System.Collections.Generic.IEnumerable<Microsoft.Web.PlatformInstaller.Product> productsToBeInstalled, Microsoft.Web.PlatformInstaller.Product preferredDependency);
member this.GetMissingDependencies : seq<Microsoft.Web.PlatformInstaller.Product> * Microsoft.Web.PlatformInstaller.Product -> System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.Web.PlatformInstaller.Product>
Public Function GetMissingDependencies (productsToBeInstalled As IEnumerable(Of Product), preferredDependency As Product) As ReadOnlyCollection(Of Product)

Parameters

productsToBeInstalled
IEnumerable<Product>
preferredDependency
Product

Returns

Applies to