SoapMessage.ContentType 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
SOAP 요청이나 SOAP 응답의 HTTP Content-Type
을 가져오거나 설정합니다.
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
속성 값
SOAP 요청이나 SOAP 응답의 HTTP Content-Type
입니다. 기본값은 "text/xml"입니다.
예외
ContentType 또는 AfterSerialize 단계 동안 AfterDeserialize에 액세스한 경우
예제
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)
설명
ContentType 속성에서 액세스할 수 있습니다 합니다 BeforeSerialize 및 BeforeDeserialize 준비;이 고, 그렇지는 InvalidOperationException throw 됩니다.
사용 하 여 합니다 ContentEncoding 속성을 대신 합니다 ContentType SOAP 메시지의 인코딩에 대 한 보충 정보를 제공 하는 속성입니다.