다음을 통해 공유


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

텍스트 형식의 메시지입니다.

적용 대상