BackgroundTransferContentPart Constructors

Definition

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()

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

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

Applies to