AppInstallItem.Children Property
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.
Retrieves information about app installs that are children of the current app install. This property only returns a value if the current app install is the parent of other app installs that are part of a the same app bundle.
public:
property IVectorView<AppInstallItem ^> ^ Children { IVectorView<AppInstallItem ^> ^ get(); };
IVectorView<AppInstallItem> Children();
public IReadOnlyList<AppInstallItem> Children { get; }
var iVectorView = appInstallItem.children;
Public ReadOnly Property Children As IReadOnlyList(Of AppInstallItem)
Property Value
A collection of AppInstallItem objects that represent the children app installs of the current app install.
Windows requirements
Device family |
Windows 10 Creators Update (introduced in 10.0.15063.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v4.0)
|
App capabilities |
runFullTrust
|