Compartilhar via


InstallationManager.AddPackageAsync Método

Definição

Sobrecargas

AddPackageAsync(String, Uri)

Inicia o processo de instalação do aplicativo especificado pelo título do aplicativo e pelo URI de localização.

AddPackageAsync(String, Uri, String, String, Uri)

Essa API não se destina a ser usada diretamente do seu código.

AddPackageAsync(String, Uri)

Inicia o processo de instalação do aplicativo especificado pelo título do aplicativo e pelo URI de localização.

public:
 static IAsyncOperationWithProgress<PackageInstallResult ^, unsigned int> ^ AddPackageAsync(Platform::String ^ title, Uri ^ sourceLocation);
/// [Windows.Foundation.Metadata.Overload("AddPackageAsync")]
 static IAsyncOperationWithProgress<PackageInstallResult, uint32_t> AddPackageAsync(winrt::hstring const& title, Uri const& sourceLocation);
[Windows.Foundation.Metadata.Overload("AddPackageAsync")]
public static IAsyncOperationWithProgress<PackageInstallResult,uint> AddPackageAsync(string title, System.Uri sourceLocation);
function addPackageAsync(title, sourceLocation)
Public Shared Function AddPackageAsync (title As String, sourceLocation As Uri) As IAsyncOperationWithProgress(Of PackageInstallResult, UInteger)

Parâmetros

title
String

Platform::String

winrt::hstring

O nome do aplicativo a ser instalado.

sourceLocation
Uri Uri

O local do URI do aplicativo a ser instalado.

Retornos

IAsyncOperationWithProgress<PackageInstallResult,UInt32>

Windows.Foundation.IAsyncOperationWithProgress<Windows.Phone.Management.Deployment.PackageInstallResult,unsigned int>

IAsyncOperationWithProgress<PackageInstallResult,uint32_t>

A operação assíncrona que representa o processo de instalação.

Atributos

Exemplos

void InstallMyCoolApp()
{
    Uri uri = new Uri(@"https://PlaceHolderServerName/XAP/MyCoolApp.xap");
    string appTitle = "Cool App";

    Windows.Foundation.IAsyncOperationWithProgress<PackageInstallResult, uint> result;

    // Queue up an installation request.
    result = InstallationManager.AddPackageAsync(appTitle, uri);

    // Note: You could save "result" as a member variable to enable 
    // the installation to be cancelled later.
}

Confira também

Aplica-se a

AddPackageAsync(String, Uri, String, String, Uri)

Essa API não se destina a ser usada diretamente do seu código.

public:
 static IAsyncOperationWithProgress<PackageInstallResult ^, unsigned int> ^ AddPackageAsync(Platform::String ^ title, Uri ^ sourceLocation, Platform::String ^ instanceId, Platform::String ^ offerId, Uri ^ license);
/// [Windows.Foundation.Metadata.Overload("AddPackagePreloadedAsync")]
 static IAsyncOperationWithProgress<PackageInstallResult, uint32_t> AddPackageAsync(winrt::hstring const& title, Uri const& sourceLocation, winrt::hstring const& instanceId, winrt::hstring const& offerId, Uri const& license);
[Windows.Foundation.Metadata.Overload("AddPackagePreloadedAsync")]
public static IAsyncOperationWithProgress<PackageInstallResult,uint> AddPackageAsync(string title, System.Uri sourceLocation, string instanceId, string offerId, System.Uri license);
function addPackageAsync(title, sourceLocation, instanceId, offerId, license)
Public Shared Function AddPackageAsync (title As String, sourceLocation As Uri, instanceId As String, offerId As String, license As Uri) As IAsyncOperationWithProgress(Of PackageInstallResult, UInteger)

Parâmetros

title
String

Platform::String

winrt::hstring

Essa API não se destina a ser usada diretamente do seu código.

sourceLocation
Uri Uri

Essa API não se destina a ser usada diretamente do seu código.

instanceId
String

Platform::String

winrt::hstring

Essa API não se destina a ser usada diretamente do seu código.

offerId
String

Platform::String

winrt::hstring

Essa API não se destina a ser usada diretamente do seu código.

license
Uri Uri

Essa API não se destina a ser usada diretamente do seu código.

Retornos

IAsyncOperationWithProgress<PackageInstallResult,UInt32>

Windows.Foundation.IAsyncOperationWithProgress<Windows.Phone.Management.Deployment.PackageInstallResult,unsigned int>

IAsyncOperationWithProgress<PackageInstallResult,uint32_t>

Essa API não se destina a ser usada diretamente do seu código.

Atributos

Requisitos do Windows

Funcionalidades do aplicativo
oemDeployment

Confira também

Aplica-se a