SharedPackageContainerManager.FindContainers 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
FindContainers() |
Retrieves a list of all SharedPackageContainer objects within the scope of the current manager. |
FindContainers(FindSharedPackageContainerOptions) |
Retrieves a list of SharedPackageContainer objects within the scope of the current manager, using the criteria specified by the provided FindSharedPackageContainerOptions. |
FindContainers()
Retrieves a list of all SharedPackageContainer objects within the scope of the current manager.
public:
virtual IVector<SharedPackageContainer ^> ^ FindContainers() = FindContainers;
/// [Windows.Foundation.Metadata.Overload("FindContainers")]
IVector<SharedPackageContainer> FindContainers();
[Windows.Foundation.Metadata.Overload("FindContainers")]
public IList<SharedPackageContainer> FindContainers();
function findContainers()
Public Function FindContainers () As IList(Of SharedPackageContainer)
Returns
The list of SharedPackageContainer.
- Attributes
Applies to
FindContainers(FindSharedPackageContainerOptions)
Retrieves a list of SharedPackageContainer objects within the scope of the current manager, using the criteria specified by the provided FindSharedPackageContainerOptions.
public:
virtual IVector<SharedPackageContainer ^> ^ FindContainers(FindSharedPackageContainerOptions ^ options) = FindContainers;
/// [Windows.Foundation.Metadata.Overload("FindContainersWithOptions")]
IVector<SharedPackageContainer> FindContainers(FindSharedPackageContainerOptions const& options);
[Windows.Foundation.Metadata.Overload("FindContainersWithOptions")]
public IList<SharedPackageContainer> FindContainers(FindSharedPackageContainerOptions options);
function findContainers(options)
Public Function FindContainers (options As FindSharedPackageContainerOptions) As IList(Of SharedPackageContainer)
Parameters
The FindSharedPackageContainerOptions specifying the search criteria for the find operation.
Returns
The retrieved list of SharedPackageContainer objects.
- Attributes