次の方法で共有


WebOperationContext.CreateTextResponse メソッド

定義

テキスト形式のメッセージを作成します。

オーバーロード

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

メッセージのコンテンツ タイプ。

戻り値

テキスト形式のメッセージ。

適用対象