Freigeben über


BackgroundUploader.CreateUploadAsync Methode

Definition

Überlädt

CreateUploadAsync(Uri, IIterable<BackgroundTransferContentPart>)

Gibt einen asynchronen Vorgang zurück, der bei Abschluss eine UploadOperation mit dem angegebenen URI und mindestens einem BackgroundTransferContentPart-Objekt zurückgibt.

CreateUploadAsync(Uri, IIterable<BackgroundTransferContentPart>, String)

Gibt einen asynchronen Vorgang zurück, der bei Abschluss eine UploadOperation mit dem angegebenen URI, mindestens einem BackgroundTransferContentPart-Objekt und dem mehrteiligen Untertyp zurückgibt.

CreateUploadAsync(Uri, IIterable<BackgroundTransferContentPart>, String, String)

Gibt einen asynchronen Vorgang zurück, der bei Abschluss eine UploadOperation mit dem angegebenen URI, dem angegebenen mehrteiligen Untertyp, mindestens einem BackgroundTransferContentPart-Objekt und dem Trennzeichengrenzwert zurückgibt, der zum Trennen der einzelnen Teile verwendet wird.

CreateUploadAsync(Uri, IIterable<BackgroundTransferContentPart>)

Gibt einen asynchronen Vorgang zurück, der bei Abschluss eine UploadOperation mit dem angegebenen URI und mindestens einem BackgroundTransferContentPart-Objekt zurückgibt.

public:
 virtual IAsyncOperation<UploadOperation ^> ^ CreateUploadAsync(Uri ^ uri, IIterable<BackgroundTransferContentPart ^> ^ parts) = CreateUploadAsync;
/// [Windows.Foundation.Metadata.Overload("CreateUploadWithFormDataAndAutoBoundaryAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<UploadOperation> CreateUploadAsync(Uri const& uri, IIterable<BackgroundTransferContentPart> const& parts);
[Windows.Foundation.Metadata.Overload("CreateUploadWithFormDataAndAutoBoundaryAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<UploadOperation> CreateUploadAsync(System.Uri uri, IEnumerable<BackgroundTransferContentPart> parts);
function createUploadAsync(uri, parts)
Public Function CreateUploadAsync (uri As Uri, parts As IEnumerable(Of BackgroundTransferContentPart)) As IAsyncOperation(Of UploadOperation)

Parameter

uri
Uri Uri

Der Speicherort für den Upload.

Gibt zurück

Die resultierende asynchrone UploadOperation

Attribute

Weitere Informationen

Gilt für:

CreateUploadAsync(Uri, IIterable<BackgroundTransferContentPart>, String)

Gibt einen asynchronen Vorgang zurück, der bei Abschluss eine UploadOperation mit dem angegebenen URI, mindestens einem BackgroundTransferContentPart-Objekt und dem mehrteiligen Untertyp zurückgibt.

public:
 virtual IAsyncOperation<UploadOperation ^> ^ CreateUploadAsync(Uri ^ uri, IIterable<BackgroundTransferContentPart ^> ^ parts, Platform::String ^ subType) = CreateUploadAsync;
/// [Windows.Foundation.Metadata.Overload("CreateUploadWithSubTypeAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<UploadOperation> CreateUploadAsync(Uri const& uri, IIterable<BackgroundTransferContentPart> const& parts, winrt::hstring const& subType);
[Windows.Foundation.Metadata.Overload("CreateUploadWithSubTypeAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<UploadOperation> CreateUploadAsync(System.Uri uri, IEnumerable<BackgroundTransferContentPart> parts, string subType);
function createUploadAsync(uri, parts, subType)
Public Function CreateUploadAsync (uri As Uri, parts As IEnumerable(Of BackgroundTransferContentPart), subType As String) As IAsyncOperation(Of UploadOperation)

Parameter

uri
Uri Uri

Der Speicherort für den Upload.

subType
String

Platform::String

winrt::hstring

Der mehrteilige Untertyp. Beispiel: "related" für Inhalt vom Typ "multipart/related ".

Gibt zurück

Die resultierende asynchrone UploadOperation.

Attribute

Weitere Informationen

Gilt für:

CreateUploadAsync(Uri, IIterable<BackgroundTransferContentPart>, String, String)

Gibt einen asynchronen Vorgang zurück, der bei Abschluss eine UploadOperation mit dem angegebenen URI, dem angegebenen mehrteiligen Untertyp, mindestens einem BackgroundTransferContentPart-Objekt und dem Trennzeichengrenzwert zurückgibt, der zum Trennen der einzelnen Teile verwendet wird.

public:
 virtual IAsyncOperation<UploadOperation ^> ^ CreateUploadAsync(Uri ^ uri, IIterable<BackgroundTransferContentPart ^> ^ parts, Platform::String ^ subType, Platform::String ^ boundary) = CreateUploadAsync;
/// [Windows.Foundation.Metadata.Overload("CreateUploadWithSubTypeAndBoundaryAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<UploadOperation> CreateUploadAsync(Uri const& uri, IIterable<BackgroundTransferContentPart> const& parts, winrt::hstring const& subType, winrt::hstring const& boundary);
[Windows.Foundation.Metadata.Overload("CreateUploadWithSubTypeAndBoundaryAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<UploadOperation> CreateUploadAsync(System.Uri uri, IEnumerable<BackgroundTransferContentPart> parts, string subType, string boundary);
function createUploadAsync(uri, parts, subType, boundary)
Public Function CreateUploadAsync (uri As Uri, parts As IEnumerable(Of BackgroundTransferContentPart), subType As String, boundary As String) As IAsyncOperation(Of UploadOperation)

Parameter

uri
Uri Uri

Der Speicherort für den Upload.

subType
String

Platform::String

winrt::hstring

Der mehrteilige Untertyp. Beispiel: "related" für Inhalt vom Typ "multipart/related ".

boundary
String

Platform::String

winrt::hstring

Eine Zeichenfolge, die verwendet wird, um das Trennzeichen zu identifizieren, das zum Angeben der Trennung zwischen bereitgestellten Inhaltsteilen verwendet wird.

Gibt zurück

Die resultierende asynchrone UploadOperation

Attribute

Weitere Informationen

Gilt für: