Share via


AddInManager.InstallAddInAsync Method (Uri, String, Guid, ClientInstallFilter)

 

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.

Remarks

This method can only be called on the server.

See Also

InstallAddInAsync Overload
AddInManager Class
Microsoft.WindowsServerSolutions.AddinInfrastructure Namespace

Return to top