UploadOperation.AttachAsync Metodo

Definizione

Restituisce un'operazione asincrona che può essere utilizzata per monitorare lo stato di avanzamento e il completamento del caricamento collegato. La chiamata a questo metodo consente a un'app di allegare le operazioni di caricamento avviate in un'istanza precedente dell'app.

public:
 virtual IAsyncOperationWithProgress<UploadOperation ^, UploadOperation ^> ^ AttachAsync() = AttachAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperationWithProgress<UploadOperation, UploadOperation const&> AttachAsync();
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperationWithProgress<UploadOperation,UploadOperation> AttachAsync();
function attachAsync()
Public Function AttachAsync () As IAsyncOperationWithProgress(Of UploadOperation, UploadOperation)

Restituisce

Operazione di caricamento con callback.

Attributi

Esempio

function AttachUpload (loadedUpload) {
    try {
        upload = loadedUpload;
        promise = upload.attachAsync().then(complete, error, progress);
    } catch (err) {
        displayError(err);
    }
};

Commenti

Anche se questo metodo può essere chiamato da più istanze dell'app, gli sviluppatori non devono collegare callback dall'istanza dell'app primaria in un'attività in background. In questo modo BackgroundTransferHost.exe blocco.

Si applica a