WebOperationContext.CreateTextResponse メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
テキスト形式のメッセージを作成します。
オーバーロード
CreateTextResponse(String, String, Encoding) |
テキスト形式のメッセージを作成します。 |
CreateTextResponse(String, String) |
テキスト形式のメッセージを作成します。 |
CreateTextResponse(Action<TextWriter>, String, Encoding) |
テキスト形式のメッセージを作成します。 |
CreateTextResponse(String) |
テキスト形式の応答メッセージを作成します。 |
CreateTextResponse(Action<TextWriter>, String) |
テキスト形式のメッセージを作成します。 |
CreateTextResponse(String, String, Encoding)
テキスト形式のメッセージを作成します。
public:
System::ServiceModel::Channels::Message ^ CreateTextResponse(System::String ^ text, System::String ^ contentType, System::Text::Encoding ^ encoding);
public System.ServiceModel.Channels.Message CreateTextResponse (string text, string contentType, System.Text.Encoding encoding);
member this.CreateTextResponse : string * string * System.Text.Encoding -> System.ServiceModel.Channels.Message
Public Function CreateTextResponse (text As String, contentType As String, encoding As Encoding) As Message
パラメーター
- text
- String
メッセージに書き込むテキスト。
- contentType
- String
メッセージのコンテンツ タイプ。
- encoding
- Encoding
使用するエンコーディング。
戻り値
テキスト形式のメッセージ。
適用対象
CreateTextResponse(String, String)
テキスト形式のメッセージを作成します。
public:
System::ServiceModel::Channels::Message ^ CreateTextResponse(System::String ^ text, System::String ^ contentType);
public System.ServiceModel.Channels.Message CreateTextResponse (string text, string contentType);
member this.CreateTextResponse : string * string -> System.ServiceModel.Channels.Message
Public Function CreateTextResponse (text As String, contentType As String) As Message
パラメーター
- text
- String
メッセージに書き込むテキスト。
- contentType
- String
メッセージのコンテンツ タイプ。
戻り値
テキスト形式のメッセージ。
適用対象
CreateTextResponse(Action<TextWriter>, String, Encoding)
テキスト形式のメッセージを作成します。
public:
System::ServiceModel::Channels::Message ^ CreateTextResponse(Action<System::IO::TextWriter ^> ^ textWriter, System::String ^ contentType, System::Text::Encoding ^ encoding);
public System.ServiceModel.Channels.Message CreateTextResponse (Action<System.IO.TextWriter> textWriter, string contentType, System.Text.Encoding encoding);
member this.CreateTextResponse : Action<System.IO.TextWriter> * string * System.Text.Encoding -> System.ServiceModel.Channels.Message
Public Function CreateTextResponse (textWriter As Action(Of TextWriter), contentType As String, encoding As Encoding) As Message
パラメーター
- textWriter
- Action<TextWriter>
テキスト データを書き込むデリゲート。
- contentType
- String
メッセージのコンテンツ タイプ。
- encoding
- Encoding
使用するエンコーディング。
戻り値
テキスト形式のメッセージ。
適用対象
CreateTextResponse(String)
テキスト形式の応答メッセージを作成します。
public:
System::ServiceModel::Channels::Message ^ CreateTextResponse(System::String ^ text);
public System.ServiceModel.Channels.Message CreateTextResponse (string text);
member this.CreateTextResponse : string -> System.ServiceModel.Channels.Message
Public Function CreateTextResponse (text As String) As Message
パラメーター
- text
- String
メッセージに書き込むテキスト。
戻り値
テキスト形式のメッセージ。
適用対象
CreateTextResponse(Action<TextWriter>, String)
テキスト形式のメッセージを作成します。
public:
System::ServiceModel::Channels::Message ^ CreateTextResponse(Action<System::IO::TextWriter ^> ^ textWriter, System::String ^ contentType);
public System.ServiceModel.Channels.Message CreateTextResponse (Action<System.IO.TextWriter> textWriter, string contentType);
member this.CreateTextResponse : Action<System.IO.TextWriter> * string -> System.ServiceModel.Channels.Message
Public Function CreateTextResponse (textWriter As Action(Of TextWriter), contentType As String) As Message
パラメーター
- textWriter
- Action<TextWriter>
テキスト データを書き込むデリゲート。
- contentType
- String
メッセージのコンテンツ タイプ。
戻り値
テキスト形式のメッセージ。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET