PackageVolume.FindPackagesWithPackageTypes Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
FindPackagesWithPackageTypes(PackageTypes, String, String) |
Gets a collection of info about all installed instances of the specified Packages from the specified publisher with the specified package types for all registered users. |
FindPackagesWithPackageTypes(PackageTypes) |
Gets a collection of info about all installed instances of all Packages with the specified package types for all registered users. |
FindPackagesWithPackageTypes(PackageTypes, String) |
Gets a collection of info about all installed instances of the specified Package with the specified package types for all registered users. |
FindPackagesWithPackageTypes(PackageTypes, String, String)
public:
virtual IVector<Package ^> ^ FindPackagesWithPackageTypes(PackageTypes packageTypes, Platform::String ^ packageName, Platform::String ^ packagePublisher) = FindPackagesWithPackageTypes;
/// [Windows.Foundation.Metadata.Overload("FindPackagesByNamePublisherWithPackagesTypes")]
IVector<Package> FindPackagesWithPackageTypes(PackageTypes const& packageTypes, winrt::hstring const& packageName, winrt::hstring const& packagePublisher);
[Windows.Foundation.Metadata.Overload("FindPackagesByNamePublisherWithPackagesTypes")]
public IList<Package> FindPackagesWithPackageTypes(PackageTypes packageTypes, string packageName, string packagePublisher);
function findPackagesWithPackageTypes(packageTypes, packageName, packagePublisher)
Public Function FindPackagesWithPackageTypes (packageTypes As PackageTypes, packageName As String, packagePublisher As String) As IList(Of Package)
Parameters
- packageTypes
- PackageTypes
A bitwise combination of the enumeration values that specifies the types of packages to return.
- packageName
-
String
Platform::String
winrt::hstring
The full name of the package.
- packagePublisher
-
String
Platform::String
winrt::hstring
The publisher of the package.
Returns
A collection of info about the specified packages.
- Attributes
See also
- FindPackagesWithPackageTypes(PackageTypes)
- FindPackagesWithPackageTypes(PackageTypes, String)
- Package
Applies to
FindPackagesWithPackageTypes(PackageTypes)
public:
virtual IVector<Package ^> ^ FindPackagesWithPackageTypes(PackageTypes packageTypes) = FindPackagesWithPackageTypes;
/// [Windows.Foundation.Metadata.Overload("FindPackagesWithPackageTypes")]
IVector<Package> FindPackagesWithPackageTypes(PackageTypes const& packageTypes);
[Windows.Foundation.Metadata.Overload("FindPackagesWithPackageTypes")]
public IList<Package> FindPackagesWithPackageTypes(PackageTypes packageTypes);
function findPackagesWithPackageTypes(packageTypes)
Public Function FindPackagesWithPackageTypes (packageTypes As PackageTypes) As IList(Of Package)
Parameters
- packageTypes
- PackageTypes
A bitwise combination of the enumeration values that specifies the types of packages to return.
Returns
A collection of info about the specified packages.
- Attributes
See also
- FindPackagesWithPackageTypes(PackageTypes, String, String)
- FindPackagesWithPackageTypes(PackageTypes, String)
- Package
Applies to
FindPackagesWithPackageTypes(PackageTypes, String)
public:
virtual IVector<Package ^> ^ FindPackagesWithPackageTypes(PackageTypes packageTypes, Platform::String ^ packageFamilyName) = FindPackagesWithPackageTypes;
/// [Windows.Foundation.Metadata.Overload("FindPackagesByPackageFamilyNameWithPackageTypes")]
IVector<Package> FindPackagesWithPackageTypes(PackageTypes const& packageTypes, winrt::hstring const& packageFamilyName);
[Windows.Foundation.Metadata.Overload("FindPackagesByPackageFamilyNameWithPackageTypes")]
public IList<Package> FindPackagesWithPackageTypes(PackageTypes packageTypes, string packageFamilyName);
function findPackagesWithPackageTypes(packageTypes, packageFamilyName)
Public Function FindPackagesWithPackageTypes (packageTypes As PackageTypes, packageFamilyName As String) As IList(Of Package)
Parameters
- packageTypes
- PackageTypes
A bitwise combination of the enumeration values that specifies the types of packages to return.
- packageFamilyName
-
String
Platform::String
winrt::hstring
The package family name.
Returns
A collection of info about the specified packages.
- Attributes
See also
- FindPackagesWithPackageTypes(PackageTypes)
- FindPackagesWithPackageTypes(PackageTypes, String, String)
- Package