You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.
ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP2);
ExchangeCredentials credentials = new WebCredentials("username", "pwd");
service.setCredentials(credentials);
service.setUrl(new URI("https://xyz/EWS/Exchange.asmx"));
Mailbox mailbox = new Mailbox("sharedMailboxAddress");
FolderId folderId = new FolderId(WellKnownFolderName.MsgFolderRoot, mailbox);
FolderView folderView = new FolderView(20);
FindFoldersResults results = service.findFolders(folderId, folderView);
Currently, I am able to access the shared mailbox of a user account if I already know the address of the shared mailbox. However, if I know just the user account details (but not the shared mailboxes it has access to), how can I retrieve the list of shared mailboxes linked to this user account?
The text was updated successfully, but these errors were encountered:
Currently, I am able to access the shared mailbox of a user account if I already know the address of the shared mailbox. However, if I know just the user account details (but not the shared mailboxes it has access to), how can I retrieve the list of shared mailboxes linked to this user account?
The text was updated successfully, but these errors were encountered: