Validate method

void Validate(
  1. ExchangeVersion version
)
Validates list of folderIds against a specified request version. The version.

Implementation

void Validate(ExchangeVersion version) {
  for (AbstractFolderIdWrapper folderIdWrapper in this._ids) {
    folderIdWrapper.Validate(version);
  }
}