EmailAttachment 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
EmailAttachment() |
初始化 EmailAttachment 類別的新實例。 |
EmailAttachment(String, IRandomAccessStreamReference) |
使用指定的隨機存取資料流程,初始化 EmailAttachment 類別的新實例。 |
EmailAttachment(String, IRandomAccessStreamReference, String) |
初始化 EmailAttachment 類別的新實例。 |
EmailAttachment()
初始化 EmailAttachment 類別的新實例。
public:
EmailAttachment();
EmailAttachment();
public EmailAttachment();
function EmailAttachment()
Public Sub New ()
Windows 需求
應用程式功能 |
email
emailSystem
|
另請參閱
適用於
EmailAttachment(String, IRandomAccessStreamReference)
使用指定的隨機存取資料流程,初始化 EmailAttachment 類別的新實例。
public:
EmailAttachment(Platform::String ^ fileName, IRandomAccessStreamReference ^ data);
EmailAttachment(winrt::hstring const& fileName, IRandomAccessStreamReference const& data);
public EmailAttachment(string fileName, IRandomAccessStreamReference data);
function EmailAttachment(fileName, data)
Public Sub New (fileName As String, data As IRandomAccessStreamReference)
參數
- fileName
-
String
Platform::String
winrt::hstring
要用於附件的檔案名。
包含附件資料的隨機存取資料流程。
Windows 需求
應用程式功能 |
email
emailSystem
|
適用於
EmailAttachment(String, IRandomAccessStreamReference, String)
初始化 EmailAttachment 類別的新實例。
public:
EmailAttachment(Platform::String ^ fileName, IRandomAccessStreamReference ^ data, Platform::String ^ mimeType);
EmailAttachment(winrt::hstring const& fileName, IRandomAccessStreamReference const& data, winrt::hstring const& mimeType);
public EmailAttachment(string fileName, IRandomAccessStreamReference data, string mimeType);
function EmailAttachment(fileName, data, mimeType)
Public Sub New (fileName As String, data As IRandomAccessStreamReference, mimeType As String)
參數
- fileName
-
String
Platform::String
winrt::hstring
附件的檔案名。
要用來下載附件的資料流程。
- mimeType
-
String
Platform::String
winrt::hstring
附件的 MIME 類型。
Windows 需求
應用程式功能 |
email
emailSystem
|