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.
Asynchronously downloads and installs the add-in package from the specified address.
Namespace:   Microsoft.WindowsServerSolutions.AddinInfrastructure
Assembly:  AddinInfrastructure (in AddinInfrastructure.dll)
Syntax
public void InstallAddInAsync(
    Uri address,
    string certThumbprint,
    Guid expectedPackageId,
    ClientInstallFilter installOnClients
)
public:
void InstallAddInAsync(
    Uri^ address,
    String^ certThumbprint,
    Guid expectedPackageId,
    ClientInstallFilter^ installOnClients
)
Public Sub InstallAddInAsync (
    address As Uri,
    certThumbprint As String,
    expectedPackageId As Guid,
    installOnClients As ClientInstallFilter
)
Parameters
- address 
 Type: System.Uri- The URI that contains the address of add-in package. 
- certThumbprint 
 Type: System.String- The thumbprint of the certificate with which the package is signed. 
- expectedPackageId 
 Type: System.Guid- The identifier of the add-in package. 
- installOnClients 
 Type: Microsoft.WindowsServerSolutions.AddinInfrastructure.ClientInstallFilter- The filter that defines the method for installing the add-in on client computers. 
Remarks
This method can only be called on the server.
See Also
InstallAddInAsync Overload
AddInManager Class
Microsoft.WindowsServerSolutions.AddinInfrastructure Namespace
Return to top