FindFolderType.ParentFolderIds Property
The ParentFolderIds property gets or sets the folders that the FindFolder 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 FindFolderType
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 the folders for the FindFolder operation to search.
Remarks
The ParentFolderIds property can be set with arrays of either FolderIdType or DistinguishedFolderIdType objects. Both of these types extend BaseFolderIdType, which is an abstract class.
See Also