次の方法で共有


MessageEncoder.ContentType プロパティ

定義

派生クラスでオーバーライドされた場合、エンコーダーで使用される MIME コンテンツ タイプを取得します。

public:
 abstract property System::String ^ ContentType { System::String ^ get(); };
public abstract string ContentType { get; }
member this.ContentType : string
Public MustOverride ReadOnly Property ContentType As String

プロパティ値

メッセージ エンコーダーがサポートするコンテンツ タイプ。

public override string ContentType
{
    get
    {
        return this.contentType;
    }
}

注釈

コンテンツ タイプは Multipurpose Internet Mail Exchange (MIME) ヘッダーであり、MIME メッセージの先頭およびそれとは別の本文内に出現します。 コンテンツ タイプ ヘッダーは、メッセージ本文のデータのメディア タイプとサブタイプを指定し、データの文字エンコーディング (オプション) を指定するために使用します。 サポートできる MIME コンテンツ タイプの例: "application/soap+xml;charset='utf8'"

コンテンツ タイプ ヘッダーの構文を詳しく説明する文法については、 RFC 2045 セクション 5.1 を参照してください。 RFC 2046 では、MIME メディアの種類とそのパラメーターに関する詳細情報が提供されます。

適用対象