다음을 통해 공유


SyndicationLink.MediaType 속성

정의

연결된 리소스의 미디어 형식을 가져오거나 설정합니다.

public:
 property System::String ^ MediaType { System::String ^ get(); void set(System::String ^ value); };
public string MediaType { get; set; }
member this.MediaType : string with get, set
Public Property MediaType As String

속성 값

String

링크된 리소스의 미디어 유형입니다.

예제

다음 코드는 배포 링크에서 미디어 형식을 설정하는 방법을 보여줍니다.

다음 XML에서는 MediaType 속성이 Atom 1.0으로 serialize되는 방법을 보여 줍니다.

<link customAttribute="value" rel="alternate" type="text/html" title="Link Title" length="1000" href="http://server/link" />

다음 XML에서는 MediaType 속성이 RSS 2.0으로 serialize되는 방법을 보여 줍니다.

<a10:link customAttribute="value" rel="alternate" type="text/html" title="Link Title" length="1000" href="http://server/link" />

설명

Atom 1.0으로 직렬화된 경우 이 값은 요소의 <link> 특성으로 type 작성됩니다. RSS 2.0으로 직렬화된 경우 이 값은 요소의 type 특성 <a10:link> 으로 작성됩니다.

적용 대상