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.UriThe URI that contains the address of add-in package.
certThumbprint
Type: System.StringThe thumbprint of the certificate with which the package is signed.
expectedPackageId
Type: System.GuidThe identifier of the add-in package.
installOnClients
Type: Microsoft.WindowsServerSolutions.AddinInfrastructure.ClientInstallFilterThe 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