FindItemType.Item1 Property
The Item1 property gets or sets the grouping type that describes how the query result set is grouped in the response. This property gets or sets either a GroupByType or DistinguishedGroupByType object. This property is optional. This is a read/write property.
Namespace: ExchangeWebServices
Assembly: EWS (in EWS.dll)
Syntax
'Declaration
Public Property Item1 As BaseGroupByType
Get
Set
'Usage
Dim instance As FindItemType
Dim value As BaseGroupByType
value = instance.Item1
instance.Item1 = value
public BaseGroupByType Item1 { get; set; }
Property Value
Type: ExchangeWebServices.BaseGroupByType
The Item1 property returns a BaseGroupByType object that represents the type of grouping scheme that is applied to the result set.
Remarks
The Item1 property can be set with either a GroupByType or DistinguishedGroupByType object. Both types extend BaseGroupByType, which is an abstract class. This property is optional. If this property is not set, the result set will not be grouped.
Note
Some properties cannot be used to form the group definitions.
See Also