CombinedFilterInfo Constructor
Initializes a new instance of the CombinedFilterInfo class that contains the specified filters and a value that indicates the way to combine them.
Assembly: Microsoft.Synchronization (in Microsoft.Synchronization.dll)
public:
CombinedFilterInfo(
FilterInfo^ firstFilterInfo,
FilterInfo^ secondFilterInfo,
FilterCombinationType combinationType
)
Parameters
- firstFilterInfo
- Type: Microsoft.Synchronization::FilterInfo
Information about one of the filters to combine.
- secondFilterInfo
- Type: Microsoft.Synchronization::FilterInfo
Information about the other filter to combine.
- combinationType
- Type: Microsoft.Synchronization::FilterCombinationType
Indicates the way to combine firstFilterInfo and secondFilterInfo.
| Exception | Condition |
|---|---|
| ArgumentNullException | A required parameter is a nullptr. |
| ArgumentOutOfRangeException | combinationType is not Intersection. |
| SyncIdFormatMismatchException | The ID format schema of firstFilterInfo differs from the ID format schema of secondFilterInfo. |
Show: