Share via


AppExtensionPackageUpdatedEventArgs.Extensions Property

Definition

Provides a list of extensions that are in the extension package that was updated

public:
 property IVectorView<AppExtension ^> ^ Extensions { IVectorView<AppExtension ^> ^ get(); };
IVectorView<AppExtension> Extensions();
public IReadOnlyList<AppExtension> Extensions { get; }
var iVectorView = appExtensionPackageUpdatedEventArgs.extensions;
Public ReadOnly Property Extensions As IReadOnlyList(Of AppExtension)

Property Value

A list of extensions within the updated extension package.

Remarks

Extensions are scoped by the <uap3:AppExtension Name=...> 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.

Applies to