Attachment.Name 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定與這個附件關聯之內容類型中的 MIME 內容類型名稱值。
public:
property System::String ^ Name { System::String ^ get(); void set(System::String ^ value); };
public string? Name { get; set; }
public string Name { get; set; }
member this.Name : string with get, set
Public Property Name As String
屬性值
String,包含內容類型 name
的值,而且該內容類型是由 Name 屬性表示。
例外狀況
為設定作業指定的值為 null
。
為設定作業指定的值是 Empty ("")。
範例
下列程式代碼範例示範如何顯示附件的相關信息。
static void DisplayFileAttachment( Attachment^ a )
{
Console::WriteLine( L"Content Disposition {0}", a->ContentDisposition );
Console::WriteLine( L"Content Type {0}", a->ContentType );
Console::WriteLine( L"Name {0}", a->Name );
}
public static void DisplayFileAttachment(Attachment a)
{
Console.WriteLine("Content Disposition {0}", a.ContentDisposition.ToString());
Console.WriteLine("Content Type {0}", a.ContentType.ToString());
Console.WriteLine("Name {0}", a.Name);
}
備註
屬性 Name 會用於為此附件產生的 Content-Type 標頭中。 Name收到含有附件的電子郵件時,會顯示為附件的名稱。 RFC 2045 第 5.1 節會說明詳細說明 Content-Type 標頭語法的文法。 RFC 2046 提供有關 MIME 媒體類型和其參數的詳細資訊。 這些 RFC 位於 https://www.ietf.org/。