BackgroundTransferContentPart 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
BackgroundTransferContentPart() | |
BackgroundTransferContentPart(String) |
创建一个 BackgroundTransferContentPart 对象,该对象标识它表示的内容。 |
BackgroundTransferContentPart(String, String) |
创建一个 BackgroundTransferContentPart 对象,该对象标识文件内容及其表示的文件的名称。 |
BackgroundTransferContentPart()
public:
BackgroundTransferContentPart();
BackgroundTransferContentPart();
public BackgroundTransferContentPart();
function BackgroundTransferContentPart()
Public Sub New ()
另请参阅
适用于
BackgroundTransferContentPart(String)
创建一个 BackgroundTransferContentPart 对象,该对象标识它表示的内容。
public:
BackgroundTransferContentPart(Platform::String ^ name);
BackgroundTransferContentPart(winrt::hstring const& name);
public BackgroundTransferContentPart(string name);
function BackgroundTransferContentPart(name)
Public Sub New (name As String)
参数
- name
-
String
Platform::String
winrt::hstring
标识内容。
另请参阅
- CreateDownload(Uri, IStorageFile, IStorageFile)
- CreateUploadAsync(Uri, IIterable<BackgroundTransferContentPart>)
- BackgroundTransferContentPart(String, String)
适用于
BackgroundTransferContentPart(String, String)
创建一个 BackgroundTransferContentPart 对象,该对象标识文件内容及其表示的文件的名称。
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)
参数
- name
-
String
Platform::String
winrt::hstring
标识内容。
- fileName
-
String
Platform::String
winrt::hstring
完全限定的文件名,包括本地路径。
另请参阅
- CreateDownload(Uri, IStorageFile, IStorageFile)
- CreateUploadAsync(Uri, IIterable<BackgroundTransferContentPart>)
- BackgroundTransferContentPart(String)