Aracılığıyla paylaş


SoapMessage.ContentType Özellik

Tanım

SOAP isteğinin veya SOAP yanıtının HTTP'sini Content-Type alır veya ayarlar.

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

Özellik Değeri

SOAP isteğinin VEYA SOAP yanıtının HTTP'sini Content-Type . Varsayılan değer "text/xml" şeklindedir.

Özel durumlar

Örnekler

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)

Açıklamalar

ContentType özelliğine yalnızca ve BeforeDeserialize aşamalarında BeforeSerialize erişilebilir; aksi takdirde bir InvalidOperationException oluşturulur.

SOAP iletisinin ContentEncoding kodlaması hakkında ek bilgi sağlamak için özelliği yerine ContentType özelliğini kullanın.

Şunlara uygulanır

Ayrıca bkz.