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
消息的内容类型。
返回
文本格式的消息。