Udostępnij za pośrednictwem


SoapMessage.ContentType Właściwość

Definicja

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

String

Http Content-Type żądania SOAP lub odpowiedzi PROTOKOŁU SOAP. Wartość domyślna to "text/xml".

Wyjątki

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.

Dotyczy

Zobacz też