FeedItem Constructor (FeedItem)

SimpleFeedReader

Collapse image Expand Image Copy image CopyHover image
Initializes a new FeedItem by copying the passed item's properties into the new instance.

Namespace: SimpleFeedReader
Assembly: SimpleFeedReader (in SimpleFeedReader.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public FeedItem(
	FeedItem item
)
Visual Basic
Public Sub New ( 
	item As FeedItem
)
Visual C++
public:
FeedItem(
	FeedItem^ item
)
F#
new : 
        item : FeedItem -> FeedItem

Parameters

item
Type: SimpleFeedReader..::..FeedItem
The FeedItem to copy.

Remarks

This is a copy-constructor.

See Also