WebOperationContext.CreateTextResponse Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Crea un messaggio di testo formattato.
Overload
CreateTextResponse(String, String, Encoding) |
Crea un messaggio di testo formattato. |
CreateTextResponse(String, String) |
Crea un messaggio di testo formattato. |
CreateTextResponse(Action<TextWriter>, String, Encoding) |
Crea un messaggio di testo formattato. |
CreateTextResponse(String) |
Crea un messaggio di risposta di testo formattato. |
CreateTextResponse(Action<TextWriter>, String) |
Crea un messaggio di testo formattato. |
CreateTextResponse(String, String, Encoding)
Crea un messaggio di testo formattato.
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
Parametri
- text
- String
Testo da scrivere nel messaggio.
- contentType
- String
Tipo di contenuto del messaggio.
- encoding
- Encoding
Codifica da utilizzare.
Restituisce
Messaggio di testo formattato.
Si applica a
CreateTextResponse(String, String)
Crea un messaggio di testo formattato.
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
Parametri
- text
- String
Testo da scrivere nel messaggio.
- contentType
- String
Tipo di contenuto del messaggio.
Restituisce
Messaggio di testo formattato.
Si applica a
CreateTextResponse(Action<TextWriter>, String, Encoding)
Crea un messaggio di testo formattato.
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
Parametri
- textWriter
- Action<TextWriter>
Delegato che scrive i dati di testo.
- contentType
- String
Tipo di contenuto del messaggio.
- encoding
- Encoding
Codifica da utilizzare.
Restituisce
Messaggio di testo formattato.
Si applica a
CreateTextResponse(String)
Crea un messaggio di risposta di testo formattato.
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
Parametri
- text
- String
Testo da scrivere nel messaggio.
Restituisce
Messaggio di testo formattato.
Si applica a
CreateTextResponse(Action<TextWriter>, String)
Crea un messaggio di testo formattato.
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
Parametri
- textWriter
- Action<TextWriter>
Delegato che scrive i dati di testo.
- contentType
- String
Tipo di contenuto del messaggio.
Restituisce
Messaggio di testo formattato.