microsoft.public.exchange.development
[Top] [All Lists]

Re: Public Folders & Permissions

Subject: Re: Public Folders & Permissions
From: "Dmitry Streblechenko" <dmitry@xxxxxxxxxxx>
Date: Tue, 24 Oct 2006 10:59:44 -0700
Newsgroups: microsoft.public.exchange.development
You can either use the ACL component 
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/exchserv/html/comcpnts_29f2.asp)
 
designed to be used with CDO 1.21 or <plug> Redemption - it exposes ACL 
through the RDOFolder.ACL collection - see 
http://www.dimastr.com/redemption/rdo/RDOFolder.htm </plug>

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy  - Outlook, CDO
and MAPI Developer Tool

"Dmitry Arefyev" <Dmitry Arefyev@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message 
news:FE8BE470-416B-47F7-B55E-90A5FADE58A7@xxxxxxxxxxxxxxxx
> Hi, All!
>
> I get list of public folders on Exchange Server 2003:
>
> Application objOutx = new ApplicationClass();
> NameSpace objNS;
> MAPIFolder objFolders;
> ...
> objNS = objOutx.GetNamespace("MAPI");
> objFolders =
> objOutx.Session.GetDefaultFolder(OlDefaultFolders.olPublicFoldersAllPublicFolders);
>
> foreach (MAPIFolder objFolder in objFolders.Folders)
> {
> lstFolders.Items.Add(objFolder.Name); // Add List Folders into ListBox
> }
>
> How can I get list of permission of folders, which have been set on 
> folders??? 



<Prev in Thread] Current Thread [Next in Thread>