다음을 통해 공유


SyndicationLink.Uri 속성

정의

연결된 리소스의 URI를 가져오거나 설정합니다.

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

속성 값

Uri

링크된 리소스의 URI를 포함하는 Uri 인스턴스입니다.

예제

다음 코드는 배포 링크의 URI를 설정하는 방법을 보여줍니다.

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

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

다음 XML에서는 Uri 속성이 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으로 직렬화된 경우 이 값은 요소의 href 특성 <link> 으로 기록됩니다.

RSS 2.0으로 직렬화된 경우 이 값은 요소의 href 특성 <a10:link> 으로 기록됩니다.

적용 대상