Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets an observable collection of the add-in packages that are currently installed.
Namespace: Microsoft.WindowsServerSolutions.AddinInfrastructure
Assembly: AddinInfrastructure (in AddinInfrastructure.dll)
Syntax
public ReadOnlyObservableCollection<PackageInfo> ObservablePackages { get; }
public:
property ReadOnlyObservableCollection<PackageInfo^>^ ObservablePackages {
ReadOnlyObservableCollection<PackageInfo^>^ get();
}
Public ReadOnly Property ObservablePackages As ReadOnlyObservableCollection(Of PackageInfo)
Property Value
Type: System.Collections.ObjectModel.ReadOnlyObservableCollection<PackageInfo>
A ReadOnlyObservableCollection<T> that contains the add-in packages that are currently installed.
Remarks
This collection can be changed on a separate thread, so do not use it in a For Each loop. It is updated on calls to GetInstalledAddInPackagesAsync or if RegisterForChanges was called.
See Also
AddInManager Class
Microsoft.WindowsServerSolutions.AddinInfrastructure Namespace
Return to top