FeedProducer Constructor

Initializes a new instance of the FeedProducer class that contains the specified synchronization provider, ID converter, and item converter.

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

public:
FeedProducer(
	KnowledgeSyncProvider^ storeProvider, 
	FeedIdConverter^ idConverter, 
	FeedItemConverter^ itemConverter
)

Parameters

storeProvider
Type: Microsoft.Synchronization::KnowledgeSyncProvider
The provider that exports the data to produce as a FeedSync feed.
idConverter
Type: Microsoft.Synchronization.FeedSync::FeedIdConverter
A converter that is used to translate IDs from the provider format to the FeedSync format.
itemConverter
Type: Microsoft.Synchronization.FeedSync::FeedItemConverter
A converter that is used to translate items from the provider format to the FeedSync format.

ExceptionCondition
ArgumentNullException

storeProvider, idConverter, or itemConverter is a nullptr.

Show: