FolderIdWrapper constructor

FolderIdWrapper(
  1. FolderId? folderId
)
Initializes a new instance of FolderIdWrapper. The FolderId object providing the Id.

Implementation

FolderIdWrapper(FolderId? folderId) {
  EwsUtilities.Assert(
      folderId != null, "FolderIdWrapper.ctor", "folderId is null");

  this._folderId = folderId;
}