SyndicationItem.Summary 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
배포 항목의 요약을 가져오거나 설정합니다.
public:
property System::ServiceModel::Syndication::TextSyndicationContent ^ Summary { System::ServiceModel::Syndication::TextSyndicationContent ^ get(); void set(System::ServiceModel::Syndication::TextSyndicationContent ^ value); };
public System.ServiceModel.Syndication.TextSyndicationContent Summary { get; set; }
member this.Summary : System.ServiceModel.Syndication.TextSyndicationContent with get, set
Public Property Summary As TextSyndicationContent
속성 값
항목의 요약을 포함하는 TextSyndicationContent 입니다.
예제
다음 코드에서는 Summary 인스턴스에 SyndicationItem 속성을 설정하는 방법을 보여 줍니다.
SyndicationItem item = new SyndicationItem("Item Title", "Item Content", new Uri("http://Item/Alternate/Link"));
item.Summary = new TextSyndicationContent("This is a syndication item summary");
Dim item As New SyndicationItem("Item Title", "Item Content", New Uri("http:' Item/Alternate/Link"))
item.Summary = New TextSyndicationContent("This is a syndication item summary")
다음 XML에서는 Summary 속성이 Atom 1.0으로 serialize되는 방법을 보여 줍니다.
<summary type="text">this is a summary for my item</summary>
다음 XML에서는 Summary 속성이 RSS 2.0으로 serialize되는 방법을 보여 줍니다.
<description>this is a summary for my item</description>
설명
Atom 1.0으로 직렬화된 경우 이 속성은 요소에 <summary>
기록됩니다. RSS 2.0으로 직렬화된 경우 이 속성은 요소에 <description>
기록됩니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET