AppExtensionPackageInstalledEventArgs.Extensions 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.
Provides a list of extensions in the extension package that was just installed.
public:
property IVectorView<AppExtension ^> ^ Extensions { IVectorView<AppExtension ^> ^ get(); };
IVectorView<AppExtension> Extensions();
public IReadOnlyList<AppExtension> Extensions { get; }
var iVectorView = appExtensionPackageInstalledEventArgs.extensions;
Public ReadOnly Property Extensions As IReadOnlyList(Of AppExtension)
Property Value
The list of extensions within the extension package.
Extensions are scoped by the <uap3:AppExtension Name=...>
defined in the extension's Package.appxmanifest file. Only extensions that match the <uap3:AppExtension Name=...>
defined in the host's Package.appxmanifest file are returned.