FeedProducer Constructor
Initializes a new instance of the FeedProducer class that contains the specified synchronization provider, ID converter, and item converter.
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.
| Exception | Condition |
|---|---|
| ArgumentNullException | storeProvider, idConverter, or itemConverter is a nullptr. |
Show: