Grouping.withSettings constructor
Grouping.withSettings(
- PropertyDefinitionBase groupOn,
- SortDirection sortDirection,
- PropertyDefinitionBase aggregateOn,
- AggregateType aggregateType,
Implementation
Grouping.withSettings(
PropertyDefinitionBase groupOn,
enumerations.SortDirection sortDirection,
PropertyDefinitionBase aggregateOn,
enumerations.AggregateType aggregateType)
: super() {
EwsUtilities.ValidateParam(groupOn, "groupOn");
EwsUtilities.ValidateParam(aggregateOn, "aggregateOn");
this.groupOn = groupOn;
this.sortDirection = sortDirection;
this.aggregateOn = aggregateOn;
this.aggregateType = aggregateType;
}