AppExtensionPackageInstalledEventArgs
AppExtensionPackageInstalledEventArgs
AppExtensionPackageInstalledEventArgs
AppExtensionPackageInstalledEventArgs
Class
Definition
Provides information for the AppExtensionCatalog.PackageInstalled event.
public : sealed class AppExtensionPackageInstalledEventArgs : IAppExtensionPackageInstalledEventArgspublic sealed class AppExtensionPackageInstalledEventArgs : IAppExtensionPackageInstalledEventArgsPublic NotInheritable Class AppExtensionPackageInstalledEventArgs Implements IAppExtensionPackageInstalledEventArgs// 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 extension package that was installed.
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 extension.
Extensions Extensions Extensions Extensions
Provides a list of extensions in the extension package that was just installed.
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>
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.