AddWithFolderId method
Implementation
void AddWithFolderId(FolderId folderId) {
EwsUtilities.ValidateParam(folderId, "folderId");
if (this.Contains(folderId)) {
throw new ArgumentException("""Strings.IdAlreadyInList, "folderId""" "");
}
this.InternalAdd(folderId);
}