メールボックスまたはクォータの最大サイズを取得したい。実際に私はメールボックスの空き領域を見つけています。だから私は使用されたスペースと最大スペースを見つけて、そして自由空間を見つけるために差を見つける。C#EWS Managed API:メールボックスの最大サイズまたは割り当て制限を取得する方法
フォルダの使用サイズを見つけるには、以下のコードがあります。私はフルサイズを得るためにすべてのフォルダに繰り返すことができると思います。しかし、どのようにして最大の制限値を得ることができますか?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Exchange.WebServices.Data;
namespace ConsoleApplication12
{
class Program
{
static void Main(string[] args)
{
ExchangeService service = new ExchangeService();
service.Credentials = new WebCredentials("mail", "pass");
service.Url = new Uri("https://outlook.office365.com/EWS/Exchange.asmx");
ExtendedPropertyDefinition PR_Extended_Message_Size = new ExtendedPropertyDefinition(3592, MapiPropertyType.Long);
PropertySet psPropertySet = new PropertySet(BasePropertySet.FirstClassProperties) { PR_Extended_Message_Size };
Folder Inbox = Folder.Bind(service, WellKnownFolderName.Inbox, psPropertySet);
long FolderSize = 0;
if (Inbox.TryGetProperty(PR_Extended_Message_Size, out FolderSize))
{
Console.WriteLine(FolderSize/1024);
}
Console.ReadKey();
}
}
}
あなたはextended_message_sizeを照会するのと同じようにそれらを照会できるはずです。ここでクォータのMAPIプロパティ定数を確認します。https://blogs.technet.microsoft.com/outlooking/2013/09/19/mailbox-quota-in-outlook-2010-general-information-and-troubleshooting-tips/ – dlatikay