BindToItems method
Future<ServiceResponseCollection<GetItemResponse> >
BindToItems(
- Iterable<
ItemId> itemIds, - PropertySet propertySet
Implementation
Future<ServiceResponseCollection<GetItemResponse>> BindToItems(
Iterable<ItemId> itemIds, PropertySet propertySet) {
EwsUtilities.ValidateParamCollection(itemIds, "itemIds");
EwsUtilities.ValidateParam(propertySet, "propertySet");
return this.InternalBindToItems(
itemIds,
propertySet,
null,
/* anchorMailbox */
ServiceErrorHandling.ReturnErrors);
}