SyndicationLink.MediaType 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
연결된 리소스의 미디어 형식을 가져오거나 설정합니다.
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
속성 값
링크된 리소스의 미디어 유형입니다.
예제
다음 코드는 배포 링크에서 미디어 형식을 설정하는 방법을 보여줍니다.
다음 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>
으로 작성됩니다.