Class SeekToConditionItemView
- Namespace
- Microsoft.Exchange.WebServices.Data
- Assembly
- Microsoft.Exchange.WebServices.dll
Represents the view settings in a folder search operation.
public sealed class SeekToConditionItemView : ViewBase
- Inheritance
-
SeekToConditionItemView
- Inherited Members
Constructors
SeekToConditionItemView(SearchFilter, int)
Initializes a new instance of the SeekToConditionItemView class.
public SeekToConditionItemView(SearchFilter condition, int pageSize)
Parameters
condition
SearchFilterCondition to be used when seeking.
pageSize
intThe maximum number of elements the search operation should return.
SeekToConditionItemView(SearchFilter, int, OffsetBasePoint)
Initializes a new instance of the SeekToConditionItemView class.
public SeekToConditionItemView(SearchFilter condition, int pageSize, OffsetBasePoint offsetBasePoint)
Parameters
condition
SearchFilterCondition to be used when seeking.
pageSize
intThe maximum number of elements the search operation should return.
offsetBasePoint
OffsetBasePointThe base point of the offset.
Properties
Condition
Gets or sets the condition for seek. Available search filter classes include SearchFilter.IsEqualTo, SearchFilter.ContainsSubstring and SearchFilter.SearchFilterCollection. If SearchFilter is null, no search filters are applied.
public SearchFilter Condition { get; set; }
Property Value
OffsetBasePoint
Gets or sets the base point of the offset.
public OffsetBasePoint OffsetBasePoint { get; set; }
Property Value
OrderBy
Gets the properties against which the returned items should be ordered.
public OrderByCollection OrderBy { get; }
Property Value
PageSize
The maximum number of items or folders the search operation should return.
public int PageSize { get; set; }
Property Value
Traversal
Gets or sets the search traversal mode. Defaults to ItemTraversal.Shallow.
public ItemTraversal Traversal { get; set; }