AddInManager.InstalledPackageSnapshot Property
Gets a snapshot of the add-in packages that are currently installed.
Namespace: Microsoft.WindowsServerSolutions.AddinInfrastructure
Assembly: AddinInfrastructure (in AddinInfrastructure.dll)
Syntax
public IList<PackageInfo> InstalledPackageSnapshot { get; }
public:
property IList<PackageInfo^>^ InstalledPackageSnapshot {
IList<PackageInfo^>^ get();
}
Public ReadOnly Property InstalledPackageSnapshot As IList(Of PackageInfo)
Property Value
Type: System.Collections.Generic.IList<PackageInfo>
A IList<T> value of currently installed add-in packages.
Remarks
This snapshot is a point-in-time view of ObservablePackages, and does not make a call to the add-in management provider to get the most recent list of add-ins.
See Also
AddInManager Class
Microsoft.WindowsServerSolutions.AddinInfrastructure Namespace
Return to top