SoapMessage.ContentType Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera lub ustawia protokół HTTP Content-Type
żądania SOAP lub odpowiedzi protokołu 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
Wartość właściwości
Http Content-Type
żądania SOAP lub odpowiedzi PROTOKOŁU SOAP. Wartość domyślna to "text/xml".
Wyjątki
ContentType jest dostępny AfterSerialize lub AfterDeserialize etapy.
Przykłady
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)
Uwagi
Dostęp ContentType do właściwości można uzyskać tylko w BeforeSerialize etapach i BeforeDeserialize . W przeciwnym razie InvalidOperationException jest zgłaszana wartość .
ContentEncoding Użyj właściwości zamiast ContentType właściwości , aby podać dodatkowe informacje o kodowaniu komunikatu SOAP.