BackgroundTransferContentPart Constructores
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
BackgroundTransferContentPart() |
Crea un objeto BackgroundTransferContentPart . |
BackgroundTransferContentPart(String) |
Crea un objeto BackgroundTransferContentPart que identifica el contenido que representa. |
BackgroundTransferContentPart(String, String) |
Crea un objeto BackgroundTransferContentPart que identifica el contenido del archivo y el nombre del archivo que representa. |
BackgroundTransferContentPart()
Crea un objeto BackgroundTransferContentPart .
public:
BackgroundTransferContentPart();
BackgroundTransferContentPart();
public BackgroundTransferContentPart();
function BackgroundTransferContentPart()
Public Sub New ()
Consulte también
Se aplica a
BackgroundTransferContentPart(String)
Crea un objeto BackgroundTransferContentPart que identifica el contenido que representa.
public:
BackgroundTransferContentPart(Platform::String ^ name);
BackgroundTransferContentPart(winrt::hstring const& name);
public BackgroundTransferContentPart(string name);
function BackgroundTransferContentPart(name)
Public Sub New (name As String)
Parámetros
- name
-
String
Platform::String
winrt::hstring
Identifica el contenido.
Consulte también
- CreateDownload(Uri, IStorageFile, IStorageFile)
- CreateUploadAsync(Uri, IIterable<BackgroundTransferContentPart>)
- BackgroundTransferContentPart(String, String)
Se aplica a
BackgroundTransferContentPart(String, String)
Crea un objeto BackgroundTransferContentPart que identifica el contenido del archivo y el nombre del archivo que representa.
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)
Parámetros
- name
-
String
Platform::String
winrt::hstring
Identifica el contenido.
- fileName
-
String
Platform::String
winrt::hstring
Nombre de archivo completo, incluida la ruta de acceso local.
Consulte también
- CreateDownload(Uri, IStorageFile, IStorageFile)
- CreateUploadAsync(Uri, IIterable<BackgroundTransferContentPart>)
- BackgroundTransferContentPart(String)