BackgroundTransferContentPart Costruttori
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
BackgroundTransferContentPart() |
Crea un oggetto BackgroundTransferContentPart . |
BackgroundTransferContentPart(String) |
Crea un oggetto BackgroundTransferContentPart che identifica il contenuto rappresentato. |
BackgroundTransferContentPart(String, String) |
Crea un oggetto BackgroundTransferContentPart che identifica il contenuto del file e il nome del file che rappresenta. |
BackgroundTransferContentPart()
Crea un oggetto BackgroundTransferContentPart .
public:
BackgroundTransferContentPart();
BackgroundTransferContentPart();
public BackgroundTransferContentPart();
function BackgroundTransferContentPart()
Public Sub New ()
Vedi anche
Si applica a
BackgroundTransferContentPart(String)
Crea un oggetto BackgroundTransferContentPart che identifica il contenuto rappresentato.
public:
BackgroundTransferContentPart(Platform::String ^ name);
BackgroundTransferContentPart(winrt::hstring const& name);
public BackgroundTransferContentPart(string name);
function BackgroundTransferContentPart(name)
Public Sub New (name As String)
Parametri
- name
-
String
Platform::String
winrt::hstring
Identifica il contenuto.
Vedi anche
- CreateDownload(Uri, IStorageFile, IStorageFile)
- CreateUploadAsync(Uri, IIterable<BackgroundTransferContentPart>)
- BackgroundTransferContentPart(String, String)
Si applica a
BackgroundTransferContentPart(String, String)
Crea un oggetto BackgroundTransferContentPart che identifica il contenuto del file e il nome del file che rappresenta.
public:
BackgroundTransferContentPart(Platform::String ^ name, Platform::String ^ fileName);
BackgroundTransferContentPart(winrt::hstring const& name, winrt::hstring const& fileName);
public BackgroundTransferContentPart(string name, string fileName);
function BackgroundTransferContentPart(name, fileName)
Public Sub New (name As String, fileName As String)
Parametri
- name
-
String
Platform::String
winrt::hstring
Identifica il contenuto.
- fileName
-
String
Platform::String
winrt::hstring
Nome file completo, incluso il percorso locale.
Vedi anche
- CreateDownload(Uri, IStorageFile, IStorageFile)
- CreateUploadAsync(Uri, IIterable<BackgroundTransferContentPart>)
- BackgroundTransferContentPart(String)