共用方式為


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

要使用的編碼方式。

傳回

Message

文字格式化的訊息。

適用於

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

訊息的內容型別。

傳回

Message

文字格式化的訊息。

適用於

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

要使用的編碼方式。

傳回

Message

文字格式化的訊息。

適用於

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

要寫入至訊息的文字。

傳回

Message

文字格式化的訊息。

適用於

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

訊息的內容型別。

傳回

Message

文字格式化的訊息。

適用於