FeedProducer::ProduceFeed Method

Produces a FeedSync feed to the specified stream. The feed contains items that are supplied by the associated synchronization provider.

Namespace:  Microsoft.Synchronization.FeedSync
Assembly:  Microsoft.Synchronization (in Microsoft.Synchronization.dll)

public:
void ProduceFeed(
	Stream^ feedStream
)

Parameters

feedStream
Type: System.IO::Stream
The stream that will receive the FeedSync feed. This stream must initially contain an empty RSS or Atom feed. Sync Framework must have read and write access to the stream.

ExceptionCondition
ArgumentNullException

feedStream is a nullptr.

ArgumentException

feedStream cannot be read from, cannot be written to, or contains no feed items.

This method produces an incremental feed when IncrementalFeedBaseline is not a nullptr. Otherwise, a full feed is produced.

Show: