AppExtensionPackageUpdatedEventArgs
AppExtensionPackageUpdatedEventArgs
AppExtensionPackageUpdatedEventArgs
AppExtensionPackageUpdatedEventArgs
Class
Definition
Provides information for the AppExtensionCatalog.PackageUpdated event.
public : sealed class AppExtensionPackageUpdatedEventArgs : IAppExtensionPackageUpdatedEventArgspublic sealed class AppExtensionPackageUpdatedEventArgs : IAppExtensionPackageUpdatedEventArgsPublic NotInheritable Class AppExtensionPackageUpdatedEventArgs Implements IAppExtensionPackageUpdatedEventArgs// You can use this class in JavaScript.
- Attributes
Windows 10 requirements
| Device family |
Windows 10 Anniversary Edition (introduced v10.0.14393.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v3)
|
Remarks
Instances of this class are created by the system and passed as event arguments to your handler.
Properties
AppExtensionName AppExtensionName AppExtensionName AppExtensionName
Gets the name of the app extension that was updated.
public : PlatForm::String AppExtensionName { get; }public string AppExtensionName { get; }Public ReadOnly Property AppExtensionName As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The name of the updated app extension.
Extensions Extensions Extensions Extensions
Provides a list of extensions that are in the extension package that was updated
public : IVectorView<AppExtension> Extensions { get; }public IReadOnlyList<AppExtension> Extensions { get; }Public ReadOnly Property Extensions As IReadOnlyList<AppExtension>// You can use this property in JavaScript.
- Value
- IVectorView<AppExtension> IReadOnlyList<AppExtension> IReadOnlyList<AppExtension> IReadOnlyList<AppExtension>
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.