GetSharingFolderType class
Exchange Server 2013
The GetSharingFolderType class represents a request to get the local folder identifier of a specified shared folder.
Namespace: ExchangeWebServices
Assembly: EWS (in EWS.dll)
The following code example shows you how to get the local folder identifier of a specified shared folder. In this example, the shared folder is the Calendar folder that is owned by user1@contoso.com.
static void GetSharingFolderTest(ExchangeServiceBinding esb) { // Create the request. GetSharingFolderType gsfRequest = new GetSharingFolderType(); // Specify the SMTP address of the mailbox that contains the folder that is being shared. gsfRequest.SmtpAddress = "user1@contoso.com"; // Specify the type of data that is being shared. gsfRequest.DataType = SharingDataType.Calendar; gsfRequest.DataTypeSpecified = true; try { // Send the request and get the response. GetSharingFolderResponseMessageType gsfResponse = esb.GetSharingFolder(gsfRequest); } catch (Exception e) { Console.WriteLine(e.Message); } }
Show: