BackgroundTransferContentPart Construtores
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
BackgroundTransferContentPart() |
Cria um objeto BackgroundTransferContentPart . |
BackgroundTransferContentPart(String) |
Cria um objeto BackgroundTransferContentPart que identifica o conteúdo que ele representa. |
BackgroundTransferContentPart(String, String) |
Cria um objeto BackgroundTransferContentPart que identifica o conteúdo do arquivo e o nome do arquivo que ele representa. |
BackgroundTransferContentPart()
Cria um objeto BackgroundTransferContentPart .
public:
BackgroundTransferContentPart();
BackgroundTransferContentPart();
public BackgroundTransferContentPart();
function BackgroundTransferContentPart()
Public Sub New ()
Confira também
Aplica-se a
BackgroundTransferContentPart(String)
Cria um objeto BackgroundTransferContentPart que identifica o conteúdo que ele 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 o conteúdo.
Confira também
- CreateDownload(Uri, IStorageFile, IStorageFile)
- CreateUploadAsync(Uri, IIterable<BackgroundTransferContentPart>)
- BackgroundTransferContentPart(String, String)
Aplica-se a
BackgroundTransferContentPart(String, String)
Cria um objeto BackgroundTransferContentPart que identifica o conteúdo do arquivo e o nome do arquivo que ele 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 o conteúdo.
- fileName
-
String
Platform::String
winrt::hstring
O nome de arquivo totalmente qualificado, incluindo o caminho local.
Confira também
- CreateDownload(Uri, IStorageFile, IStorageFile)
- CreateUploadAsync(Uri, IIterable<BackgroundTransferContentPart>)
- BackgroundTransferContentPart(String)