AddInManager.InstalledAddInPackages Property
Gets a list of add-in packages that are installed.
Namespace: Microsoft.WindowsServerSolutions.AddinInfrastructure
Assembly: AddinInfrastructure (in AddinInfrastructure.dll)
Syntax
public IList<PackageInfo> InstalledAddInPackages { get; }
public:
property IList<PackageInfo^>^ InstalledAddInPackages {
IList<PackageInfo^>^ get();
}
Public ReadOnly Property InstalledAddInPackages As IList(Of PackageInfo)
Property Value
Type: System.Collections.Generic.IList<PackageInfo>
An IList<T> that contains the add-in packages that are installed.
Exceptions
Exception | Condition |
---|---|
AddInException | An internal error occurred with the add-in management provider. |
Remarks
This is a blocking call to the add-in management provider, so it must not be called on a user interface thread.
See Also
AddInManager Class
Microsoft.WindowsServerSolutions.AddinInfrastructure Namespace
Return to top