AttachmentBase コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
新しい AttachmentBase をインスタンス化します。
オーバーロード
AttachmentBase(Stream) |
指定した AttachmentBase を使用して Stream をインスタンス化します。 |
AttachmentBase(String) |
指定したファイル名を使用して、AttachmentBase をインスタンス化します。 |
AttachmentBase(Stream, ContentType) |
指定した Stream および ContentType を使用して、AttachmentBase をインスタンス化します。 |
AttachmentBase(Stream, String) |
指定した AttachmentBase およびメディア タイプを使用して、Stream をインスタンス化します。 |
AttachmentBase(String, ContentType) |
指定したファイル名およびコンテンツ タイプを使用して、AttachmentBase をインスタンス化します。 |
AttachmentBase(String, String) |
指定したファイル名およびメディア タイプを使用して、AttachmentBase をインスタンス化します。 |
AttachmentBase(Stream)
- ソース:
- Attachment.cs
- ソース:
- Attachment.cs
- ソース:
- Attachment.cs
指定した AttachmentBase を使用して Stream をインスタンス化します。
protected:
AttachmentBase(System::IO::Stream ^ contentStream);
protected AttachmentBase (System.IO.Stream contentStream);
new System.Net.Mail.AttachmentBase : System.IO.Stream -> System.Net.Mail.AttachmentBase
Protected Sub New (contentStream As Stream)
パラメーター
- contentStream
- Stream
この添付ファイルのコンテンツを含むストリーム。
例外
contentStream
が null
です。
適用対象
AttachmentBase(String)
- ソース:
- Attachment.cs
- ソース:
- Attachment.cs
- ソース:
- Attachment.cs
指定したファイル名を使用して、AttachmentBase をインスタンス化します。
protected:
AttachmentBase(System::String ^ fileName);
protected AttachmentBase (string fileName);
new System.Net.Mail.AttachmentBase : string -> System.Net.Mail.AttachmentBase
Protected Sub New (fileName As String)
パラメーター
- fileName
- String
この添付ファイルのコンテンツを保持しているファイル名。
例外
fileName
が null
です。
適用対象
AttachmentBase(Stream, ContentType)
- ソース:
- Attachment.cs
- ソース:
- Attachment.cs
- ソース:
- Attachment.cs
指定した Stream および ContentType を使用して、AttachmentBase をインスタンス化します。
protected:
AttachmentBase(System::IO::Stream ^ contentStream, System::Net::Mime::ContentType ^ contentType);
protected AttachmentBase (System.IO.Stream contentStream, System.Net.Mime.ContentType? contentType);
protected AttachmentBase (System.IO.Stream contentStream, System.Net.Mime.ContentType contentType);
new System.Net.Mail.AttachmentBase : System.IO.Stream * System.Net.Mime.ContentType -> System.Net.Mail.AttachmentBase
Protected Sub New (contentStream As Stream, contentType As ContentType)
パラメーター
- contentStream
- Stream
この添付ファイルのコンテンツを含むストリーム。
- contentType
- ContentType
コンテンツのタイプ。
例外
contentStream
が null
です。
contentType
は有効な値ではありません。
適用対象
AttachmentBase(Stream, String)
- ソース:
- Attachment.cs
- ソース:
- Attachment.cs
- ソース:
- Attachment.cs
指定した AttachmentBase およびメディア タイプを使用して、Stream をインスタンス化します。
protected:
AttachmentBase(System::IO::Stream ^ contentStream, System::String ^ mediaType);
protected AttachmentBase (System.IO.Stream contentStream, string? mediaType);
protected AttachmentBase (System.IO.Stream contentStream, string mediaType);
new System.Net.Mail.AttachmentBase : System.IO.Stream * string -> System.Net.Mail.AttachmentBase
Protected Sub New (contentStream As Stream, mediaType As String)
パラメーター
- contentStream
- Stream
この添付ファイルのコンテンツを含むストリーム。
- mediaType
- String
コンテンツの MIME メディア タイプ。
例外
contentStream
が null
です。
mediaType
は有効な値ではありません。
適用対象
AttachmentBase(String, ContentType)
- ソース:
- Attachment.cs
- ソース:
- Attachment.cs
- ソース:
- Attachment.cs
指定したファイル名およびコンテンツ タイプを使用して、AttachmentBase をインスタンス化します。
protected:
AttachmentBase(System::String ^ fileName, System::Net::Mime::ContentType ^ contentType);
protected AttachmentBase (string fileName, System.Net.Mime.ContentType? contentType);
protected AttachmentBase (string fileName, System.Net.Mime.ContentType contentType);
new System.Net.Mail.AttachmentBase : string * System.Net.Mime.ContentType -> System.Net.Mail.AttachmentBase
Protected Sub New (fileName As String, contentType As ContentType)
パラメーター
- fileName
- String
この添付ファイルのコンテンツを保持しているファイル名。
- contentType
- ContentType
コンテンツのタイプ。
例外
fileName
が null
です。
contentType
は有効な値ではありません。
適用対象
AttachmentBase(String, String)
- ソース:
- Attachment.cs
- ソース:
- Attachment.cs
- ソース:
- Attachment.cs
指定したファイル名およびメディア タイプを使用して、AttachmentBase をインスタンス化します。
protected:
AttachmentBase(System::String ^ fileName, System::String ^ mediaType);
protected AttachmentBase (string fileName, string? mediaType);
protected AttachmentBase (string fileName, string mediaType);
new System.Net.Mail.AttachmentBase : string * string -> System.Net.Mail.AttachmentBase
Protected Sub New (fileName As String, mediaType As String)
パラメーター
- fileName
- String
この添付ファイルのコンテンツを保持しているファイル名。
- mediaType
- String
コンテンツの MIME メディア タイプ。
例外
fileName
が null
です。
mediaType
は有効な値ではありません。
適用対象
.NET