SoapMessage.ContentType Proprietà
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.
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
Si accede a ContentType nelle fasi AfterSerialize o AfterDeserialize.
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.