InternalCreate method

Future<List<Item>> InternalCreate(
  1. FolderId? destinationFolderId,
  2. MessageDisposition messageDisposition
)
Create the response object. The destination folder id. The message disposition.

Implementation

Future<List<Item>> InternalCreate(
    FolderId? destinationFolderId, MessageDisposition messageDisposition) {
  (this.PropertyBag[ResponseObjectSchema.ReferenceItemId] as ItemId)
      .Assign(this._referenceItem.Id!);

  return this.Service.InternalCreateResponseObject(
      this, destinationFolderId, messageDisposition);
}