BackgroundTransferContentPart Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
BackgroundTransferContentPart() |
Creates a BackgroundTransferContentPart object. |
BackgroundTransferContentPart(String) |
Creates a BackgroundTransferContentPart object that identifies the content it represents. |
BackgroundTransferContentPart(String, String) |
Creates a BackgroundTransferContentPart object that identifies the file content and the name of the file that it represents. |
BackgroundTransferContentPart()
Creates a BackgroundTransferContentPart object.
public:
BackgroundTransferContentPart();
BackgroundTransferContentPart();
public BackgroundTransferContentPart();
function BackgroundTransferContentPart()
Public Sub New ()
See also
Applies to
BackgroundTransferContentPart(String)
Creates a BackgroundTransferContentPart object that identifies the content it represents.
public:
BackgroundTransferContentPart(Platform::String ^ name);
BackgroundTransferContentPart(winrt::hstring const& name);
public BackgroundTransferContentPart(string name);
function BackgroundTransferContentPart(name)
Public Sub New (name As String)
Parameters
- name
-
String
Platform::String
winrt::hstring
Identifies the content.
See also
- CreateDownload(Uri, IStorageFile, IStorageFile)
- CreateUploadAsync(Uri, IIterable<BackgroundTransferContentPart>)
- BackgroundTransferContentPart(String, String)
Applies to
BackgroundTransferContentPart(String, String)
Creates a BackgroundTransferContentPart object that identifies the file content and the name of the file that it represents.
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)
Parameters
- name
-
String
Platform::String
winrt::hstring
Identifies the content.
- fileName
-
String
Platform::String
winrt::hstring
The fully qualified file name, including the local path.
See also
- CreateDownload(Uri, IStorageFile, IStorageFile)
- CreateUploadAsync(Uri, IIterable<BackgroundTransferContentPart>)
- BackgroundTransferContentPart(String)