SendItemType.SaveItemToFolder Property
The SaveItemToFolder property gets or sets a Boolean value that specifies whether a copy of the sent item is saved. This property is required. This is a read/write property.
Namespace: ExchangeWebServices
Assembly: EWS (in EWS.dll)
Syntax
'Declaration
Public Property SaveItemToFolder As Boolean
Get
Set
'Usage
Dim instance As SendItemType
Dim value As Boolean
value = instance.SaveItemToFolder
instance.SaveItemToFolder = value
public bool SaveItemToFolder { get; set; }
Property Value
Type: System.Boolean
The SaveItemToFolder property returns true if the sent item is saved to a folder; otherwise, it returns false.
Remarks
If this property is set to true, the folder that is identified by the SavedItemFolderId property will receive a copy of the sent item. If this property is set to true and the SavedItemFolderId property is not set, a copy of the sent item will be saved in the Sent Items default folder.
See Also