C# 클래스 SimpleFeedReader.FeedItem

Represents an item from a SyndicationFeed.
파일 보기 프로젝트 열기: RobThree/SimpleFeedReader 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
FeedItem ( ) : System

Initializes a new FeedItem.

FeedItem ( FeedItem item ) : System

Initializes a new FeedItem by copying the passed item's properties into the new instance.

This is a copy-constructor.

GetContent ( ) : string

Returns content, if any, otherwise returns the summary as content.

This method is intended as conveinience-method.

GetSummary ( ) : string

Returns the summary, if any, otherwise returns the content as the summary.

This method is intended as conveinience-method.

메소드 상세

FeedItem() 공개 메소드

Initializes a new FeedItem.
public FeedItem ( ) : System
리턴 System

FeedItem() 공개 메소드

Initializes a new FeedItem by copying the passed item's properties into the new instance.
This is a copy-constructor.
public FeedItem ( FeedItem item ) : System
item FeedItem The to copy.
리턴 System

GetContent() 공개 메소드

Returns content, if any, otherwise returns the summary as content.
This method is intended as conveinience-method.
public GetContent ( ) : string
리턴 string

GetSummary() 공개 메소드

Returns the summary, if any, otherwise returns the content as the summary.
This method is intended as conveinience-method.
public GetSummary ( ) : string
리턴 string