FindItemType.ParentFolderIds Property
The ParentFolderIds property gets or sets the folders that the FindItem operation searches. This property is required. This is a read/write property.
Namespace: ExchangeWebServices
Assembly: EWS (in EWS.dll)
Syntax
'Declaration
Public Property ParentFolderIds As BaseFolderIdType()
Get
Set
'Usage
Dim instance As FindItemType
Dim value As BaseFolderIdType()
value = instance.ParentFolderIds
instance.ParentFolderIds = value
public BaseFolderIdType[] ParentFolderIds { get; set; }
Property Value
Type: []
The ParentFolderIds property returns an array of BaseFolderIdType objects that contains the identifiers of all folders for the FindItem operation to search.
Remarks
The ParentFolderIds property can be set with arrays of either FolderIdType or DistinguishedFolderIdType objects. Both types extend BaseFolderIdType, which is an abstract class.
This property is required and must be set for FindItem operations.
See Also