PackageExtensionPackageUpdatedEventArgs.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 that are in the extension package that was updated.
public:
property IVectorView<PackageExtension ^> ^ Extensions { IVectorView<PackageExtension ^> ^ get(); };
IVectorView<PackageExtension> Extensions();
public IReadOnlyList<PackageExtension> Extensions { get; }
var iVectorView = packageExtensionPackageUpdatedEventArgs.extensions;
Public ReadOnly Property Extensions As IReadOnlyList(Of PackageExtension)
Property Value
A list of extensions within the updated extension package.
Remarks
Extensions are scoped by the <uap17:PackageExtension Name=...>
in the extension's Package.appxmanifest file. Only extensions that match the <uap17:PackageExtension Name=...>
defined in the host's Package.appxmanifest file are returned.