Remove method

bool Remove(
  1. FolderId folderId
)
Removes the specified folder Id from the collection. The folder Id to remove from the collection.

Implementation

bool Remove(FolderId folderId) {
  EwsUtilities.ValidateParam(folderId, "folderId");

  return this.InternalRemove(folderId);
}