More .NET libraries
-
Rebex Mail Pack
IMAP, MS Graph, EWS, POP3, SMTP, MIME, S/MIME, MSG
-
Rebex Total Pack
All Rebex .NET libraries together
Back to feature list...
Compatibility
XCOPY deployment
When distributing an application using Rebex EWS library, simply copy the following DLL files (.NET assemblies) with your application:
Rebex.Common.dll
Rebex.Networking.dll
Rebex.Mail.dll
Rebex.Smtp.dll
Rebex.Ews.dll
There is no need to install, configure or distribute anything else to make them work.
Supported Exchange Web Services versions
The following servers currently support Exchange Web Services (EWS):
- Microsoft Exchange 2007
- Microsoft Exchange 2010
- Microsoft Exchange 2013
- Microsoft Exchange 2016
- Microsoft Office 365 (Exchange Online)
Fine-tuning client behavior
The Smtp
and Ews
objects makes it possible to adjust various client settings
and workarounds.
Some settings are available at the Smtp
and Ews
objects themselves.
This includes the Encoding
property (not available for Ews
) that specifies a charset to be used when encoding commands and decoding responses.
However, since all of those should normally use ASCII, changing the default value is seldom needed.
// create client instance // ... // set encoding to UTF-8 client.Encoding = Encoding.UTF8;
' create client instance ' ... ' set encoding to UTF-8 client.Encoding = Encoding.UTF8
The common settings include a Timeout
property as well.
Use it to change the default timeout value of 60,000 milliseconds.
Back to feature list...