 | EWSContextFindItems Method |
Finds items in an Exchange Mailbox.
Namespace:
Koden.Utils.Exchange
Assembly:
Koden.Utils.Exchange (in Koden.Utils.Exchange.dll) Version: 1.0.6453.26061
Syntaxpublic FWRetVal<FindItemsResults<Item>> FindItems(
string subjSearch,
string bodySearch,
int maxItems = 50,
bool attachmentRequired = false
)
Public Function FindItems (
subjSearch As String,
bodySearch As String,
Optional maxItems As Integer = 50,
Optional attachmentRequired As Boolean = false
) As FWRetVal(Of FindItemsResults(Of Item))
public:
FWRetVal<FindItemsResults<Item^>^>^ FindItems(
String^ subjSearch,
String^ bodySearch,
int maxItems = 50,
bool attachmentRequired = false
)
member FindItems :
subjSearch : string *
bodySearch : string *
?maxItems : int *
?attachmentRequired : bool
(* Defaults:
let _maxItems = defaultArg maxItems 50
let _attachmentRequired = defaultArg attachmentRequired false
*)
-> FWRetVal<FindItemsResults<Item>>
Parameters
- subjSearch
- Type: SystemString
The subject to filter on. - bodySearch
- Type: SystemString
The body text to filter on. - maxItems (Optional)
- Type: SystemInt32
The maximum items. - attachmentRequired (Optional)
- Type: SystemBoolean
Is an attachment required?
Return Value
Type:
FWRetValFindItemsResultsItem
A List of Exchange Items that can be worked with individually
FwRetval.Record holds the list of items
See Also