FindItemType.Traversal Property
The Traversal property gets or sets the traversal scheme that is used to search for items in folders. This property is required. This is a read/write property.
Namespace: ExchangeWebServices
Assembly: EWS (in EWS.dll)
Syntax
'Declaration
Public Property Traversal As ItemQueryTraversalType
Get
Set
'Usage
Dim instance As FindItemType
Dim value As ItemQueryTraversalType
value = instance.Traversal
instance.Traversal = value
public ItemQueryTraversalType Traversal { get; set; }
Property Value
Type: ExchangeWebServices.ItemQueryTraversalType
The Traversal property returns an ItemQueryTraversalType enumeration that defines the type of traversal that is performed for the search.
Remarks
FindItem only supports shallow or soft-deleted traversals of a folder. To perform deep traversals, use search folders.
This property is required for FindItem operations.
See Also