Condividi tramite


SoapMessage.ContentType Proprietà

Definizione

Ottiene o imposta il Content-Type HTTP della richiesta SOAP o della risposta SOAP.

public:
 property System::String ^ ContentType { System::String ^ get(); void set(System::String ^ value); };
public string ContentType { get; set; }
member this.ContentType : string with get, set
Public Property ContentType As String

Valore della proprietà

Content-Type HTTP della richiesta SOAP o della risposta SOAP. L'impostazione predefinita è "text/xml".

Eccezioni

Esempio

myStreamWriter->WriteLine( "The contents of HTTP Content-type header is:" );
myStreamWriter->WriteLine( "\t{0}", message->ContentType );
myStreamWriter.WriteLine("The contents of HTTP Content-type header is:");
myStreamWriter.WriteLine("\t" + message.ContentType);
myStreamWriter.WriteLine("The contents of HTTP Content-type header is:")
myStreamWriter.WriteLine(ControlChars.Tab & message.ContentType)

Commenti

È ContentType possibile accedere alla proprietà solo nelle BeforeSerialize fasi e BeforeDeserialize ; in caso contrario, viene generata un'eccezione InvalidOperationException .

Utilizzare la ContentEncoding proprietà anziché la ContentType proprietà per fornire informazioni supplementari sulla codifica di un messaggio SOAP.

Si applica a

Vedi anche